/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FEFEFE;
    --secondary-color: #E9BE3F;
    --tertiary-color: #003746;
    --text-dark: #333;
    --text-light: #666;
    --overlay-dark: rgba(0, 0, 0, 0.7);
    --header-height: 64px; /* header menor no desktop */
    --bar-height: 42px; /* sticky top bar height */
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--primary-color);
}

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

/* Header - Atualizado */
.header {
    position: fixed;
    top: 0; /* sempre fixo no topo; sticky top bar foi removida */
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 8px 0; /* header mais baixo */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background 0.2s ease, box-shadow 0.2s ease;
}

/* Header escondido ao rolar para baixo */
.header.header-hidden {
    transform: translateY(-100%);
}

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

.logo {
    height: 40px; /* logo menor para reduzir altura */
    width: auto;
}

.header-cta {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
}

/* Header Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav a {
    color: var(--tertiary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover {
    background: rgba(0,0,0,0.05);
}

.nav .primary-link {
    background: var(--secondary-color);
    color: var(--tertiary-color);
}

.nav .primary-link:hover {
    filter: brightness(0.95);
}

/* Top Sticky Bar */
.sticky-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--bar-height);
    background: #0b2c33;
    color: #fff;
    z-index: 1100;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}
.sticky-top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sticky-top-bar .bar-text {
    font-weight: 600;
    font-size: 14px;
}
.sticky-top-bar .bar-cta {
    background: linear-gradient(135deg, var(--secondary-color), #f0d060);
    color: var(--tertiary-color);
    border: none;
    padding: 8px 16px;
    font-weight: 700;
    border-radius: 999px;
    cursor: pointer;
}

/* Mobile: esconder header ao focar no formulário */
@media (max-width: 768px) {
    .header.mobile-slide-up {
        transform: translateY(-120%);
    }
    .sticky-top-bar .bar-text { font-size: 12px; }
}

/* Botões CTA */
.cta-button {
    background: linear-gradient(135deg, var(--secondary-color), #f0d060);
    color: var(--tertiary-color);
    border: none;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(233, 190, 63, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 190, 63, 0.4);
    background: linear-gradient(135deg, #f0d060, var(--secondary-color));
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: calc(100vh - (var(--header-height) + var(--bar-height)));
    height: auto;
    padding-top: calc(var(--header-height) + var(--bar-height) + 10px);
    padding-bottom: 20px; /* reduzido */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
    animation: kenBurns 15s ease-in-out;
}

/* Hero Slide with Ken Burns Effect */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    animation: kenBurnsZoom 12s ease-in-out infinite;
}

/* Hero Video Styles */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-video.active {
    opacity: 1;
}

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

@keyframes kenBurnsZoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero grid with form */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: start;
}
.hero-copy { text-align: left; }
.hero-pain {
    font-size: 1.05rem;
    margin: 8px 0 16px;
    color: #eaeaea;
}
.hero-form {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 14px;
    backdrop-filter: blur(8px);
}
.hero-form-title {
    margin-bottom: 6px;
    font-size: 1.1rem;
    color: var(--secondary-color);
    text-align: center;
    letter-spacing: 0;
}
.hero-form .form-group label { 
    color: var(--secondary-color);
    margin-bottom: 3px;
    font-size: 0.9rem;
}
.hero-form input[type="text"],
.hero-form input[type="tel"],
.hero-form select,
.hero-form input[type="file"] {
    width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.12);
    color: #fff;
    margin-bottom: 8px;
    font-size: 16px;
}
.hero-form input::placeholder { color: rgba(255,255,255,0.8); }
.hero-form-submit { width: 100%; }

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.highlight-text {
    color: var(--secondary-color);
    text-decoration: underline;
    text-decoration-color: var(--secondary-color);
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}

