:root {
    --bg-blue: #08266c; /* Azul vibrante da referência */
    --bg-blue-light: #4A90E2; 
    --bg-white: #FFFFFF;
    --bg-light-gray: #F5F7FA;
    --brand-orange: #F7931E;
    --text-dark: #222222;
    --text-gray: #6B6B6B;
    --text-white: #FFFFFF;
    --cta-yellow: #FFC107;
    --cta-yellow-hover: #E0A800;
    --cta-red: #E53935;
    
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* -------------------------------------
   SEÇÃO 1 - HERO (Fundo Azul Vibrante)
   ------------------------------------- */
.hero-section {
    background-color: var(--bg-blue); /* Fundo azul ocupando 100% da largura da tela */
    color: var(--text-white);
    padding: 80px 0; /* Espaçamento interno em cima e embaixo */
}

.hero {
    display: flex;
    align-items: center; /* Centraliza verticalmente o texto com a imagem */
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 550px;
}

/* Redução dos tamanhos para alinhar melhor com a foto */
.logo {
    margin-bottom: 24px;
}

.logo img {
    height: 50px; /* Logo um pouco menor */
    width: auto;
}

.hero-content h1 {
    font-family: var(--font-head);
    font-size: 44px; /* Título reduzido de 52px para 44px */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 16px; /* Texto reduzido de 18px para 16px */
    line-height: 1.5;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 24px;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px; /* Fonte da lista menor */
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-bullets i {
    color: var(--cta-yellow);
    width: 20px;
    height: 20px;
}

.hero-content .subtitle-cta {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.9);
}

.btn-yellow {
    background-color: var(--cta-yellow);
    color: #333333;
    font-family: var(--font-head);
    font-weight: 800;
    padding: 14px 32px; /* Botão ligeiramente mais fino */
    border-radius: 50px; 
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
    border: none;
    cursor: pointer;
}

.btn-yellow:hover {
    background-color: var(--cta-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
}

/* Container da Imagem */
.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end; /* Empurra a imagem para a direita */
    align-items: center;
    width: 100%;
}

.hero-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    border-radius: 20px; /* Bordas arredondadas na foto para manter o visual premium */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25); /* Sombra para destacar a foto do fundo azul */
}

/* Responsividade (Mobile e Tablet) */
@media (max-width: 1024px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        order: 2; /* Texto fica embaixo no celular */
        align-items: center;
    }

    .hero-image-wrapper {
        order: 1; /* Foto fica em cima no celular */
        justify-content: center;
    }

    .hero-bullets {
        align-items: flex-start;
        text-align: left;
        width: fit-content;
        margin: 0 auto 24px auto;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }
    .btn-yellow {
        width: 100%;
        justify-content: center;
    }
}

/* Remover Trust Badge CSS */

/* -------------------------------------
   SEÇÃO 2 - DIFERENCIAL (Interactive Carousel)
   ------------------------------------- */
.products-section {
    background-color: var(--bg-light-gray);
    padding: 100px 0;
}

.product-flex-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Área das Imagens (Esquerda) */
.product-image-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
}

.main-product-image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    margin-bottom: 24px;
    transition: opacity 0.3s ease;
}

.thumbnails-container {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.thumbnail {
    width: 90px;
    height: 110px;
    border-radius: 12px;
    border: 2px solid transparent;
    padding: 8px;
    background-color: var(--bg-white);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumbnail.active, .thumbnail:hover {
    border-color: var(--cta-yellow);
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(255,193,7,0.2);
}

/* Área de Texto (Direita) */
.product-text-area {
    flex: 1;
}

.product-text-area h2 {
    font-family: var(--font-head);
    font-size: 42px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 24px;
}

.product-text-area h2 .h2-subtitle {
    font-weight: 600;
    display: block;
    font-size: 28px;
    margin-top: 8px;
    color: #444;
}

.product-text-area p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.6;
}

.product-benefits-list {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-benefits-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    color: var(--text-dark);
}

.product-benefits-list i {
    color: var(--text-dark); /* Ícone escuro como na referência */
    font-size: 24px;
}

.product-text-area .btn-yellow {
    font-size: 18px;
    padding: 16px 32px;
}

/* -------------------------------------
   SEÇÃO 3 - BENEFÍCIOS (Por que comprar)
   ------------------------------------- */
.benefits-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('https://nntintasdecor.com.br/lp-nn-tintas/assets/fotos/paredes/parede-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    padding: 100px 0;
    text-align: center;
    color: var(--text-white);
}

.section-title {
    font-family: var(--font-head);
    font-size: 48px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 16px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    background-color: transparent;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--cta-yellow); /* Yellow icon to contrast on dark */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px; /* Squircle */
    margin-bottom: 24px;
}

.benefit-icon i {
    width: 32px;
    height: 32px;
}

.benefit-item h4 {
    font-family: var(--font-head);
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-white);
}

.benefit-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* -------------------------------------
   SEÇÃO 4 - LOCALIZAÇÃO E CONTATO (Fundo Azul Vibrante)
   ------------------------------------- */
.location-section {
    background-color: var(--bg-blue);
    color: var(--text-white);
    padding: 100px 0 60px 0;
    position: relative;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Coluna 1: Mascote */
.location-mascot {
    background-color: rgba(255, 255, 255, 0.05); /* Fundo sutil mantido */
    border-radius: 32px;
    /* padding: 40px; */ /* REMOVIDO: Para a imagem encostar na borda */
    padding: 0; /* GARANTIDO: Sem espaço interno */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 20px rgba(255,255,255,0.02);
    align-self: stretch;
    overflow: hidden;
}

.location-mascot img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; /* Trocamos de 'fill' para 'cover' para não achatar */
    object-position: top center; /* Garante que, se cortar algo, corte a base e mantenha a cabeça do mascote visível */
}

