/* ========================================
   RESET & BASE STYLES
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #000000;
    --color-off-white: #F5F5F0;
    --color-orange: #FF7A00;
    --color-gray-dark: #111111;
    --color-gray-medium: #333333;
    --color-gray-light: #555555;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-medium);
    background-color: var(--color-off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ========================================
   CONTAINER & LAYOUT
======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   BUTTONS
======================================== */

.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--color-orange);
    color: var(--color-off-white);
}

.btn-primary:hover {
    background-color: #e66d00;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 122, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-orange);
    border: 2px solid var(--color-orange);
}

.btn-secondary:hover {
    background-color: var(--color-orange);
    color: var(--color-off-white);
}

.btn-large {
    padding: 20px 48px;
    font-size: 18px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ========================================
   HEADER
======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-black);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--color-off-white);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--color-orange);
}

.btn-header {
    padding: 12px 24px;
    font-size: 14px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--color-off-white);
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
======================================== */

/* ===== HERO SECTION ===== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('https://modularconstrucao.com.br/inicial.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin-top: 82px;
}

/* Overlay com degradê mais escuro que deixa a imagem mais aparente */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.6) 30%,
        rgba(0, 0, 0, 0.65) 60%,
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: 1;
}

/* Grid que imita layout do site com texto à esquerda */
.hero-grid {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 120px 60px 120px 80px !important;
    max-width: 100%;
    margin: 0;
    z-index: 2;
    width: 100%;
}

.hero .container {
    max-width: 100%;
    padding: 0;
}

/* Conteúdo */
.hero-content {
    max-width: 650px;
    z-index: 2;
    text-align: left;
    margin-left: 0;
    padding-left: 0;
}

/* Tag azul igual ao exemplo */
.tag {
    background: #0056A6;
    padding: 8px 18px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 25px;
}

/* Título estilo forte */
.hero-title {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
}

