        :root {
            --blue: #0B4F8C;
            --yellow: #FFD23F;
            --white: #FFFFFF;
            --light-gray: #F5F7FA;
            --dark-gray: #1A1A1A;
            --gray: #666666;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            overflow-x: hidden;
            background-color: var(--white);
        }
        
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        h1, h2, h3, h4 {
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .highlight {
    color: var(--yellow);
    transition: var(--transition);
}

        
        p {
            margin-bottom: 1rem;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            background-color: var(--yellow);
            color: var(--dark-gray);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.2);
            transition: var(--transition);
            z-index: -1;
        }
        
        .btn:hover::before {
            width: 100%;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 210, 63, 0.3);
        }
        
        .section {
            position: relative;
            overflow: hidden;
        }
        
        .section-title {
            font-size: 3rem;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--yellow);
            border-radius: 2px;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
            z-index: 1000;
            transition: var(--transition);
        }
        
        header.scrolled {
            padding: 10px 0;
        }
        
        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
        }
        
        .logo h1 {
            color: var(--blue);
            font-size: 1.8rem;
            margin: 0;
            letter-spacing: 2px;
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
        }
        
        .nav-links a {
            color: var(--dark-gray);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--yellow);
            transition: var(--transition);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(135deg, rgba(11, 79, 140, 0.8) 0%, rgba(11, 79, 140, 0.4) 100%);
            color: var(--white);
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('./img/IMA-ADN_CONSTRUTORA-PORTARIA-ALTA.webp');
            background-size: cover;
            background-position: center;
            z-index: -1;
            animation: zoom-in 20s ease-in-out infinite;
        }
        
        @keyframes zoom-in {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .hero-content {
            max-width: 650px;
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }
        
        .hero-cta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .hero-cta .btn-secondary {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .hero-cta .btn-secondary:hover {
            background-color: var(--white);
            color: var(--blue);
        }
        
        /* Curved Divider */
        .curve-divider {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            transform: rotate(180deg);
        }
        
        .curve-divider svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 80px;
        }
        
        .curve-divider .shape-fill {
            fill: var(--white);
        }
        
        /* Sobre Section */
        .sobre {
            padding: 120px 0;
            background-color: var(--white);
            position: relative;
        }
        
        .sobre-content {
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
        }
        
        .sobre-image {
            flex: 1;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            transform: translateX(-50px);
            position: relative;
            z-index: 1;
        }
        
        .sobre-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100px;
            height: 100px;
            background-color: var(--yellow);
            border-radius: 50%;
            z-index: -1;
        }
        
        .sobre-image img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            display: block;
        }
        
        .ficha-card {
            flex: 1;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            transform: translateY(50px);
            position: relative;
            z-index: 2;
        }
        
        .ficha-card h2 {
            color: var(--blue);
            margin-bottom: 30px;
            font-size: 2.2rem;
        }
        
        .ficha-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
        
        .ficha-item {
            display: flex;
            flex-direction: column;
        }
        
        .ficha-item h3 {
            font-size: 1rem;
            color: var(--gray);
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .ficha-item p {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--blue);
            margin: 0;
        }
        
        /* Galeria Section */
        .galeria {
            padding: 120px 0;
            background-color: var(--light-gray);
            position: relative;
        }
        
        .galeria-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-template-rows: repeat(8, 80px);
            gap: 20px;
        }
        
        .galeria-item {
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        
        .galeria-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .galeria-item:nth-child(1) {
            grid-column: 1 / 7;
            grid-row: 1 / 5;
        }
        
        .galeria-item:nth-child(2) {
            grid-column: 7 / 13;
            grid-row: 1 / 4;
        }
        
        .galeria-item:nth-child(3) {
            grid-column: 1 / 5;
            grid-row: 5 / 9;
        }
        
        .galeria-item:nth-child(4) {
            grid-column: 5 / 9;
            grid-row: 4 / 7;
        }
        
        .galeria-item:nth-child(5) {
            grid-column: 9 / 13;
            grid-row: 4 / 9;
        }
        
        .galeria-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        /* Plantas Section */
        .plantas {
            padding: 120px 0;
            background-color: var(--white);
            position: relative;
        }
        
        .plantas-tabs {
            display: flex;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .tab-btn {
            padding: 12px 30px;
            background-color: var(--light-gray);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
            color: var(--gray);
        }
        
        .tab-btn.active {
            background-color: var(--blue);
            color: var(--white);
        }
        
        .tab-btn:hover:not(.active) {
            background-color: #e0e0e0;
        }
        
        .planta-tab {
            display: none;
        }
        
        .planta-tab.active {
            display: flex;
            gap: 60px;
            align-items: center;
        }
        
        .planta-image {
            flex: 1;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }
        
        .planta-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .planta-info {
            flex: 1;
        }
        
        .planta-info h3 {
            color: var(--blue);
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }
        
        .planta-details {
            list-style-type: none;
            margin-bottom: 2.5rem;
        }
        
        .planta-details li {
            padding: 12px 0;
            border-bottom: 1px solid var(--light-gray);
            position: relative;
            padding-left: 30px;
        }
        
        .planta-details li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--yellow);
            font-weight: bold;
        }
        
        /* Localização Section */
        .localizacao {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--blue) 0%, #0a3d6b 100%);
            color: var(--white);
            position: relative;
        }
        
        .localizacao::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
            background-size: cover;
        }
        
        .localizacao .section-title {
            color: var(--white);
        }
        
        .localizacao .section-title::after {
            background-color: var(--yellow);
        }
        
        .localizacao-content {
            display: flex;
            gap: 60px;
            align-items: center;
        }
        
        .localizacao-text {
            flex: 1;
        }
        
        .localizacao-text p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }
        
        .distancias {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .distancia-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }
        
        .distancia-icon {
            width: 40px;
            height: 40px;
            background-color: var(--yellow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .distancia-text {
            flex: 1;
        }
        
        .distancia-text h4 {
            margin: 0;
            font-size: 1rem;
        }
        
        .distancia-text p {
            margin: 0;
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* Formulário Section */
        .formulario {
            padding: 120px 0;
            background-color: var(--light-gray);
            position: relative;
        }
        
        .form-container {
            max-width: 700px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 30px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
        }
        
        .form-container h2 {
            text-align: center;
            margin-bottom: 40px;
            color: var(--blue);
        }
        
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .form-group label {
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark-gray);
        }
        
        .form-group input,
        .form-group textarea {
            padding: 15px 20px;
            border: 1px solid #e0e0e0;
            border-radius: 15px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
            background-color: var(--light-gray);
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(11, 79, 140, 0.1);
        }
        
        .privacy-link {
            text-align: center;
            margin-top: 15px;
            font-size: 0.9rem;
        }
        
        .privacy-link a {
            color: var(--blue);
            text-decoration: underline;
            cursor: pointer;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-gray);
            color: var(--white);
            padding: 80px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        
        .footer-logo h2 {
            color: var(--white);
            margin-bottom: 15px;
            font-size: 1.8rem;
            letter-spacing: 2px;
        }
        
        .footer-logo p {
            opacity: 0.7;
        }
        
        .footer-contact h3,
        .footer-links h3 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            opacity: 0.7;
        }
        
        .footer-links ul {
            list-style-type: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.7;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            opacity: 1;
            color: var(--yellow);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.7;
        }
        
.whatsapp-btn {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 65px;
    height: 65px;
    background-color: #25D366; /* Cor oficial do WhatsApp */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* Responsivo */
@media (max-width: 768px) {
    .whatsapp-btn {
        width: 58px;
        height: 58px;
        bottom: 18px;
        right: 18px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .whatsapp-btn {
        width: 52px;
        height: 52px;
        bottom: 15px;
        right: 15px;
        font-size: 26px;
    }
}


        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .modal.active {
            display: flex;
            opacity: 1;
        }
        
        .modal-content {
            background-color: var(--white);
            padding: 40px;
            border-radius: 30px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        
        .modal.active .modal-content {
            transform: translateY(0);
        }
        
        .close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--gray);
            transition: var(--transition);
        }
        
        .close:hover {
            color: var(--dark-gray);
        }
        
        .modal h2 {
            color: var(--blue);
            margin-bottom: 20px;
        }
        
      /* ✅ Animated Corner Waves — versão otimizada */
.animated-wave {
    position: fixed;
    width: 360px;
    height: 180px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.35;
    filter: drop-shadow(0 0 6px rgba(255, 210, 63, 0.25));
    animation: drawWave 20s ease-in-out infinite;
}

/* Versão mais grossa */
.animated-wave-thick {
    opacity: 0.18;
    animation: drawWave 26s ease-in-out infinite reverse;
}

/* Ajustes do traço do path */
.wave-path {
    stroke: var(--yellow);
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
}

/* Animação leve (não usa cálculo JS) */
@keyframes drawWave {
    0%, 100% {
        stroke-dashoffset: 1200;
    }
    50% {
        stroke-dashoffset: 0;
    }
}

/* ✅ Específico para Mobile */
@media (max-width: 768px) {
    .animated-wave {
        width: 250px;
        height: 120px;
        opacity: 0.18;
    }
}

@keyframes drawWave {
    0%, 100% {
        stroke-dashoffset: 1200;
        opacity: 0.2;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 0.4;
    }
}
        /* Responsive */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .sobre-content {
                flex-direction: column;
            }
            
            .sobre-image {
                transform: translateX(0);
                margin-bottom: -80px;
            }
            
            .ficha-card {
                transform: translateY(0);
            }
            
            .planta-tab.active {
                flex-direction: column;
            }
            
            .localizacao-content {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .galeria-grid {
                grid-template-rows: repeat(12, 60px);
            }
            
            .galeria-item:nth-child(1) {
                grid-column: 1 / 13;
                grid-row: 1 / 4;
            }
            
            .galeria-item:nth-child(2) {
                grid-column: 1 / 13;
                grid-row: 4 / 7;
            }
            
            .galeria-item:nth-child(3) {
                grid-column: 1 / 13;
                grid-row: 7 / 10;
            }
            
            .galeria-item:nth-child(4) {
                grid-column: 1 / 13;
                grid-row: 10 / 13;
            }
            
            .galeria-item:nth-child(5) {
                display: none;
            }
            
            .ficha-grid {
                grid-template-columns: 1fr;
            }
            
            .distancias {
                grid-template-columns: 1fr;
            }
            
            .form-container {
                padding: 30px 20px;
            }
            
            .nav-links {
                display: none;
            }
        }
        
        @media (prefers-reduced-motion: reduce) {
            .animated-line {
                animation: none;
            }
            
            .hero::before {
                animation: none;
            }
            
            .whatsapp-btn {
                animation: none;
            }
        }

        .logo {
  display: flex;
  align-items: center;
  gap: 30px; /* ✅ controla a distância entre logo e texto */
}

.logo-img {
  width: 100px;       /* tamanho ideal para header */
  height: auto;
  display: block;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  margin: 0;
}

.logo .highlight {
  color: var(--yellow); /* ✅ mantém apenas o “GUANABARA” amarelo */
}

/* Responsivo */
@media (max-width: 768px) {
  .logo-img {
    width: 40px;
  }
  .logo h1 {
    font-size: 1.5rem;
  }
}

/* ✅ Telas muito pequenas (celulares antigos) */
@media (max-width: 420px) {
  .logo {
    gap: 8px;
  }

  .logo h1 {
    font-size: 1.1rem;
  }

  .logo-img {
    width: 60px;
  }
}


/* ====== Ícone de lupa ====== */
.planta-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.zoom-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(11, 79, 140, 0.9);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.zoom-btn:hover {
  background: var(--yellow);
  color: var(--dark-gray);
  transform: scale(1.08);
}

/* ====== Modal ====== */
.image-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.image-modal.active {
  display: flex;
}

.image-modal img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  animation: zoomIn 0.4s ease;
}

.close-modal {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  transition: 0.3s;
}

.close-modal:hover {
  color: var(--yellow);
}

/* ====== Animação ====== */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ====== Responsivo ====== */
@media (max-width: 768px) {
  .zoom-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .close-modal {
    font-size: 1.8rem;
    top: 15px;
    right: 20px;
  }
}
.distancias {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.distancia-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.distancia-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.distancia-img img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
}

.distancia-text h4 {
    font-size: 1rem;
    color: var(--blue);
    margin-bottom: 4px;
}

.distancia-text p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .distancias {
        grid-template-columns: 1fr;
    }

    .distancia-item {
        gap: 12px;
    }

    .distancia-img img {
        width: 60px;
        height: 60px;
    }
}
/* Ocultar o texto da hero apenas em telas pequenas */
@media (max-width: 768px) {
  .hero-content p {
    display: none;
  }
}
/* Mostra apenas no desktop */
.hero-title-desktop {
  display: none;
}

.hero-title-mobile {
  display: block;
}

/* Mostra apenas no desktop */
@media (min-width: 769px) {
  .hero-title-desktop {
    display: block;
  }

  .hero-title-mobile {
    display: none;
  }
}