/* Coluna 2: Informações e Mapa */
.location-info {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Space between content and map */
}

.location-content h2 {
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-white);
}

.location-content h2 span {
    color: var(--cta-yellow); /* Mudado para amarelo para destacar no azul */
}

.location-content > p {
    font-size: 16px; /* Tamanho reduzido conforme solicitado */
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}

.info-list {
    margin: 30px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1; /* Forces side-by-side sharing of space */
    min-width: 200px; /* Wraps on very small screens */
}

.info-item-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cta-yellow);
    flex-shrink: 0;
}

.info-item-icon i {
    width: 20px;
    height: 20px;
}

.info-item div strong {
    display: block;
    margin-bottom: 2px;
    font-size: 15px; /* Reduced from 18px */
}

.info-item div span {
    color: rgba(255,255,255,0.6);
    font-size: 13px; /* Reduced from 15px */
    line-height: 1.4;
    display: block;
}

.btn-red {
    background-color: var(--cta-red);
    color: white;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
    border: none;
    padding: 16px 32px;
    font-size: 16px;
}

.btn-red:hover {
    background-color: #D32F2F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.4);
    color: white;
}

.map-wrapper {
    width: 100%;
    height: 300px; /* Reduzido para caber melhor sob o texto */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.footer-copyright {
    margin-top: 80px;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}

/* =========================================
   RESPONSIVIDADE (Ajustes para Mobile/Tablet)
   ========================================= */

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .hero-content {
        padding-bottom: 0;
    }
    .mascote-wrapper {
        max-width: 400px;
    }
    .product-flex-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .product-image-area {
        max-width: 100%;
    }
    .product-benefits-list {
        align-items: center;
    }
    .product-benefits-list li {
        text-align: left;
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .location-grid {
        grid-template-columns: 1fr;
    }
    .location-mascot {
        height: 350px;
    }
}

@media (max-width: 768px) {
    /* Ajustes Gerais de Espaçamento */
    .products-section, 
    .benefits-section, 
    .location-section {
        padding: 60px 0; 
    }
    
    /* === AJUSTES DA SEÇÃO HERO NO MOBILE === */
    .hero-section {
        padding-bottom: 32px; 
        /* Trocamos de 'top center' para 'left center' ou 'top left' */
        background-position: top left; 
    }
    
    header {
        padding: 16px 0; /* Corta pela metade o espaço em branco acima e abaixo do logo */
        justify-content: center; 
    }

    .logo img {
        margin: 0 auto; 
        height: 50px; /* Logo um pouquinho menor para poupar altura */
    }

    .hero {
        margin-top: 0; /* Remove o espaço extra entre o logo e o título */
        gap: 24px;
    }

    /* Centralizando e reduzindo os textos do Hero */
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero h1 {
        font-size: 32px; /* Título menor */
        margin-bottom: 16px;
    }
    .hero p {
        font-size: 15px; /* Parágrafo menor */
        margin-bottom: 20px;
    }
    .hero-bullets {
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Alinha os ícones e textos à esquerda */
        margin: 0 auto 24px auto; /* Mantém o bloco todo no centro da tela */
        padding: 0;
        width: fit-content; /* Faz o bloco abraçar o texto para não sobrar espaço solto */
    }
    .hero-bullets li {
        font-size: 14px; /* Tópicos menores */
        margin-bottom: 10px;
    }
    .hero-content .subtitle-cta {
        font-size: 14px; /* Subtítulo antes do botão menor */
    }
    
    /* Botão Menor */
    .btn-yellow {
        padding: 12px 24px;
        font-size: 15px;
    }
    /* ======================================= */

    .section-title {
        font-size: 32px;
    }
    .location-content h2, 
    .location-content > p {
        text-align: center;
    }
    .product-text-area h2 {
        font-size: 26px; /* Reduzido de 32px */
        margin-bottom: 16px;
    }
    .product-text-area h2 .h2-subtitle {
        font-size: 16px; /* Reduzido de 20px */
        margin-top: 4px;
    }
    .product-text-area p {
        font-size: 15px; /* Reduzido do tamanho original de 18px do Desktop */
        margin-bottom: 16px;
    }
    
    /* Ajustes na lista de benefícios da Ciacolor */
    .product-benefits-list {
        gap: 12px; /* Diminui o espaço entre as linhas da lista */
        margin-bottom: 24px;
    }
    .product-benefits-list li {
        font-size: 14px; /* Reduzido do original de 18px */
        gap: 12px;
    }
    .product-benefits-list i {
        font-size: 20px; /* Ícone um pouquinho menor para acompanhar o texto */
    }
    
    /* Botão da seção de produtos */
    .product-text-area .btn-yellow {
        font-size: 15px;
        padding: 12px 24px;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .main-product-image {
        height: 300px;
    }
    .thumbnails-container {
        flex-wrap: wrap;
    }
    .thumbnail {
        width: 70px;
        height: 85px;
    }
    .info-list {
        flex-direction: column;
        gap: 24px;
    }
    .info-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    .location-content .btn-yellow {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    /* Ajustes finais para telas bem pequenas (iPhone SE, etc) */
    .hero h1 {
        font-size: 28px; /* Título ainda mais compacto */
    }
    .hero p {
        font-size: 14px;
    }
    .btn-yellow {
        width: 100%; /* Botão ocupa a largura toda para ficar fácil de clicar */
        justify-content: center;
        padding: 12px 16px;
        font-size: 14px;
    }
    .thumbnail {
        width: 60px;
        height: 75px;
        padding: 4px;
    }
    .location-mascot {
        height: 250px;
    }
}