/* Subtítulo */
.hero-subtitle {
    color: #eee;
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* Botão estilo moderno */
.btn-hero {
    background: #FF7A00;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 30px;
    border-radius: 8px;
    display: inline-block;
    transition: 0.3s ease;
}

.btn-hero:hover {
    background: #e66d00;
    transform: translateY(-2px);
}

/* ===== RESPONSIVIDADE ===== */

@media (max-width: 900px) {
    .hero-grid {
        padding: 100px 40px 100px 50px;
        margin: 0;
    }
    .hero-title {
        font-size: 34px;
    }
    .hero-content {
        max-width: 100%;
        text-align: left;
    }
    .tag {
        margin-left: 0;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .hero-grid {
        padding: 80px 20px 80px 30px;
        margin: 0;
    }
    .hero-title {
        font-size: 28px;
    }
    .hero-subtitle {
        font-size: 18px;
    }
}


/* ========================================
   SECTION HEADERS
======================================== */

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-gray-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   BENEFITS SECTION
======================================== */

/* ========================================
   BENEFITS SECTION - ESTILIZAÇÃO MELHORADA
======================================== */

.benefits-section {
    background: linear-gradient(135deg, #F5F5F0 0%, #ffffff 50%, #F5F5F0 100%);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 122, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    z-index: 1;
}

/* LADO ESQUERDO */
.benefits-left {
    flex: 1;
    min-width: 400px;
    animation: fadeInUp 0.8s ease forwards;
}

.benefits-title {
    font-size: 42px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* LISTA */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    background: #ffffff;
    padding: 24px 28px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #FF7A00 0%, #FFA600 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(255, 122, 0, 0.15);
    border-left-color: #FF7A00;
}

.benefit-item:hover::before {
    transform: scaleY(1);
}

/* ÍCONE */
.benefit-item .icon {
    background: linear-gradient(135deg, #FF7A00 0%, #FFA600 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
    transition: all 0.3s ease;
}

.benefit-item:hover .icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
}

/* TEXTO DO ITEM */
.benefit-item .text {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
    flex: 1;
}

/* LADO DIREITO - IMAGEM */
.benefits-right {
    flex: 1;
    min-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 0.8s ease forwards;
}

.benefits-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.benefits-right:hover .benefits-img {
    transform: scale(1.05);
}

/* ANIMAÇÕES */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
    .benefits-container {
        gap: 50px;
    }
    
    .benefits-title {
        font-size: 36px;
    }
}

@media (max-width: 900px) {
    .benefits-section {
        padding: 80px 20px;
    }
    
    .benefits-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    
    .benefits-left {
        min-width: 100%;
        text-align: left;
    }
    
    .benefits-title {
        font-size: 32px;
        text-align: center;
    }
    
    .benefits-right {
        min-width: 100%;
    }
    
    .benefit-item {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .benefits-title {
        font-size: 28px;
    }
    
    .benefit-item {
        padding: 20px;
    }
    
    .benefit-item .text {
        font-size: 16px;
    }
    
    .benefit-item .icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-right: 15px;
    }
}


/* ========================================
   CONTAINERS CATALOG SECTION
======================================== */

.containers-catalog {
    padding: 100px 0;
    background-color: var(--color-gray-dark);
}

.containers-catalog .section-title {
    color: var(--color-off-white);
}

.containers-catalog .section-subtitle {
    color: var(--color-gray-light);
}

.containers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.container-card {
    background-color: var(--color-gray-medium);
    border-radius: 8px;
    padding: 32px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.container-card:hover {
    border-color: var(--color-orange);
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(255, 122, 0, 0.2);
}

.container-card-header {
    margin-bottom: 24px;
}

.container-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-off-white);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.container-badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--color-gray-light);
    color: var(--color-off-white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

.container-badge-featured {
    background-color: var(--color-orange);
}

.container-feature {
    margin-bottom: 24px;
    padding: 16px;
    background-color: rgba(255, 122, 0, 0.1);
    border-radius: 4px;
    border-left: 4px solid var(--color-orange);
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-off-white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-highlight:last-child {
    margin-bottom: 0;
}

.container-specs {
    margin-bottom: 32px;
}

.spec-group {
    margin-bottom: 24px;
}

.spec-group:last-child {
    margin-bottom: 0;
}

.spec-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-gray-light);
}

.spec-label {
    font-size: 14px;
    color: var(--color-gray-light);
}

.spec-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-off-white);
}
@media (max-width: 900px) {
    .containers-grid {
        grid-template-columns: 1fr !important; 
        gap: 20px;
    }
}/* ========================================
   GALLERY SECTION
======================================== */

.gallery {
    padding: 100px 0;
    background-color: var(--color-off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    background-color: var(--color-gray-medium);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--color-off-white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ========================================
   SECTION DIVIDER
======================================== */

.section-divider {
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 20%,
        rgba(0, 0, 0, 0.1) 80%,
        transparent 100%
    );
    margin: 0;
    width: 100%;
}

/* ========================================
   NATIONAL COVERAGE SECTION
======================================== */

.national-coverage {
    padding: 100px 0;
    background-color: var(--color-off-white);
}

.coverage-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.coverage-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.coverage-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 24px;
    text-transform: uppercase;
    line-height: 1.2;
}

.coverage-description {
    font-size: 18px;
    color: var(--color-gray-medium);
    line-height: 1.8;
    margin-bottom: 48px;
}

/* Container dos cards */
.coverage-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap; /* permite organizar certinho */
    margin-top: 25px;
}

/* Card individual */
.coverage-feature-item {
    background: #fff;
    border: 1px solid #ffe0c2;
    padding: 18px 22px;
    border-radius: 10px;
    flex: 1 1 calc(25% - 20px); /* 4 por linha */
    max-width: 250px;  
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: 0.2s ease;
}

/* Animação ao passar o mouse */
.coverage-feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Ícones */
.coverage-feature-item svg {
    margin: 0 auto;
}

/* Título do card */
.coverage-feature-item span {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

/* 🔥 Responsivo */
@media (max-width: 768px) {
    .coverage-features {
        flex-direction: column;
        align-items: center;
    }

    .coverage-feature-item {
        max-width: 100%;
        width: 100%;
    }
}


/* ========================================
   FOMO SECTION
======================================== */

.fomo {
    padding: 100px 0;
    background-color: var(--color-black);
}

.fomo-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.fomo-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.fomo-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-off-white);
    margin-bottom: 16px;
    text-transform: uppercase;
    line-height: 1.2;
}

