/* ==========================================================================
   DESIGN SYSTEM - ZINCATTO TELHAS
   Estilo: Industrial Premium, Moderno, Focado em Conversão (CRO)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* Paleta de Cores */
    --primary: hsl(18, 97%, 49%);       /* Laranja Zincatto #F15A24 */
    --primary-hover: hsl(18, 100%, 41%); /* Laranja Escuro */
    --primary-light: hsl(18, 97%, 95%);  /* Laranja Fundo */
    --primary-glow: rgba(241, 90, 36, 0.4);
    
    --dark: hsl(220, 15%, 13%);          /* Grafite escuro */
    --dark-secondary: hsl(220, 15%, 9%);  /* Grafite mais profundo */
    --light: hsl(210, 20%, 98%);         /* Branco predominante */
    --light-alt: hsl(210, 16%, 93%);     /* Cinza claro para alternância */
    
    --text-dark: hsl(220, 20%, 15%);
    --text-muted: hsl(220, 10%, 45%);
    --text-light: hsl(0, 0%, 100%);
    
    --success: hsl(142, 70%, 45%);       /* Verde WhatsApp */
    --success-hover: hsl(142, 70%, 38%);
    --success-glow: rgba(37, 211, 102, 0.4);
    
    /* Fontes */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Efeitos e Grid */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px var(--primary-glow);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-color: rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   RESET & CONFIGURAÇÕES GERAIS
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark);
}

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

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

ul {
    list-style: none;
}

/* ==========================================================================
   ESTILOS DE UTILITÁRIOS & COMPONENTES
   ========================================================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.85rem;
    }
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }
}

.text-center { text-align: center; }
.bg-dark { background-color: var(--dark); color: var(--text-light); }
.bg-dark-sec { background-color: var(--dark-secondary); color: var(--text-light); }
.bg-light { background-color: var(--light); }
.bg-light-alt { background-color: var(--light-alt); }

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
    box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-whatsapp {
    background-color: var(--success);
    color: var(--text-light);
    box-shadow: 0 4px 14px var(--success-glow);
}

.btn-whatsapp:hover {
    background-color: var(--success-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--success-glow);
}

.btn-large {
    font-size: 1.125rem;
    padding: 20px 40px;
    width: 100%;
    max-width: 450px;
}

.btn-block {
    width: 100%;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(241, 90, 36, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(241, 90, 36, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(241, 90, 36, 0);
    }
}

.btn-whatsapp.btn-pulse {
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================================================
   CABEÇALHO (STICKY & COMPACTO)
   ========================================================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(20, 22, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
    transition: var(--transition);
}

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

.logo-link img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.header-cta .btn {
    padding: 10px 20px;
    font-size: 0.875rem;
}

@media (max-width: 480px) {
    .header-cta {
        display: none; /* Mobile extrema: esconde o CTA do header para focar na página e no botão flutuante */
    }
}

/* ==========================================================================
   SEÇÃO 1 - HERO (CAPA DE ALTA CONVERSÃO)
   ========================================================================== */

.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(20, 22, 26, 0.95) 40%, rgba(20, 22, 26, 0.7) 100%), 
                url('assets/telhado.jpg') no-repeat center center / cover;
    color: var(--text-light);
    padding: 100px 0 80px 0;
    min-height: calc(85vh - 72px);
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-text h1 span {
    color: var(--primary);
    position: relative;
}

.hero-text .subheadline {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--light-alt);
    margin-bottom: 35px;
    max-width: 620px;
}

.hero-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

.hero-bullet i {
    color: var(--primary);
    font-size: 1.15rem;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(255,255,255,0.08);
}

.hero-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition);
}

