/* 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);
}

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;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

/* 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;
    height: 100vh;
    min-height: 700px;
    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;
    animation: kenBurns 15s infinite;
}

.slide.active {
    opacity: 1;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    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: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.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;
}

/* Typewriter Animation */
.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);
    }
}

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

.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);
}

.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;
}

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

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

.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);
}

.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-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;
}

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

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

.contact-form {
    max-width: 600px;
    margin: 50px auto 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

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

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

.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: 15px;
    margin-top: 15px;
}

.area-option {
    position: relative;
}

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

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

.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: 20px;
    font-size: 20px;
    margin: 30px 0 20px;
}

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

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

.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 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);
}

.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;
}

/* 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) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Ajuste para evitar sobreposição do header no mobile */
    .hero-section {
        padding-top: 120px;
    }
    
    .hero-content {
        padding-top: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .area-selector {
        flex-direction: column;
        gap: 10px;
    }
    
    .area-label {
        text-align: center;
    }
    
    .trust-features {
        grid-template-columns: 1fr;
    }
    
    .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;
    }
}

/* 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;
    }
    
    .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;
    }
}

@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;
    }
    
    .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;
    }
}

@media (max-width: 480px) {
    /* Ajuste adicional para dispositivos móveis pequenos */
    .hero-section {
        padding-top: 130px;
    }
    
    .hero-content {
        padding-top: 30px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .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: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.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;
    }
}