.fomo-subtitle {
    font-size: 20px;
    color: var(--color-gray-light);
    margin-bottom: 40px;
}

/* ========================================
   PROJETOS SECTION
======================================== */

.projetos {
    padding: 100px 0;
    background-color: var(--color-off-white);
}

.projetos-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 48px;
}

.projetos-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f0f0f0;
}

.projetos-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.projetos-carousel-slide {
    min-width: 100%;
    position: relative;
    padding: 8px;
}

.projetos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 400px);
    gap: 16px;
    height: 100%;
}

.projeto-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--color-gray-medium);
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    height: 100%;
}

.projeto-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.projeto-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.projeto-item:hover img {
    transform: scale(1.08);
}

.projeto-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--color-off-white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: var(--transition);
    pointer-events: none;
    z-index: 1;
}

.projeto-item:hover .projeto-caption {
    background-color: rgba(0, 0, 0, 0.85);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 0, 0, 0.1);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    color: var(--color-black);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    opacity: 1;
    pointer-events: auto;
}

.carousel-btn:hover {
    background-color: var(--color-orange);
    color: var(--color-off-white);
    border-color: var(--color-orange);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 24px rgba(255, 122, 0, 0.4);
}

 .carousel-btn-prev {
    left: -28px;
}

.carousel-btn-next {
    right: -28px;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.projetos-cta {
    text-align: center;
    margin-top: 48px;
}

@media (max-width: 1280px) {
    .projetos-carousel-wrapper {
        max-width: 1100px;
    }
    
    .projetos-grid {
        grid-template-rows: repeat(2, 350px);
        gap: 12px;
    }
    
    .carousel-btn-prev {
        left: -20px;
    }
    
    .carousel-btn-next {
        right: -20px;
    }
}

@media (max-width: 1024px) {
    .projetos-grid {
        grid-template-rows: repeat(2, 300px);
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .projetos-carousel-wrapper {
        margin-bottom: 32px;
        padding: 0 20px;
    }

    .projetos-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 250px);
        gap: 10px;
        padding: 6px;
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .carousel-btn-prev {
        left: 5px;
    }

    .carousel-btn-next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .projetos-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
        gap: 8px;
    }
}

/* ========================================
   MODAL DE PROJETO
======================================== */

.projeto-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.projeto-modal.active {
    opacity: 1;
    visibility: visible;
}

.projeto-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.projeto-modal-content {
    position: relative;
    background-color: #1a1a1a;
    border-radius: 16px;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 1;
}

.projeto-modal.active .projeto-modal-content {
    transform: scale(1);
}

.projeto-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.projeto-modal-close:hover {
    background-color: rgba(255, 122, 0, 0.9);
    border-color: #FF7A00;
    transform: rotate(90deg);
}

.projeto-modal-close svg {
    width: 20px;
    height: 20px;
}

.projeto-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    height: 100%;
    max-height: 90vh;
}

.projeto-modal-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    background-color: #0a0a0a;
}

.projeto-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.projeto-modal-info {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #1a1a1a;
    overflow-y: auto;
}

