/* 
  Theme Name: Mega Forte Theme
  Author: Antigravity
  Description: Tema customizado para Mega Forte Indústria.
  Version: 1.0
*/

/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
    --primary-color: #e63946; /* Vermelho Elegante */
    --primary-dark: #c1121f;
    --secondary-color: #0f1c2e; /* Azul Marinho Elegante */
    --text-main: #333333;
    --text-light: #666666;
    --bg-light: #f5f7fa;
    --white: #ffffff;
    --border-color: #e2e8f0;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

/* ==========================================================================
   Typography & Buttons
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 3.5rem; /* Aumentado consideravelmente */
    color: var(--secondary-color);
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.section-header {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.25rem; /* Aumentado um pouco */
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Buttons */
.btn-primary, .btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 148, 29, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.125rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition);
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 5px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.site-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 400;
}

.logo-text strong {
    font-weight: 900;
    color: var(--primary-color);
}

.custom-logo {
    max-height: 80px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--text-main);
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

/* Override btn style in nav */
.nav-link.btn-primary {
    color: var(--white);
}

.nav-link.btn-primary:hover {
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.mobile-menu-toggle span:nth-child(1) { top: 0; }
.mobile-menu-toggle span:nth-child(2) { top: 11px; }
.mobile-menu-toggle span:nth-child(3) { top: 22px; }

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 11px;
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 11px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: var(--secondary-color);
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    animation: kenBurns 20s infinite alternate ease-in-out;
    z-index: 0;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 19, 43, 0.9) 0%, rgba(11, 19, 43, 0.4) 100%);
}

/* ==========================================================================
   Efeito Parallax e Bordas (Industo Style)
   ========================================================================== */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 80px 0;
}

.hero-frame-decor {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.frame-top-right, .frame-bottom-left {
    position: absolute;
    --border-w: 5px;
}

.frame-top-right { top: 20px; right: 0; width: 65%; height: 80%; }
.frame-top-right::before, .frame-top-right::after,
.frame-bottom-left::before, .frame-bottom-left::after {
    content: ''; position: absolute; background: var(--primary-color);
}

.frame-top-right::before {
    top: 0; right: 0; height: var(--border-w); width: 0;
    animation: drawW 1s ease-out forwards; animation-delay: 1.5s;
}
.frame-top-right::after {
    top: 0; right: 0; width: var(--border-w); height: 0;
    animation: drawH 1s ease-out forwards; animation-delay: 1.5s;
}

.frame-bottom-left { bottom: 0; left: -10px; width: 50%; height: 60%; }
.frame-bottom-left::before {
    bottom: 0; left: 0; height: var(--border-w); width: 0;
    animation: drawW 1s ease-out forwards; animation-delay: 1.5s;
}
.frame-bottom-left::after {
    bottom: 0; left: 0; width: var(--border-w); height: 0;
    animation: drawH 1s ease-out forwards; animation-delay: 1.5s;
}

@keyframes drawW { to { width: 100%; } }
@keyframes drawH { to { height: 100%; } }

/* Parallax Squares */
.parallax-square {
    position: absolute;
    z-index: 3;
    transition: transform 0.1s ease-out;
}
.sq-orange { background-color: var(--primary-color); }
.sq-white { background-color: var(--white); }
.sq-blue { background-color: #00b4d8; }

.sq-tl-1 { top: 20%; left: 8%; width: 40px; height: 40px; opacity: 0; animation: fadeIn 1s forwards 2s; }
.sq-tl-2 { top: 26%; left: 12%; width: 20px; height: 20px; opacity: 0; animation: fadeIn 1s forwards 2.2s; }
.sq-br-1 { bottom: 15%; right: 12%; width: 50px; height: 50px; opacity: 0; animation: fadeIn 1s forwards 2.4s; }
.sq-br-2 { bottom: 23%; right: 9%; width: 25px; height: 25px; opacity: 0; animation: fadeIn 1s forwards 2.6s; }
.sq-br-3 { bottom: 18%; right: 5%; width: 20px; height: 20px; opacity: 0; animation: fadeIn 1s forwards 2.8s; }

@keyframes fadeIn { to { opacity: 1; } }

.hero-content {
    position: relative;
    padding: 40px 60px; /* Empurra o texto para dentro, longe do L-shape */
    z-index: 5;
}

.btn-animated-wrapper {
    position: relative;
    display: inline-block;
    background-color: var(--white);
    border-radius: 4px;
    transition: var(--transition);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.5s;
}

/* Efeito da bordinha deslocada estilo Industo */
.btn-animated-wrapper::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    pointer-events: none;
    z-index: 1;
    transition: var(--transition);
}

.btn-animated-wrapper:hover {
    background-color: var(--primary-color);
}

.btn-animated-wrapper:hover::before {
    top: 0; left: 0;
    border-color: var(--white);
}

.btn-animated-wrapper .btn-primary {
    position: relative;
    z-index: 2;
    background-color: transparent !important;
    border: none !important;
    color: var(--secondary-color);
    margin: 0;
}

.btn-animated-wrapper:hover .btn-primary {
    color: var(--white) !important;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(247, 148, 29, 0.15);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}

.hero-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.7s;
}