.hero-pain-points {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.pain-point {
    background: rgba(255, 77, 87, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 77, 87, 0.5);
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-solution {
    background: rgba(46, 213, 115, 0.2);
    padding: 20px 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(46, 213, 115, 0.5);
    margin: 30px 0;
}

.solution-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 0;
}

/* Typewriter Animation - Removido pois não será mais usado */
.typewriter {
    color: var(--secondary-color);
    border-right: 3px solid var(--secondary-color);
    animation: blink-cursor 1s infinite;
    min-width: 200px;
    display: inline-block;
    text-align: left;
}

@keyframes blink-cursor {
    0%, 50% {
        border-color: var(--secondary-color);
    }
    51%, 100% {
        border-color: transparent;
    }
}

/* Responsive ajustes para typewriter */
@media (max-width: 768px) {
    .typewriter {
        min-width: 150px;
        border-right-width: 2px;
    }
}

@media (max-width: 480px) {
    .typewriter {
        min-width: 120px;
        border-right-width: 2px;
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-cta {
    margin-bottom: 20px;
    font-size: 20px;
    padding: 20px 40px;
}

.hero-arrow {
    font-size: 1.2rem;
    margin-top: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Hero Compact Variant: reduz texto no topo */
.hero-compact .hero-description,
.hero-compact .hero-pain-points,
.hero-compact .hero-solution,
.hero-compact .hero-features,
.hero-compact .hero-arrow {
    display: none !important;
}

.hero-compact .hero-title {
    font-size: 3rem;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
}

/* Hero Marquee */
.hero-marquee {
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    padding: 25px 0;
    margin: 0;
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: fit-content;
    animation: marquee 40s linear infinite;
    will-change: transform;
}

.marquee-content {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.marquee-content img {
    height: 100px;
    width: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0.95;
    flex-shrink: 0;
}

.marquee-content img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
    opacity: 1;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

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

/* Mobile Showroom Section */
.mobile-showroom-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa, var(--primary-color));
}

/* Reviews Top Section */
.reviews-top-section {
    padding: 50px 0 20px;
    background: var(--primary-color);
}
.reviews-top-section .reviews-header.header-compact { margin-bottom: 10px; }

/* Reviews Top Section - cores ajustadas para fundo branco */
.reviews-top-section .rating-text {
    color: var(--text-dark);
}
.reviews-top-section .review-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.reviews-top-section .reviewer-name {
    color: var(--tertiary-color);
}
.reviews-top-section .review-text {
    color: var(--text-dark);
}
.reviews-top-section .review-date {
    color: var(--text-light);
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    color: var(--tertiary-color);
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.3;
}

.section-title.centered {
    text-align: center;
}

.section-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.section-text.centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.section-text.highlight {
    color: var(--tertiary-color);
    font-weight: bold;
    background: linear-gradient(120deg, transparent 0%, var(--secondary-color) 0%, var(--secondary-color) 100%, transparent 100%);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    animation: highlight 2s ease-in-out;
    padding: 10px 0;
}

@keyframes highlight {
    0% { background-size: 0% 100%; }
    50% { background-size: 100% 100%; }
    100% { background-size: 100% 100%; }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2rem;
}

.benefit-text {
    font-weight: bold;
    color: var(--tertiary-color);
}

/* Differentiators Section */
.differentiators {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.diff-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diff-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.diff-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    color: var(--secondary-color);
    align-self: center;
}

.diff-content h3 {
    font-size: 1.3rem;
    color: var(--tertiary-color);
    margin-bottom: 8px;
    font-weight: bold;
}

.diff-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.mobile-van-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

/* Photo Gallery Slider */
.photo-gallery-slider {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 1080/1350;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    transform: translateY(-50%);
}

.gallery-btn {
    background: rgba(233, 190, 63, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--tertiary-color);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.gallery-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: var(--tertiary-color);
    color: white;
}

.products-section .section-title {
    color: white;
}

.white-text {
    color: white !important;
}

/* Why Quartz Section */
.why-quartz-section {
    margin: 60px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.subsection-title {
    font-size: 2rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

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

.quartz-benefit {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.quartz-benefit:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.quartz-benefit .benefit-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.quartz-benefit h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.quartz-benefit p {
    font-size: 1rem;
    color: white;
    line-height: 1.6;
    opacity: 0.9;
}

/* Protec Difference Section */
.protec-difference {
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(233, 190, 63, 0.2) 0%, rgba(233, 190, 63, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(233, 190, 63, 0.3);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
    text-align: left;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 18px 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 1.05rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.15);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    color: var(--text-dark);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-title {
    font-size: 1.5rem;
    color: var(--tertiary-color);
    padding: 20px 20px 10px;
    font-weight: bold;
}

.product-description {
    padding: 0 20px 20px;
    color: var(--text-light);
}

.testimonial {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.testimonial-author {
    font-weight: bold;
    color: white;
}

/* Google Reviews */
.google-reviews {
    margin: 60px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Why Choose Section */
.why-choose-section { padding: 70px 0; background: #f8f9fa; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.why-item { 
    background: #fff; 
    padding: 25px; 
    border-radius: 12px; 
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.why-item h3 { 
    color: var(--tertiary-color); 
    margin-bottom: 10px; 
    font-size: 1.15rem;
    line-height: 1.4;
}
.why-item p { 
    color: var(--text-light);
    line-height: 1.6;
}

/* 3D Preview Section */
.preview3d-section { padding: 70px 0; background: linear-gradient(135deg, var(--tertiary-color), #004d5c); color: #fff; }
.preview3d-section .section-title { color: #fff; }
.preview3d-section .section-text { color: #fff; }
.preview3d-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 30px; align-items: center; }
.preview3d-image img { width: 100%; border-radius: 16px; box-shadow: 0 15px 35px rgba(0,0,0,0.35); }

/* Comparison Section */
.comparison-section { padding: 70px 0; background: #fff; }
.comparison-table { max-width: 900px; margin: 0 auto; border-radius: 14px; overflow: hidden; border: 1px solid #e6eef0; }
.comparison-table .row { display: grid; grid-template-columns: 2fr 1fr 1fr; }
.comparison-table .row.header { background: #0b2c33; color: #fff; font-weight: 700; }
.comparison-table .cell { padding: 14px 16px; border-bottom: 1px solid #e6eef0; }
.comparison-table .row:last-child .cell { border-bottom: none; }
.comparison-table .yes { color: #1bbd66; font-weight: 800; }
.comparison-table .no { color: #d94b4b; font-weight: 800; }

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.google-logo {
    height: 40px;
    width: auto;
}

.reviews-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stars {
    color: #FFD700;
    font-size: 24px;
    letter-spacing: 2px;
}

.rating-text {
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    color: white;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.review-stars {
    color: #FFD700;
    font-size: 14px;
    margin-bottom: 3px;
}

.review-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.review-text {
    color: white;
    line-height: 1.6;
    font-style: italic;
}

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

/* Video Section */
.videos-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #003746 0%, #002635 100%);
    text-align: center;
}

.videos-section .section-title {
    color: #fff;
}

.videos-showcase {
    margin: 60px 0;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(0, 55, 70, 0.3) 0%, rgba(0, 38, 53, 0.3) 100%);
    border-radius: 20px;
    text-align: center;
}

.videos-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Responsive Show/Hide Classes */
.mobile-only {
    display: block !important;
}

.desktop-only {
    display: none !important;
}

@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
    
    .desktop-only {
        display: block !important;
    }
}

/* MOBILE VERSION - Carousel */
.video-carousel-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    background: #000;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.video-container.active {
    opacity: 1;
    visibility: visible;
}

.carousel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 10;
}

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

.video-overlay.playing {
    background: rgba(0, 0, 0, 0.1);
    pointer-events: auto;
}

.video-overlay.playing:hover {
    background: rgba(0, 0, 0, 0.3);
}

.play-button {
    color: white;
    font-size: 60px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease;
}

.video-overlay:hover .play-button {
    transform: scale(1.1);
}

.video-overlay.playing .play-button {
    display: none;
}

/* Ícone de pause para mobile */
.video-overlay.playing::before {
    content: "⏸️";
    font-size: 50px;
    color: white;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-overlay.playing:hover::before {
    opacity: 1;
}

.video-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 20;
}

.nav-btn {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.nav-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.video-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #E9BE3F;
    transform: scale(1.2);
}

/* DESKTOP VERSION - 3 Separate Videos */
.desktop-videos-grid {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.desktop-video-item {
    flex: 0 0 300px;
    min-width: 300px;
    max-width: 300px;
}

.desktop-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.desktop-video-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.4);
}

.desktop-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.desktop-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 10;
}

.desktop-video-overlay:hover {
    background: rgba(0, 0, 0, 0.4);
}

.desktop-video-overlay.playing {
    background: rgba(0, 0, 0, 0.1);
    pointer-events: auto;
}

.desktop-video-overlay.playing:hover {
    background: rgba(0, 0, 0, 0.3);
}

.desktop-play-button {
    color: white;
    font-size: 50px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease;
}

.desktop-video-overlay:hover .desktop-play-button {
    transform: scale(1.1);
}

.desktop-video-overlay.playing .desktop-play-button {
    display: none;
}

/* Ícone de pause para desktop */
.desktop-video-overlay.playing::before {
    content: "⏸️";
    font-size: 40px;
    color: white;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.desktop-video-overlay.playing:hover::before {
    opacity: 1;
}

/* ===== Testimonial Player: garantir proporção 16:9 e evitar cortes ===== */
.testimonial-player {
    aspect-ratio: 9/16 !important; /* 1080x1920 (vertical) */
    max-width: 380px; /* menor no desktop para não parecer gigante */
    width: 100%;
    margin: 20px auto 0;
}

.testimonial-player .desktop-video {
    object-fit: cover !important; /* preenche sem barras pretas */
    object-position: 50% 20%; /* foco levemente acima para não cortar o rosto */
    background: #000; /* fallback quando vídeo não carregou */
}

@media (max-width: 768px) {
    .testimonial-player {
        aspect-ratio: 9/16 !important; /* mantém vertical no mobile */
        max-width: 360px; /* um pouco menor em tablets e celulares grandes */
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .testimonial-player {
        aspect-ratio: 9/16 !important; /* mantém vertical no mobile pequeno */
        max-width: 100%;
        border-radius: 14px;
    }
    /* No mobile pequeno, evitar corte do conteúdo do vídeo */
    .testimonial-player .desktop-video {
        object-fit: contain !important; /* não corta, aceita pequenas barras laterais */
        object-position: center center !important;
        background: #000; /* preenche as barras com preto para parecer player */
    }
}

/* Mobile Showroom Section */
.mobile-showroom-section {
    padding: 80px 0;
    background: var(--primary-color);
}

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

.showroom-text h3 {
    font-size: 1.8rem;
    color: var(--tertiary-color);
    margin-bottom: 30px;
}

.showroom-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.showroom-benefits li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.showroom-benefits strong {
    display: block;
    color: var(--tertiary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.showroom-benefits p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.showroom-gallery {
    display: grid;
    gap: 15px;
}

.gallery-main {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
}

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

.grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1;
}

.grid-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Form Section */
.form-section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--tertiary-color), #004d5c);
    color: white;
}

.form-section .section-title {
    color: white;
}

/* Urgency Bar */
.urgency-bar {
    max-width: 640px;
    margin: 24px auto;
    padding: 16px 24px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    animation: pulse-urgency 2s infinite;
}

@keyframes pulse-urgency {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
    }
}

.urgency-text {
    margin: 0;
    font-size: 1rem;
    color: white;
    font-weight: 600;
}

.contact-form {
    max-width: 560px;
    margin: 30px auto 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 28px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 3px;
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

/* Select dropdown styled like inputs */
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: border-color 0.3s ease;
}
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.2);
}
.form-group select option {
    color: #0b2c33; /* dark text in options list */
}

.form-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.2);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Form Section - Área Selector Elegante */
.area-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.area-option {
    position: relative;
}

.area-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.area-label {
    display: block;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 22px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 92px;
}

.area-option input[type="radio"]:checked + .area-label {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--tertiary-color);
    font-weight: bold;
    transform: scale(1.05);
}

.area-label:hover {
    border-color: var(--secondary-color);
    background: rgba(233, 190, 63, 0.2);
}

.checkbox-group {
    display: none; /* Removido antigo */
}

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    margin: 24px 0 16px;
}

.form-disclaimer {
    text-align: center;
    color: var(--secondary-color);
    font-size: 13px;
    margin-top: 12px;
}

/* Trust Section */
.trust-section {
    padding: 100px 0;
    background: var(--primary-color);
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-left: 5px solid var(--secondary-color);
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.trust-icon {
    font-size: 2rem;
}

.trust-text {
    font-weight: bold;
    color: var(--tertiary-color);
}

/* Guarantee Section */
.guarantee-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background: linear-gradient(135deg, var(--secondary-color), #f0d060);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(233, 190, 63, 0.3);
}

.guarantee-section .subsection-title {
    color: var(--tertiary-color);
    margin-bottom: 20px;
}

.guarantee-text {
    font-size: 1.2rem;
    color: var(--tertiary-color);
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.portfolio-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.portfolio-image:hover {
    transform: scale(1.05);
}

.final-cta {
    text-align: center;
    margin-top: 60px;
}

.final-cta-btn {
    font-size: 22px;
    padding: 22px 45px;
}

/* Final CTA strong */
.final-cta-strong { padding: 70px 0; background: #fff6d7; }
.final-cta-strong .section-title { color: var(--tertiary-color); }
.final-cta-strong-btn { font-size: 20px; padding: 18px 32px; }

/* Material Selection Section */
.material-selection-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.material-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.material-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), #f0d060);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.material-card:hover::before {
    transform: scaleX(1);
}

.material-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.material-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.material-card:nth-child(1) .material-icon { animation-delay: 0s; }
.material-card:nth-child(2) .material-icon { animation-delay: 0.3s; }
.material-card:nth-child(3) .material-icon { animation-delay: 0.6s; }

.material-title {
    font-size: 28px;
    color: var(--tertiary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.material-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.material-features {
    list-style: none;
    text-align: left;
    margin: 25px 0;
    padding: 0;
}

.material-features li {
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.material-features li:last-child {
    border-bottom: none;
}

.material-card:hover .material-features li {
    padding-left: 10px;
    color: var(--tertiary-color);
}

.material-cta {
    width: 100%;
    padding: 15px 30px;
    background: var(--secondary-color);
    color: var(--tertiary-color);
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(233, 190, 63, 0.3);
}

.material-cta:hover {
    background: #f0d060;
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(233, 190, 63, 0.5);
}

/* Colors & Patterns Section */
.colors-patterns-section {
    margin-top: 80px;
    padding: 60px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.subsection-title {
    font-size: 32px;
    color: var(--tertiary-color);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.subsection-text {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 40px;
}

.color-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 40px 0 60px;
}

.color-category {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.color-category:hover {
    transform: scale(1.05);
}

.color-preview {
    width: 100%;
    height: 120px;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.color-category:hover .color-preview {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.color-preview.white-tones {
    background: linear-gradient(135deg, #ffffff, #f5f5f5, #e8e8e8);
}

.color-preview.gray-tones {
    background: linear-gradient(135deg, #d4d4d4, #9e9e9e, #757575);
}

.color-preview.dark-tones {
    background: linear-gradient(135deg, #424242, #212121, #000000);
}

.color-preview.earth-tones {
    background: linear-gradient(135deg, #d7ccc8, #bcaaa4, #8d6e63);
}

.color-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--tertiary-color);
}

.pattern-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.pattern-option {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.pattern-option:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.pattern-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.pattern-option h4 {
    font-size: 20px;
    color: var(--tertiary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.pattern-option p {
    font-size: 14px;
    color: var(--text-light);
}

.cta-subtext {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-top: 15px;
    font-style: italic;
}

.primary-cta {
    font-size: 20px;
    padding: 18px 40px;
    background: var(--tertiary-color);
    color: white;
}

.primary-cta:hover {
    background: #004d5e;
}

/* Footer reviews */
.footer-reviews-section { padding: 60px 0; background: #f8f9fa; }
.footer-reviews-section .review-card { background: #fff; border: 1px solid #eef2f3; color: var(--text-dark); }

/* Floating text/SMS button removed */

/* Mobile sticky bottom bar */
.mobile-sticky-bar { display: none; }
.mobile-sticky-bar .sticky-bar-btn { width: 100%; border: none; padding: 16px; font-size: 16px; font-weight: 800; background: linear-gradient(135deg, var(--secondary-color), #f0d060); color: var(--tertiary-color); }

/* Mobile call button in header */
.mobile-call-btn { display: none; }

/* Footer */
.footer {
    background: var(--tertiary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-contact {
    color: var(--secondary-color);
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root { --header-height: 90px; } /* header compacto no mobile */
    :root { --bar-height: 38px; }
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 10px;
    }
    .nav { gap: 8px; flex-wrap: wrap; justify-content: center; }
    
    /* Hero Marquee Mobile */
    .hero-marquee {
        padding: 15px 0;
    }
    
    .marquee-content img {
        height: 80px;
    }
    
    .marquee-track {
        animation: marquee 30s linear infinite;
        gap: 15px;
    }
    
    .marquee-content {
        gap: 15px;
    }
    
    /* Ajuste para evitar sobreposição do header no mobile */
    .hero-section { min-height: calc(100vh - (var(--header-height) + var(--bar-height))); }
    
    .hero-content { padding-top: 20px; }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-pain-points {
        flex-direction: column;
        gap: 12px;
    }
    
    .pain-point {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    .hero-solution {
        padding: 15px 20px;
    }
    
    .solution-text {
        font-size: 1.05rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-grid { grid-template-columns: 1fr; gap: 20px; }
    .hero-copy { text-align: center; }
    .mobile-sticky-bar { display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999; box-shadow: 0 -4px 16px rgba(0,0,0,0.15); }
    .mobile-call-btn { display: inline-block; background: var(--secondary-color); color: var(--tertiary-color) !important; border-radius: 999px; font-weight: 800; padding: 8px 12px; }
    .preview3d-grid { grid-template-columns: 1fr; }
    
    .section-title {
        font-size: 2rem;
    }
    
    .subsection-title {
        font-size: 1.6rem;
    }
    
    .differentiators {
        gap: 20px;
    }
    
    .diff-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .diff-icon {
        font-size: 2rem;
        align-self: center;
    }
    
    .diff-content h3 {
        font-size: 1.1rem;
    }
    
    .quartz-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .urgency-bar {
        padding: 15px 20px;
    }
    
    .urgency-text {
        font-size: 1rem;
    }
    
    .area-selector {
        flex-direction: column;
        gap: 10px;
    }
    
    .area-label {
        text-align: center;
    }
    
    .trust-features {
        grid-template-columns: 1fr;
    }
    
    .guarantee-section {
        padding: 30px 20px;
    }
    
    .guarantee-text {
        font-size: 1.05rem;
    }
    
    .portfolio-gallery {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .video-navigation {
        padding: 0 5px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .gallery-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .google-reviews {
        padding: 25px 15px;
    }
    
    /* Material Selection Mobile */
    .material-selection-section {
        padding: 50px 0;
    }
    
    .materials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 30px 0;
    }
    
    .material-card {
        padding: 35px 25px;
    }
    
    .material-icon {
        font-size: 52px;
    }
    
    .material-title {
        font-size: 24px;
    }
    
    .colors-patterns-section {
        padding: 40px 20px;
        margin-top: 50px;
    }
    
    .subsection-title {
        font-size: 26px;
    }
    
    .subsection-text {
        font-size: 16px;
    }
    
    .color-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 30px 0 40px;
    }
    
    .color-preview {
        height: 100px;
    }
    
    .color-name {
        font-size: 14px;
    }
    
    .pattern-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }
    
    .pattern-option {
        padding: 25px 15px;
    }
    
    .pattern-icon {
        font-size: 40px;
    }
    
    .pattern-option h4 {
        font-size: 18px;
    }
    
    .primary-cta {
        font-size: 17px;
        padding: 16px 30px;
    }
    
    .cta-subtext {
        font-size: 14px;
    }
}

/* Responsive Video Styles */
@media (max-width: 768px) {
    /* Forçar esconder vídeos desktop no mobile */
    .desktop-videos-grid,
    .desktop-video-item,
    .desktop-video-container {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    /* Exceção: permitir player do depoimento aparecer no mobile */
    .testimonial-player {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .video-carousel-wrapper {
        max-width: 320px;
        margin: 0 auto;
        width: calc(100% - 40px);
    }
    
    .play-button {
        font-size: 40px;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .video-navigation {
        padding: 0 15px;
    }
    
    .portfolio-section {
        padding: 60px 0;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .portfolio-item {
        aspect-ratio: 16/9;
    }
}

/* Client Testimonial Section */
.client-testimonial-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, var(--primary-color));
}

.client-testimonial-section .section-title {
    text-align: center;
}

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

.testimonial-video {
    width: 100%;
    max-width: 900px;
    margin: 20px auto 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    display: block;
}

@media (max-width: 480px) {
    /* Forçar esconder vídeos desktop no mobile pequeno */
    .desktop-videos-grid,
    .desktop-video-item,
    .desktop-video-container {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    /* Exceção: permitir player do depoimento aparecer no mobile pequeno */
    .testimonial-player {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .video-carousel-wrapper {
        max-width: 280px;
        margin: 0 auto;
        width: calc(100% - 30px);
    }
    
    .play-button {
        font-size: 35px;
    }
    
    .nav-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* Desktop Responsive */
@media (min-width: 769px) {
    .desktop-videos-grid {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center;
        align-items: flex-start;
        gap: 30px;
        flex-wrap: nowrap;
    }
    
    .desktop-video-item {
        flex: 0 0 250px;
        min-width: 250px;
        max-width: 250px;
    }
    
    .desktop-play-button {
        font-size: 40px;
    }
}

@media (min-width: 1025px) {
    .desktop-videos-grid {
        gap: 50px;
    }
    
    .desktop-video-item {
        flex: 0 0 320px;
        min-width: 320px;
        max-width: 320px;
    }
    
    /* Desktop layout improvements */
    .section-title {
        font-size: 2.8rem;
        margin-bottom: 35px;
    }
    
    .section-text {
        font-size: 1.25rem;
        line-height: 1.7;
    }
    
    .reviews-top-section {
        padding: 70px 0 40px;
    }
    
    .why-choose-section {
        padding: 80px 0;
    }
    
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 40px;
    }
    
    .why-item {
        padding: 30px;
    }
    
    .client-testimonial-section {
        padding: 90px 0;
    }
    
    .videos-section {
        padding: 90px 0;
    }
    
    .form-section {
        padding: 90px 0;
    }
    
    .how-it-works-section {
        padding: 90px 0;
    }
    
    .final-cta-strong {
        padding: 80px 0;
    }
    
    .material-selection-section {
        padding: 90px 0;
    }
    
    .materials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
    
    .colors-patterns-section {
        padding: 70px 50px;
    }
    
    .cta-button {
        font-size: 19px;
        padding: 19px 38px;
    }
    
    .reviews-grid {
        gap: 30px;
    }
    
    .portfolio-section {
        padding: 90px 0;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .container {
        max-width: 1240px;
    }
    
    .preview3d-grid {
        gap: 50px;
    }
    
    .steps-grid.simple {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
        margin-top: 50px;
        position: relative;
    }
    
    .steps-grid.simple::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 16.66%;
        right: 16.66%;
        height: 3px;
        background: linear-gradient(90deg, var(--secondary-color) 0%, var(--secondary-color) 50%, var(--secondary-color) 100%);
        z-index: 0;
    }
    
    .step-item {
        background: #fff;
        padding: 35px 30px;
        border-radius: 14px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        z-index: 1;
    }
    
    .step-item::before {
        content: attr(data-step);
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--secondary-color), #f0d060);
        color: var(--tertiary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1.4rem;
        box-shadow: 0 4px 15px rgba(233, 190, 63, 0.4);
        border: 4px solid #fff;
    }
    
    .step-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }
    
    .step-item h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        margin-top: 25px;
        color: var(--tertiary-color);
    }
    
    .step-item p {
        font-size: 1.05rem;
        line-height: 1.7;
        color: var(--text-light);
    }
    
    /* Mobile Showroom Desktop Layout */
    .mobile-showroom-section {
        padding: 90px 0;
    }
    
    .showroom-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }
    
    .showroom-text h3 {
        font-size: 2.2rem;
    }
    
    .showroom-benefits li {
        margin-bottom: 30px;
    }
    
    .showroom-benefits strong {
        font-size: 1.2rem;
    }
    
    .showroom-benefits p {
        font-size: 1rem;
    }
    
    .gallery-main {
        border-radius: 20px;
    }
    
    .gallery-grid {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    /* Ajuste adicional para dispositivos móveis pequenos */
    :root { --header-height: 96px; }
    .hero-section {
        min-height: calc(100vh - var(--header-height));
    }
    
    .hero-content {
        padding-top: 30px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .pain-point {
        font-size: 0.85rem;
    }
    
    .solution-text {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .subsection-title {
        font-size: 1.4rem;
    }
    
    .diff-content h3 {
        font-size: 1rem;
    }
    
    .diff-content p {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .urgency-bar {
        padding: 12px 15px;
    }
    
    .urgency-text {
        font-size: 0.9rem;
    }
    
    .guarantee-text {
        font-size: 1rem;
    }
    
    .video-carousel-wrapper {
        max-width: 280px;
        margin: 0 15px;
    }
    
    .play-button {
        font-size: 35px;
    }
    
    .nav-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* Animações de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title,
.product-card,
.benefit,
.trust-item {
    animation: fadeInUp 0.8s ease-out;
}

/* Efeito de scroll suave */
html {
    scroll-behavior: smooth;
}

/* Thank You Page Styles */
.thank-you-section {
    min-height: 80vh;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #f8f9fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.success-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: bounceIn 1s ease-out;
}

.thank-you-title {
    font-size: 3rem;
    color: var(--tertiary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.thank-you-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
    font-weight: 500;
}

.confirmation-details {
    margin-bottom: 40px;
}

.confirmation-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.next-steps h3 {
    font-size: 1.3rem;
    color: var(--tertiary-color);
    margin-bottom: 25px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.step-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
    text-align: center;
}

.step-item::before {
    content: attr(data-step);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--secondary-color), #f0d060);
    color: var(--tertiary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(233, 190, 63, 0.4);
    border: 3px solid #fff;
}

.step-item h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    margin-top: 20px;
    color: var(--tertiary-color);
}

.step-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--tertiary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.step-content h4 {
    color: var(--tertiary-color);
    margin-bottom: 8px;
    font-size: 1rem;
}

.step-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-backup {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.contact-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.phone-btn {
    background: var(--secondary-color);
    color: var(--tertiary-color);
}

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

.email-btn {
    background: var(--tertiary-color);
    color: white;
}

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

.social-proof {
    background: linear-gradient(135deg, var(--tertiary-color), #004d5c);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.rating-display {
    margin-bottom: 20px;
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.rating-text {
    font-size: 1rem;
    opacity: 0.9;
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.testimonial-author {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 10px;
}

.return-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: #f8f9fa;
    color: var(--tertiary-color);
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid var(--tertiary-color);
    transition: all 0.3s ease;
}

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

.btn-primary {
    background: var(--secondary-color);
    color: var(--tertiary-color);
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Thank You Page */
@media (max-width: 768px) {
    .thank-you-content {
        padding: 40px 20px;
        margin: 0 20px;
    }
    
    .thank-you-title {
        font-size: 2rem;
    }
    
    .thank-you-subtitle {
        font-size: 1.2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .return-options {
        flex-direction: column;
        align-items: center;
    }
}

/* Floating Phone Widget */
.phone-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.phone-widget-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), #f0d060);
    color: var(--tertiary-color);
    border-radius: 50%;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(233, 190, 63, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.phone-widget-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(233, 190, 63, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(233, 190, 63, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(233, 190, 63, 0.7);
        transform: scale(1.05);
    }
}

.phone-widget-popup {
    position: absolute;
    bottom: 75px;
    right: 0;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.phone-widget-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.phone-widget-popup::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.popup-text {
    margin: 0;
    color: var(--tertiary-color);
    font-weight: bold;
    font-size: 16px;
    padding-right: 25px;
}

.popup-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    line-height: 1;
    transition: color 0.2s ease;
}

.popup-close:hover {
    color: #333;
}

/* Responsive Phone Widget */
@media (max-width: 768px) {
    .phone-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .phone-widget-button {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .phone-widget-popup {
        bottom: 70px;
        right: -10px;
    }
}

/* Quick Quote Modal Popup */
.quick-quote-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-quote-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--tertiary-color);
    margin-bottom: 8px;
    text-align: center;
}

.modal-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    text-align: center;
}

.quick-quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.quick-quote-form .form-row .form-group {
    margin-bottom: 0;
}

.quick-quote-form .form-group {
    margin-bottom: 20px;
}

.quick-quote-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--tertiary-color);
    font-size: 14px;
}

.quick-quote-form input,
.quick-quote-form select {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease;
    font-family: inherit;
    background-color: #fff;
    color: #333;
    box-sizing: border-box;
}

.quick-quote-form input[type="text"],
.quick-quote-form input[type="tel"],
.quick-quote-form input[type="email"] {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    background-color: #fff;
    color: #333;
}

.quick-quote-form input:focus,
.quick-quote-form select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(233, 190, 63, 0.1);
}

.quick-quote-form .cta-button {
    width: 100%;
    margin-top: 10px;
    padding: 16px;
    font-size: 18px;
}

.quick-quote-form .form-disclaimer {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
}

/* Contact Preference Checkboxes */
.contact-preference-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #fff;
    flex: 1;
    min-width: 120px;
}

.checkbox-option:hover {
    border-color: var(--secondary-color);
    background-color: #fffbf0;
}

.checkbox-option input[type="checkbox"] {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--secondary-color);
}

.checkbox-option input[type="checkbox"]:checked + span {
    font-weight: 600;
    color: var(--tertiary-color);
}

.checkbox-option input[type="checkbox"]:checked {
    border-color: var(--secondary-color);
}

.checkbox-option span {
    font-size: 15px;
    user-select: none;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 20px 12px;
        max-width: 95%;
        border-radius: 12px;
    }
    
    .quick-quote-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-preference-options {
        flex-direction: column;
        gap: 6px;
        margin-top: 6px;
    }
    
    .checkbox-option {
        min-width: 100%;
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .checkbox-option input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-right: 5px;
    }
    
    .checkbox-option span {
        font-size: 13px;
    }
    
    .modal-title {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    .modal-subtitle {
        font-size: 12px;
        margin-bottom: 16px;
    }
    
    .quick-quote-form .form-group {
        margin-bottom: 12px;
    }
    
    .quick-quote-form label {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .quick-quote-form input,
    .quick-quote-form select {
        padding: 10px;
        font-size: 14px;
    }
    
    .quick-quote-form .cta-button {
        padding: 12px;
        font-size: 15px;
        margin-top: 4px;
    }
    
    .quick-quote-form .form-disclaimer {
        font-size: 11px;
        margin-top: 8px;
    }
}

/* Remove header offset when no sticky top bar is present on the page */
body.no-top-bar .header {
    top: 0;
}