.projeto-modal-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.projeto-modal-desc {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .projeto-modal-content {
        max-width: 900px;
    }

    .projeto-modal-body {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        max-height: 85vh;
    }

    .projeto-modal-image {
        min-height: 400px;
        max-height: 50vh;
    }

    .projeto-modal-info {
        padding: 40px 35px;
    }

    .projeto-modal-title {
        font-size: 2rem;
    }

    .projeto-modal-desc {
        font-size: 1rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .projeto-modal {
        padding: 10px;
    }

    .projeto-modal-content {
        max-width: 100%;
        border-radius: 12px;
        max-height: 95vh;
    }

    .projeto-modal-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }

    .projeto-modal-close svg {
        width: 18px;
        height: 18px;
    }

    .projeto-modal-body {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        max-height: 95vh;
    }

    .projeto-modal-image {
        min-height: 300px;
        max-height: 40vh;
    }

    .projeto-modal-info {
        padding: 30px 24px;
    }

    .projeto-modal-title {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .projeto-modal-desc {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .projeto-modal-image {
        min-height: 250px;
        max-height: 35vh;
    }

    .projeto-modal-info {
        padding: 24px 20px;
    }

    .projeto-modal-title {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .projeto-modal-desc {
        font-size: 0.9rem;
    }
}

/* Prevenir scroll do body quando modal estiver aberto */
body.modal-open {
    overflow: hidden;
}

/* ========================================
   SOBRE PROJETOS SECTION
======================================== */

.sobre-projetos {
    padding: 100px 0;
    background-color: var(--color-off-white);
}

.sobre-projetos-content {
    max-width: 1000px;
    margin: 0 auto;
}

.sobre-projetos-text {
    text-align: left;
}

.sobre-projetos-text .section-title {
    text-align: left;
    margin-bottom: 32px;
}

.sobre-projetos-text > p {
    font-size: 18px;
    color: var(--color-gray-medium);
    line-height: 1.8;
    margin-bottom: 48px;
    text-align: justify;
}

.sobre-projetos-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.sobre-projetos-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.sobre-projetos-feature svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.sobre-projetos-feature h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sobre-projetos-feature p {
    font-size: 16px;
    color: var(--color-gray-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .sobre-projetos-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .sobre-projetos-text .section-title {
        text-align: center;
    }
    
    .sobre-projetos-text > p {
        text-align: left;
    }
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */

.testimonials {
    padding: 100px 0;
    background-color: var(--color-off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 8px;
    border-left: 4px solid var(--color-orange);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--color-gray-medium);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-black);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--color-gray-light);
}

/* ========================================
   ABOUT SECTION
======================================== */

.about {
    padding: 100px 0;
    background-color: var(--color-gray-dark);
}

.about .section-title {
    color: var(--color-off-white);
    text-align: left;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 64px;
    align-items: center;
}

.about-image img {
    width: 120%;
    max-width: 500px;
    border-radius: 8px;
}

.about-text p {
    font-size: 16px;
    color: var(--color-off-white);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;   
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* ========================================
   FINAL CTA SECTION
======================================== */

.final-cta {
    padding: 100px 0;
    background-color: var(--color-orange);
}

.final-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--color-off-white);
    margin-bottom: 16px;
    text-transform: uppercase;
    line-height: 1.2;
}

.final-cta-subtitle {
    font-size: 30px;
    color: var(--color-off-white);
    margin-bottom: 40px;
    opacity: 0.9;
}

.final-cta .btn-primary {
    background-color: var(--color-black);
}

.final-cta .btn-primary:hover {
    background-color: var(--color-gray-dark);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* ========================================
   FOOTER
======================================== */

.footer {
    padding: 60px 0 30px;
    background-color: var(--color-black);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-info {
    text-align: center;
}

.footer-info p {
    color: var(--color-gray-light);
    font-size: 15px;
    margin-bottom: 12px;
}

.footer-contact a {
    color: var(--color-orange);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-contact a:hover {
    color: #e66d00;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--color-gray-medium);
}

.footer-bottom p {
    color: var(--color-gray-light);
    font-size: 14px;
}

/* ========================================
   WHATSAPP FLOAT BUTTON
======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 768px) {
    
    /* Header */
    .nav {
        position: fixed;
        top: 82px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 82px);
        background-color: var(--color-black);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        transition: var(--transition);
    }
    
    .nav.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .btn-header {
        width: 100%;
    }
    
    /* Hero */
    .hero {
        margin-top: 82px;
        min-height: 80vh;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    /* Containers */
    .containers-grid {
        grid-template-columns: 1fr;
    }
    
    /* National Coverage */
    .coverage-title {
        font-size: 32px;
    }
    
    .coverage-description {
        font-size: 16px;
    }
    
    .coverage-features {
        grid-template-columns: 1fr;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about .section-title {
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    /* FOMO */
    .fomo-title {
        font-size: 32px;
    }
    
    .fomo-subtitle {
        font-size: 16px;
    }
    
    /* Final CTA */
    .final-cta-title {
        font-size: 32px;
    }
    
    .final-cta-subtitle {
        font-size: 16px;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 1024px) {
    /* Containers em 2 colunas para tablets */
    .containers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }
}