.hero-image-wrapper:hover img {
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .hero {
        padding: 60px 0;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-text h1 {
        font-size: 2.35rem;
    }
    .hero-text .subheadline {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    .hero-image-wrapper img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .hero-bullets {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .hero-text h1 {
        font-size: 1.95rem;
    }
}

/* ==========================================================================
   SEÇÃO 2 - DIFERENCIAIS
   ========================================================================== */

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

.diff-card {
    background-color: var(--light);
    border: 1px solid var(--border-color);
    padding: 35px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.diff-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--primary);
}

.diff-icon {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.diff-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.diff-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .differentials-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SEÇÃO 3 - PRODUTOS
   ========================================================================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: var(--text-light);
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.product-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-content h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.product-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.product-cta {
    margin-top: auto;
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   SEÇÃO 4 - COMPARATIVO (TERMOACÚSTICA)
   ========================================================================== */

.comparison {
    background-color: var(--dark);
    color: var(--text-light);
    position: relative;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.comparison-box {
    padding: 40px;
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-box.simple {
    border-top: 4px solid hsl(200, 70%, 50%); /* Azul aço metálico */
    background-color: rgba(43, 139, 198, 0.02);
    box-shadow: 0 10px 30px rgba(43, 139, 198, 0.03);
}

.comparison-box.sandwich {
    border-top: 4px solid var(--primary); /* Laranja Zincatto */
    background-color: rgba(241, 90, 36, 0.02);
    box-shadow: 0 10px 30px rgba(241, 90, 36, 0.05);
}

.comparison-box h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comparison-desc {
    font-size: 0.925rem;
    color: var(--light-alt);
    margin-bottom: 24px;
    line-height: 1.5;
    opacity: 0.85;
}

.comparison-box.simple h3 i {
    color: hsl(200, 70%, 50%);
}

.comparison-box.sandwich h3 i {
    color: var(--primary);
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 1rem;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li i {
    font-size: 1.125rem;
}

.comparison-box.simple .comparison-list li i {
    color: hsl(200, 70%, 55%);
}

.comparison-box.sandwich .comparison-list li i {
    color: var(--primary);
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .comparison-box {
        padding: 24px;
    }
}

/* ==========================================================================
   SEÇÃO 5 - GALERIA DE FABRICAÇÃO
   ========================================================================== */

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-sm);
    background-color: var(--light-alt);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 22, 26, 0.8) 0%, rgba(20, 22, 26, 0) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-overlay span {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    transform: translateY(10px);
    transition: var(--transition);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SEÇÃO 6 - OBRAS REALIZADAS
   ========================================================================== */

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.work-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4/3;
}

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

.work-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 22, 26, 0.85) 0%, rgba(20, 22, 26, 0.2) 60%, rgba(20, 22, 26, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0.9;
    transition: var(--transition);
}

.work-info h4 {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.work-info p {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.work-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .works-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SEÇÃO 7 - REGIÃO ATENDIDA
   ========================================================================== */

.region-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.region-text h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.region-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.city-badge {
    background-color: var(--light-alt);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.city-badge i {
    color: var(--primary);
}

.city-badge:hover {
    background-color: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary-hover);
    transform: translateY(-2px);
}

.map-wrapper {
    width: 100%;
    height: 380px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 992px) {
    .region-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .map-wrapper {
        height: 300px;
    }
}

/* ==========================================================================
   SEÇÃO 8 - AVALIAÇÕES CARROSSEL
   ========================================================================== */

.reviews {
    overflow: hidden;
    position: relative;
}

.carousel-wrapper {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-slide {
    min-width: 100%;
    padding: 0 15px;
}

.review-box {
    background-color: var(--light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    position: relative;
    margin-bottom: 20px;
}

.review-stars {
    color: #ffc107;
    font-size: 1.15rem;
    margin-bottom: 16px;
}

.review-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
    position: relative;
}

.review-text::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(241, 90, 36, 0.1);
    position: absolute;
    top: -30px;
    left: -20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.author-avatar {
    width: 44px;
    height: 44px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
}

.carousel-btn {
    background-color: var(--light-alt);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text-light);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-alt);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background-color: var(--primary);
    width: 24px;
    border-radius: 50px;
}

@media (max-width: 768px) {
    .review-box {
        padding: 24px;
    }
    .review-text {
        font-size: 1rem;
    }
}

/* ==========================================================================
   SEÇÃO 9 - CTA FINAL
   ========================================================================== */

.final-cta {
    background: linear-gradient(135deg, rgba(20, 22, 26, 0.95) 0%, rgba(20, 22, 26, 0.8) 100%), 
                url('assets/telhas-frete-entrega.jpg') no-repeat center center / cover;
    text-align: center;
    color: var(--text-light);
}

.final-cta-content {
    max-width: 750px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 2.75rem;
    color: var(--text-light);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.final-cta p {
    font-size: 1.2rem;
    color: var(--light-alt);
    margin-bottom: 35px;
}

@media (max-width: 768px) {
    .final-cta h2 {
        font-size: 2rem;
    }
    .final-cta p {
        font-size: 1rem;
    }
}

/* ==========================================================================
   RODAPÉ (CLEAN & INDUSTRIAL)
   ========================================================================== */

.footer {
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
    padding: 60px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    color: var(--text-light);
    font-size: 1.15rem;
    margin-bottom: 20px;
    border-left: 3px solid var(--primary);
    padding-left: 10px;
}

.footer-col img {
    height: 48px;
    margin-bottom: 20px;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-contact li i {
    color: var(--primary);
    font-size: 1rem;
}

.footer-bottom {
    background-color: var(--dark-secondary);
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-bottom a {
    color: var(--light-alt);
    margin-left: 5px;
}

.footer-bottom a:hover {
    color: var(--primary);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================================================
   BOTÃO FLUTUANTE DO WHATSAPP
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition: var(--transition);
    animation: float-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #20ba5a;
    color: white;
}

@keyframes float-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
}

/* ==========================================================================
   PÁGINA DE AGRADECIMENTO (THANK YOU PAGE - TYP)
   ========================================================================== */

.typ-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--light);
}

.typ-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.typ-card {
    background-color: var(--light);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
}

.typ-success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 30px;
    animation: scale-up 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scale-up {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.typ-card h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.typ-card p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 30px;
}

.typ-counter {
    background-color: var(--light-alt);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 40px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.typ-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    min-width: 40px;
    display: inline-block;
}

.typ-progress-bar {
    width: 120px;
    height: 6px;
    background-color: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.typ-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--primary);
    animation: shrink-loader 3s linear forwards;
    transform-origin: left;
}

@keyframes shrink-loader {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.typ-fallback-text {
    font-size: 0.95rem;
    margin-top: 15px;
    color: var(--text-muted);
}

.typ-fallback-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
}

.typ-fallback-link:hover {
    color: var(--primary-hover);
}

/* Seção de Obras na TYP */
.typ-works-section {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    margin-top: 20px;
}

.typ-works-section h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.typ-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.typ-work-thumb {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--border-color);
}

.typ-work-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .typ-card {
        padding: 40px 24px;
    }
    .typ-card h1 {
        font-size: 1.85rem;
    }
    .typ-card p {
        font-size: 1rem;
    }
    .typ-works-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   SEÇÃO - PINTURA ELETROSTÁTICA
   ========================================================================== */

.paint-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.paint-text .badge {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(241, 90, 36, 0.2);
}

.paint-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.paint-text p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.6;
}

.paint-benefits {
    margin: 24px 0 35px 0;
}

.paint-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.975rem;
    line-height: 1.5;
}

.paint-benefits li i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 2px;
}

.paint-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.paint-main-image {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    background-color: #fff;
}

.paint-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.paint-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.paint-thumb {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background-color: #fff;
}

.paint-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.paint-thumb:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.paint-thumb.active {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 992px) {
    .paint-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .paint-main-image {
        height: 320px;
    }
}