.hero-title .hero-title-main {
    color: var(--white);
    font-size: 3.8rem;
    display: block;
    margin-top: 5px;
}

.text-primary {
    color: var(--primary-color) !important;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.1s;
}

/* ==========================================================================
   Products Section
   ========================================================================== */
.products-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    overflow: hidden; /* For the carousel */
}

.filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Carousel */
.products-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.products-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    /* Peek at the next card */
    padding-right: 20%; 
}

.product-card {
    flex: 0 0 calc(33.333% - 20px);
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.product-img-box {
    width: 100%;
    height: 250px;
    background-color: #eaeff5;
    position: relative;
    overflow: hidden;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    font-weight: 600;
    font-family: var(--font-heading);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.product-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-info .btn-outline {
    width: 100%;
    padding: 10px;
}

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

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.control-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-section {
    padding: 40px 0 100px 0;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card-industo {
    position: relative;
    background-color: var(--white);
    border-radius: 4px;
    padding: 40px 30px;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-card-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -2;
}

.feature-card-industo::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: var(--secondary-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s ease;
    z-index: -1;
    opacity: 0.95;
}

.feature-card-industo:hover {
    transform: translateY(-5px);
}

.feature-card-industo:hover::before {
    transform: scaleY(1);
}

.feature-card-industo:hover .feature-card-bg {
    opacity: 1;
    transform: scale(1.1);
}

.feature-icon-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.icon-industo {
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.feature-card-industo:hover .icon-industo {
    color: var(--white);
    transform: translateY(-5px);
}

.icon-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: transparent;
    -webkit-text-stroke: 1px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    line-height: 1;
    margin-top: -10px;
}

.feature-card-industo:hover .icon-number {
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
}

.feature-card-content h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    transition: all 0.4s ease;
    line-height: 1.3;
}

.feature-card-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.feature-btn {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    text-decoration: none;
}

.feature-btn .arrow {
    margin-left: 8px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.feature-card-industo:hover h3,
.feature-card-industo:hover p,
.feature-card-industo:hover .feature-btn,
.feature-card-industo:hover .feature-btn .arrow {
    color: var(--white);
}

.subtitle-badge {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
    color: var(--white);
}

.testimonials-section h2 {
    color: var(--white);
}

.google-rating {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.google-rating span {
    letter-spacing: 2px;
}

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

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-card .stars {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-card strong {
    color: var(--primary-color);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #050a17; /* Even darker */
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-info h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links h4, .footer-contact h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 12px;
}

.btn-whatsapp {
    margin-top: 20px;
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.875rem;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Media Queries (Mobile First approach adapted for Desktop First CSS)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    
    .product-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    h2 { font-size: 2rem; }
    
    .mobile-menu-toggle { display: block; }
    
    .header {
        background-color: var(--white);
        padding: 15px 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--secondary-color);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: var(--transition);
        box-shadow: 20px 0 50px rgba(0,0,0,0.5);
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .hero-frame {
        padding: 30px 20px;
        margin: 20px 0;
    }
    
    .hero-frame::before {
        left: 10px;
        top: -15px;
        width: 12px;
        height: 12px;
    }

    .hero-frame::after {
        left: 25px;
        top: -5px;
        width: 6px;
        height: 6px;
    }

    .hero-content { padding: 20px 25px; } /* Recuo interno no mobile */

    .hero-title { font-size: 1.4rem; margin-bottom: 1rem; line-height: 1.2; }
    .hero-title .hero-title-main { font-size: 2.4rem; margin-top: 2px; display: block; }
    
    .frame-bottom-left { left: 0; width: 60%; height: 75%; }
    .frame-top-right { right: 0; top: 20px; width: 75%; height: 75%; }
    
    .parallax-square { display: none; /* Em telas muito pequenas o parallax pode atrapalhar a leitura e as bordas */ }
    
    .hero-subtitle { 
        font-size: 0.85rem; 
        margin-bottom: 2rem; 
        line-height: 1.5; 
        max-width: 95%; 
    }
    
    .hero-badge { font-size: 0.75rem; padding: 4px 12px; margin-bottom: 1rem; }
    
    .btn-large {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    h2 {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }

    .features-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px; 
    }
    

    .feature-card-industo {
        padding: 20px 15px;
    }
    
    .icon-number {
        font-size: 2rem;
    }
    
    .feature-icon-wrapper {
        margin-bottom: 15px;
    }
    
    .feature-card-content h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .feature-card-content p {
        font-size: 0.8rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .feature-btn {
        font-size: 0.75rem;
    }

    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .products-track {
        padding-right: 15%;
        gap: 15px;
    }
    
    .product-card {
        flex: 0 0 85%;
    }
}

/* ==========================================================================
   About Section (Sobre Nós)
   ========================================================================== */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr; /* Dá um pouco mais de largura para a imagem */
    gap: 50px;
    align-items: stretch; /* Estica a imagem para acompanhar o texto */
}

.about-text h2 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-text h2 span {
    color: var(--primary-color);
}

.about-text p {
    color: var(--text-light);
    font-size: 0.95rem; /* Fonte menor, semelhante ao site antigo */
    line-height: 1.6;
    margin-bottom: 15px; /* Menos espaçamento entre parágrafos */
}

.about-stats {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.about-image-slider {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    height: 100%;
    min-height: 400px;
}

.about-image-slider .slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.about-image-slider .slide.active {
    opacity: 1;
    z-index: 2;
}

.slider-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.2) 0%, transparent 100%);
    z-index: 3;
    pointer-events: none;
}

/* ==========================================================================
   Video Marquee Section (Depoimentos)
   ========================================================================== */
.testimonials-video-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
    color: var(--white);
    overflow: hidden;
}

.testimonials-video-section h2 {
    color: var(--white);
}

.testimonials-video-section .subtitle-badge {
    color: var(--white);
    background: rgba(255,255,255,0.1);
    padding: 5px 15px;
    border-radius: 20px;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
    gap: 30px;
    padding-left: 30px;
}

.marquee-wrapper:hover .marquee-track,
.marquee-track.paused {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1550px); } /* 5 cards de 280px + 5 gaps de 30px */
}

