: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: 8.2rem 2rem;
  --dropdown-hover: #34a853;
}


section {
  transform: translateY(50px);
  padding: 6rem 1.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;
}


section {
  padding: var(--section-padding);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: white;
}

.news-footer1 {
    padding: 10px 0 8px;
    background: #efefef;
    color: white;
    position: relative;
}

.news-footer-content1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.news-footer-logo1 {
    flex: 1;
    text-align: center;
    margin-left: 20.8rem;
    max-width: 200px;
    margin-top: 10px;
}

.social-links {
    margin-top: 0px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.contact-details {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
    padding: 1rem 0;
}

.contact-item {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-label {
    font-weight: 600;
    color: black;
    margin-right: 0.5rem;
}

.contact-value {
    color: var(--text-dark);
}

.news-contact-spacing1 {
    height: 2rem;
}

.news-contact-buttons1 {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    margin-top: 0px;
    margin-right: 20.8rem;
    flex-wrap: wrap;
    padding-left: 20px;
}

.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;
}

@media (max-width: 1440px) {
    .news-footer-logo1 {
        margin-left: 15.8rem;
    }
    .news-contact-buttons1 {
        margin-right: 15.8rem;
    }
}

@media (max-width: 1366px) {
    .news-footer-logo1 {
        margin-left: 15.8rem;
    }
    .news-contact-buttons1 {
        margin-right: 15.8rem;
    }
}

@media (max-width: 1280px) {
    .news-footer-logo1 {
        margin-left: 15.8rem;
    }
    .news-contact-buttons1 {
        margin-right: 15.8rem;
    }
}

@media (max-width: 1200px) {
    .news-footer-logo1 {
        margin-left: 15.8rem;
    }
    .news-contact-buttons1 {
        margin-right: 15.8rem;
    }
}

@media (max-width: 1024px) {
    html, body {
        height: 100%;
    }
    body {
        display: flex;
        flex-direction: column;
    }
    main {
        flex: 1 0 auto;
    }
    .news-footer1 {
        flex-shrink: 0;
    }
    .news-footer-logo1 {
        margin-left: 10.8rem;
    }
    .news-contact-buttons1 {
        margin-right: 10.8rem;
    }
}

@media (max-width: 992px) {
    .news-footer-logo1 {
        margin-left: 10.8rem;
    }
    .news-contact-buttons1 {
        margin-right: 10.8rem;
    }
}

@media (max-width: 912px) {
    .news-footer-logo1 {
        margin-left: 10.8rem;
    }
    .news-contact-buttons1 {
        margin-right: 10.8rem;
    }
}

@media (max-width: 820px) {
    .news-footer-logo1 {
        margin-left: 10.8rem;
    }
    .news-contact-buttons1 {
        margin-right: 10.8rem;
    }
}

@media (max-width: 768px) {
    .news-footer-content1 {
        flex-direction: column;
        padding: 0 20px;
    }
    .news-footer-logo1 {
        margin: 10px auto 15px;
        transform: translateX(-5%);
    }
    .news-contact-buttons1 {
        margin: 0 auto 15px;
    }
}

@media (max-width: 540px) {
    .news-footer-logo1 {
        max-width: 150px;
    }
}

@media (max-width: 414px) {
    .news-footer-logo1 {
        max-width: 140px;
    }
}

@media (max-width: 375px) {
    .news-footer-logo1 {
        max-width: 130px;
    }
}

@media (max-width: 1440px) {
    .news-footer-logo1 {
        margin-left: 18.8rem;
    }
    .news-contact-buttons1 {
        margin-right: 18.8rem;
    }
}

@media (max-width: 1200px) {
    .news-footer-logo1 {
        margin-left: 15.8rem;
    }
    .news-contact-buttons1 {
        margin-right: 15.8rem;
    }
}

@media (max-width: 1024px) {
    .news-footer-logo1 {
        margin-left: 12.8rem;
    }
    .news-contact-buttons1 {
        margin-right: 12.8rem;
    }
}

@media (max-width: 992px) {
    .news-footer-logo1 {
        margin-left: 10.8rem;
    }
    .news-contact-buttons1 {
        margin-right: 10.8rem;
    }
}

@media (max-width: 820px) {
    .news-footer-logo1 {
        margin-left: 8.8rem;
    }
    .news-contact-buttons1 {
        margin-right: 8.8rem;
    }
}

@media (max-width: 768px) {
    .news-footer-content1 {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .news-footer-logo1 {
        margin: 10px auto 15px;
        order: 1;
        max-width: 180px;
        transform: translateX(-5%);
    }
    
    .news-contact-buttons1 {
        margin: 0 auto 15px;
        order: 2;
        justify-content: center;
        gap: 1rem;
    }
    
    .social-links {
        order: 3;
        margin-bottom: 10px;
    }
    
    .news-copyright1 {
        order: 4;
    }
}

@media (max-width: 600px) {
    .news-footer-logo1 {
        max-width: 160px;
    }
    
    .news-contact-buttons1 {
        gap: 0.9rem;
    }
}

@media (max-width: 576px) {
    .news-footer-logo1 {
        max-width: 150px;
    }
    
    .news-contact-buttons1 {
        gap: 0.8rem;
    }
    
    .news-contact-btn1 {
        width: 42px;
        height: 42px;
    }
    
    .news-contact-btn1 svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 414px) {
    .news-footer-logo1 {
        max-width: 140px;
    }
}

@media (max-width: 375px) {
    .news-footer-logo1 {
        max-width: 130px;
    }
}

@media (max-width: 1024px) {
    html, body {
        height: 100%;
    }
    
    body {
        display: flex;
        flex-direction: column;
    }
    
    main {
        flex: 1 0 auto;
    }
    
    .news-footer1 {
        flex-shrink: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .news-footer-content1 {
        width: 100%;
    }
}