:root {
  --primary-blue: #1a73e8;
  --primary-blue-hover: #0d62c9;
  --text-dark: #202124;
  --text-medium: #5f6368;
  --text-light: #ffffff;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition-fast: all 0.2s ease;
  --transition-medium: all 0.3s ease;
  --max-content-width: 1200px;
  --section-padding: 2.4rem 2.4rem;
  --dropdown-hover: #34a853;
}

section {
  transform: translateY(50px);
  padding: 6rem 0.5rem;
  background: transparent;
  transition: opacity 0.8s ease, transform 0.8s ease;
  padding: var(--section-padding);
  margin-bottom: 2rem;
}

section.active {
  opacity: 1;
  transform: translateY(0);
}


#home {
  transition-delay: 0.1s;
}

#about {
  transition-delay: 0.1s;
}

#services {
  transition-delay: 0.1s;
}

#contact {
  transition-delay: 0.1s;
}


.content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0.5rem 1rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: rgb(255, 255, 255);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 2.8rem);
  background: linear-gradient(45deg, var(--primary-blue), #34a853);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 2rem;
}

p {
  font-size: 1.125rem;
  color: var(--text-medium);
  max-width: 650px;
  margin-bottom: 2rem;
}



.news-footer1 {
    padding: 35px 0 8px;
    background: #efefef;
    color: white;
    position: relative;
    width: 100%;
}

.news-footer1 {
    padding: 35px 0 8px;
    background: #efefef;
    color: white;
    position: relative;
    width: 100%;
}

.news-footer-content1 {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    flex-wrap: wrap;
    gap: 6rem; 
}

.news-footer-logo1 {
    flex: 0 0 auto;
    text-align: left;
    max-width: 200px;
    margin-top: 10px;
    margin-right: 0;
}

.news-contact-spacing1 {
    display: none; 
}

.news-contact-buttons1 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    flex: 0 0 auto;
}

.news-contact-btn1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.news-contact-btn1 svg {
    width: 20px;
    height: 20px;
    fill: black;
}

.news-contact-btn1:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-md);
}

.news-contact-btn1.email:hover {
    background: #D44638;
    color: white;
}

.news-contact-btn1.linkedin:hover {
    background: #0077B5;
    color: white;
}

.news-contact-btn1.whatsapp:hover {
    background: #25D366;
    color: white;
}

.news-contact-btn1.instagram:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
}

.news-contact-btn1:hover svg {
    fill: white;
}

.news-copyright1 {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgb(0, 0, 0);
    padding-top: 0.3rem;
    width: 100%;
}

@media (max-width: 768px) {
    .news-footer-content1 {
        padding: 0 20px;
        flex-direction: column;
        align-items: center;
        gap: 0; 
    }
    
    .news-footer-logo1 {
        margin: 0 auto 20px;
        text-align: center;
    }
    
    .news-contact-spacing1 {
        display: none;
    }
    
    .news-contact-buttons1 {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .news-footer-content1 {
        padding: 0 15px;
    }
    
    .news-contact-buttons1 {
        gap: 1rem;
    }
    
    .news-contact-btn1 {
        width: 42px;
        height: 42px;
    }
}