.video-card {
    position: relative;
    width: 280px;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.4s ease;
    background-color: #000;
}

.video-card:hover {
    transform: scale(1.02);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.video-card.playing video {
    pointer-events: auto;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-card:hover .video-overlay {
    background: rgba(0,0,0,0.05);
}

.video-card.playing .video-overlay {
    opacity: 0;
}

.play-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding-left: 4px;
    transition: transform 0.3s ease;
}

.video-card:hover .play-icon {
    transform: scale(1.1);
}

/* ==========================================================================
   Google Reviews Section
   ========================================================================== */
.google-reviews-section {
    padding: 100px 0;
    background-color: #f8f9fa; /* Fundo cinza bem claro para respiro */
}

.google-rating-badge {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--secondary-color);
}

.google-logo {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.review-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 15px;
}

.reviewer-info strong {
    display: block;
    color: var(--secondary-color);
    font-size: 1.05rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.google-icon-small img {
    width: 20px;
    height: 20px;
}

.review-card .stars {
    margin-bottom: 15px;
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

.google-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 20px;
}

/* ==========================================================================
   Premium Footer
   ========================================================================== */
.footer {
    background-color: #0b1120; /* Azul marinho quase preto (Premium) */
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr 1.5fr; /* 5 colunas para caber mapa e horários separados */
    gap: 30px; /* Reduzindo gap para caber mais colunas */
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    color: white;
    font-size: 2rem;
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-subtitle {
    color: white;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 40px; height: 2px;
    background-color: var(--primary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.contact-item, .address-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item .icon, .address-block .icon {
    margin-right: 10px;
    font-size: 1.1rem;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.contact-item a:hover {
    color: white;
}

.time-block strong {
    display: block;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.time-block p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    font-size: 0.85rem;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
}

/* ==========================================================================
   Animations (Scroll)
   ========================================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s !important; }
.delay-200 { transition-delay: 0.2s !important; }
.delay-300 { transition-delay: 0.3s !important; }
.delay-400 { transition-delay: 0.4s !important; }

/* ==========================================================================
   Mobile Overrides for New Sections (Must be at the bottom)
   ========================================================================== */
@media (max-width: 992px) {
    .about-grid { 
        grid-template-columns: 1fr; 
        gap: 30px; 
    }
}

@media (max-width: 768px) {
    .about-section {
        position: relative;
        padding: 60px 0;
    }

    .about-text {
        position: relative;
        z-index: 10;
    }

    .about-text h2, .about-feature-item, .stat-label {
        color: var(--white);
    }

    .about-text p {
        color: rgba(255, 255, 255, 0.9);
    }

    .about-stats {
        border-top-color: rgba(255, 255, 255, 0.2);
    }

    .about-image-slider {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        margin-top: 0;
        height: 100%;
        width: 100%;
        border-radius: 0;
        z-index: 1;
        aspect-ratio: auto;
    }

    .about-image-slider .slider-overlay {
        background: rgba(10, 15, 30, 0.85);
    }
    
    .footer {
        padding: 60px 0 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }

    /* Grid 2x2 para Avaliações no Mobile */
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .review-card {
        padding: 15px;
    }
    
    .reviewer-avatar {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        margin-right: 10px;
    }
    
    .reviewer-info strong {
        font-size: 0.85rem;
    }
    
    .review-date {
        font-size: 0.7rem;
    }
    
    .review-card p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .google-icon-small svg {
        width: 15px;
        height: 15px;
    }
}
