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

:root {
    --primary-blue: #0052cc;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --yellow: #ffd700;
    --dark-gray: #333333;
    --text-gray: #666666;
    --shadow: 0 4px 20px rgba(0, 82, 204, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 85px;
    height: 85px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 82, 204, 0.5);
    transition: var(--transition);
    background: linear-gradient(135deg, var(--primary-blue), #003d99);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.8rem;
    border: 4px solid rgba(255, 255, 255, 0.4);
}

/* Fallback para logo */
.logo-img:not([src]),
.logo-img[src=""] {
    background: linear-gradient(135deg, var(--primary-blue), #003d99);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-img:not([src])::before,
.logo-img[src=""]::before {
    content: "R";
    font-family: 'Orbitron', monospace;
    font-weight: 900;
}

.logo-container:hover .logo-img {
    box-shadow: 0 6px 20px rgba(0, 82, 204, 0.3);
    transform: rotate(5deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-blue);
    letter-spacing: 2px;
    text-shadow: 0 4px 8px rgba(0, 82, 204, 0.5);
    transition: var(--transition);
}

.logo-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.9rem;         /* Agora igual ao Ray PLACAS */
    font-weight: 900;                  /* Mesmo peso */
    color: var(--yellow);
    letter-spacing: 2.5px;             /* Igual proporção do título */
    text-transform: uppercase;
    margin-top: 0px;
    transition: var(--transition);
    text-shadow: 0 5px 10px rgba(255, 215, 0, 0.55); /* Brilho equilibrado */
}


.logo-container:hover .logo-name {
    color: var(--yellow);
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.logo-container:hover .logo-subtitle {
    color: var(--primary-blue);
    text-shadow: 0 2px 4px rgba(0, 82, 204, 0.3);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

/* Menu Mobile - Aplicado em todas as telas menores que 767px */
@media (max-width: 767px) {
    /* Esconder menu desktop */
    .nav-list {
        display: none !important;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 100px;
        transition: left 0.3s ease-in-out;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
        list-style: none;
        margin: 0;
        padding-left: 0;
    }
    
    /* Mostrar menu mobile quando ativo */
    .nav-list.active {
        display: flex !important;
        left: 0;
        visibility: visible;
        opacity: 1;
    }
    
    .nav-list li {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
    }
    
    .nav-link {
        display: block;
        padding: 1.2rem 2rem;
        font-size: 1.2rem;
        font-weight: 500;
        color: var(--dark-gray);
        text-decoration: none;
        transition: var(--transition);
        border-bottom: 1px solid var(--light-gray);
        width: 100%;
    }
    
    .nav-link:hover,
    .nav-link:active {
        background: var(--light-gray);
        color: var(--primary-blue);
    }
    
    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        cursor: pointer;
    }
    
    .hamburger span {
        display: block !important;
        width: 25px;
        height: 3px;
        background: var(--primary-blue);
        margin: 3px 0;
    }
    
    /* Overlay escuro quando menu está aberto */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    /* Garantir que o header fique acima do menu */
    .header {
        z-index: 1001;
    }
    
    /* Ajustar o hamburger para ficar mais visível */
    .hamburger {
        z-index: 1002;
        position: relative;
    }
    
    /* Garantir que o nav-list esteja visível quando ativo */
    .nav-list.active {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
    position: relative;
    background: transparent;
    border: none;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #003d99 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    flex: 1;
    z-index: 2;
    display: none;
}

.hero-text {
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

/* Layout Mobile Otimizado */
.hero-content-mobile {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
}

/* Desktop - Layout Original */
@media (min-width: 768px) {
    .hero-content-mobile {
        display: none !important;
    }
    
    .hero-content {
        display: flex !important;
    }
    
    .hero .hero-image {
        display: flex !important;
    }
    
    .hero {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding-top: 80px;
    }
    
    /* Desktop - Placas lado a lado */
    .plates-container {
        flex-direction: row !important;
        gap: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Desktop - overlay só aparece no hover */
    .product-overlay {
        opacity: 0;
    }
    
    .product-card:hover .product-overlay {
        opacity: 1;
    }
}

/* Mobile - Layout Otimizado - TODOS OS CELULARES */
@media (max-width: 767px) {
    .hero-content-mobile {
        display: flex !important;
    }
    
    .hero-content {
        display: none !important;
    }
    
    .hero > .hero-image {
        display: none !important;
    }
    
    .hero {
        padding-top: 90px;
        min-height: auto;
        padding-bottom: 1.5rem;
        display: block;
    }
    
    .hero-content-mobile {
        padding: 1rem 0.8rem 0.8rem;
    }
    
    .hero-text {
        width: 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.6rem, 5vw, 2rem);
        line-height: 1.3;
        margin-bottom: 0.6rem;
        font-weight: 700;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        padding: 0 0.5rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
        margin-bottom: 0;
        line-height: 1.5;
        opacity: 0.95;
        font-weight: 400;
        padding: 0 0.8rem;
    }
    
    .hero-content-mobile .hero-image {
        display: block !important;
        width: 100%;
        margin: 1.2rem 0;
    }
    
    .hero-content-mobile .car-placeholder {
        height: clamp(150px, 25vh, 180px);
        max-width: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        border-radius: 15px;
    }
    
    .hero-content-mobile .plates-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        gap: clamp(0.6rem, 2vw, 0.9rem);
        flex-direction: row;
        margin: 0;
        justify-content: center;
        align-items: center;
        width: auto;
    }
    
    .hero-content-mobile .plate-card {
        width: clamp(90px, 25vw, 110px);
        height: clamp(58px, 16vw, 70px);
    }
    
    .hero-content-mobile .plate-text {
        font-size: clamp(0.65rem, 2vw, 0.75rem);
        font-weight: 700;
        letter-spacing: 0.5px;
    }
    
    .hero-cta-mobile {
        margin-top: 1.2rem;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .hero-cta-mobile .cta-button {
        padding: clamp(0.9rem, 3vw, 1.1rem) clamp(1.8rem, 6vw, 2.5rem);
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        font-weight: 600;
        width: auto;
        max-width: 90%;
        margin: 0;
        display: block;
        box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
        border-radius: 50px;
    }
    
    /* Mobile - overlay sempre visível */
    .product-overlay {
        opacity: 1 !important;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6));
        display: flex !important;
        visibility: visible !important;
    }
    
    /* Produtos responsivos para todos os mobiles */
    .products {
        padding: clamp(2.5rem, 8vw, 3.5rem) 0;
    }
    
    .products-subtitle {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .products-carousel {
        padding: 0 clamp(0.8rem, 4vw, 1.5rem);
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .products-carousel-container {
        overflow: hidden;
        border-radius: 15px;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        position: relative;
    }
    
    .products-track {
        display: flex;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        align-items: stretch;
    }
    
    .product-card {
        min-width: 100% !important;
        flex-shrink: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0;
    }
    
    .carousel-btn {
        width: clamp(35px, 10vw, 42px);
        height: clamp(35px, 10vw, 42px);
        font-size: clamp(0.85rem, 3vw, 1rem);
        z-index: 10;
    }
    
    .carousel-btn-prev {
        left: clamp(-5px, -1vw, 0px);
    }
    
    .carousel-btn-next {
        right: clamp(-5px, -1vw, 0px);
    }
    
    .product-image-wrapper {
        min-height: clamp(350px, 50vh, 450px);
        padding: clamp(0.5rem, 2vw, 0.8rem);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
    }
    
    .product-image {
        width: 100%;
        height: auto;
        max-width: 100%;
        max-height: clamp(350px, 50vh, 450px);
        object-fit: contain;
        object-position: center;
        display: block;
        margin: 0 auto;
    }
    
    .product-overlay {
        padding: clamp(1rem, 3vw, 1.5rem);
        opacity: 1 !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }
    
    .product-cta {
        padding: clamp(0.7rem, 2.5vw, 0.9rem) clamp(1.3rem, 5vw, 1.8rem);
        font-size: clamp(0.85rem, 3vw, 0.95rem);
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        text-align: center;
        margin: 0 auto;
    }
    
    /* Seções responsivas */
    .section-title {
        font-size: clamp(1.6rem, 6vw, 2rem);
        margin-bottom: clamp(1.5rem, 5vw, 2.5rem);
        padding: 0 1rem;
    }
    
    .container {
        padding-left: clamp(10px, 4vw, 20px);
        padding-right: clamp(10px, 4vw, 20px);
    }
}

/* Container das Placas dentro do quadrado */
.plates-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row;
    gap: 1rem;
    z-index: 10;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

/* Cards das Placas */
.plate-card {
    position: relative;
    width: 150px;
    height: 100px;
    perspective: 1000px;
    animation: plateFloat 4s ease-in-out infinite;
}

.plate-card.plate-1 {
    animation-delay: 0s;
}

.plate-card.plate-2 {
    animation-delay: 2s;
}

.plate-image {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.plate-card:hover .plate-image {
    transform: rotateY(10deg) rotateX(5deg);
}

.plate-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, var(--primary-blue), #003d99);
    display: block;
}

/* Fallback caso a imagem não carregue */
.plate-img:not([src]),
.plate-img[src=""] {
    background: linear-gradient(135deg, var(--primary-blue), #003d99);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.8rem;
}

.plate-img:not([src])::before,
.plate-img[src=""]::before {
    content: "PLACA";
    text-align: center;
}

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

.plate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.8), rgba(0, 61, 153, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plate-card:hover .plate-overlay {
    opacity: 1;
}

.plate-text {
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: plateTextGlow 2s ease-in-out infinite;
}

/* Efeito de Brilho */
.plate-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--yellow), var(--primary-blue), var(--yellow));
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    animation: plateGlow 3s ease-in-out infinite;
}

.plate-card:hover .plate-glow {
    opacity: 1;
}

/* Animações das Placas */
@keyframes plateFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    50% {
        transform: translateY(-8px) rotate(0deg);
    }
    75% {
        transform: translateY(-20px) rotate(-2deg);
    }
}

@keyframes plateTextGlow {
    0%, 100% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }
    50% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.8);
    }
}

@keyframes plateGlow {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}

/* Efeito de Rotação Alternada */
.plate-card.plate-1 .plate-image {
    animation: plateRotate1 6s ease-in-out infinite;
}

.plate-card.plate-2 .plate-image {
    animation: plateRotate2 6s ease-in-out infinite;
}

@keyframes plateRotate1 {
    0%, 100% {
        transform: rotateY(0deg) rotateX(0deg);
    }
    25% {
        transform: rotateY(5deg) rotateX(3deg);
    }
    50% {
        transform: rotateY(0deg) rotateX(0deg);
    }
    75% {
        transform: rotateY(-5deg) rotateX(-3deg);
    }
}

@keyframes plateRotate2 {
    0%, 100% {
        transform: rotateY(0deg) rotateX(0deg);
    }
    25% {
        transform: rotateY(-5deg) rotateX(-3deg);
    }
    50% {
        transform: rotateY(0deg) rotateX(0deg);
    }
    75% {
        transform: rotateY(5deg) rotateX(3deg);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 400;
}

.cta-button {
    background: var(--yellow);
    color: var(--dark-gray);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.cta-button.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

.cta-button.yellow {
    background: var(--yellow);
    color: var(--dark-gray);
}

.hero-image {
    flex: 1;
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
}

.car-placeholder {
    width: 100%;
    max-width: 500px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: fadeInRight 1s ease-out 0.5s both;
    position: relative;
    overflow: hidden;
}

.car-placeholder::before {
    content: "Placas Mercosul";
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 600;
    z-index: 5;
}


/* Seções */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--yellow);
    border-radius: 2px;
}

/* Benefícios */
.benefits {
    padding: 5rem 0;
    background: var(--light-gray);
}

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

.benefit-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 82, 204, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), #003d99);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Como Funciona */
.how-it-works {
    padding: 5rem 0;
    background: var(--white);
}

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

.step {
    text-align: center;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--yellow);
    color: var(--dark-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-blue);
    font-size: 2.5rem;
    border: 3px solid var(--primary-blue);
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.step p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Depoimentos */
.testimonials {
    padding: 5rem 0;
    background: var(--light-gray);
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    min-height: 500px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    background: var(--white);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    z-index: 0;
}

.testimonial-card.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Garantir que o primeiro card seja visível inicialmente */
.testimonial-card:first-child.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-image {
    width: 100%;
    max-width: 750px;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.stars {
    color: var(--yellow);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-info h4 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-blue);
}

/* Preço */
.pricing {
    padding: 5rem 0;
    background: var(--white);
}

.pricing-box {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-blue), #003d99);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 82, 204, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.pricing-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--yellow);
}

.price-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.price-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-features i {
    color: var(--yellow);
    font-size: 1.1rem;
}

/* FAQ */
.faq {
    padding: 5rem 0;
    background: var(--light-gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.8s ease-out;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary-blue);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Produtos */
.products {
    padding: 5rem 0;
    background: var(--white);
}

.products-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.products-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.3);
}

.carousel-btn:hover {
    background: var(--yellow);
    color: var(--dark-gray);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.products-carousel-container {
    overflow: hidden;
    border-radius: 20px;
    margin: 0 1rem;
    position: relative;
}

.products-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card {
    min-width: 100%;
    flex-shrink: 0;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 82, 204, 0.15);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    width: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 82, 204, 0.25);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
}

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

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

/* Mobile - overlay sempre visível */
@media (max-width: 767px) {
    .product-overlay {
        opacity: 1 !important;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6));
        visibility: visible !important;
        display: flex !important;
    }
    
    .product-card:hover .product-overlay {
        opacity: 1 !important;
    }
}

.product-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: #25d366;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transform: translateY(10px);
    text-align: center;
    white-space: nowrap;
    margin: 0 auto;
}

.product-card:hover .product-cta {
    transform: translateY(0);
}

.product-cta:hover {
    background: #20ba5a;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.product-cta i {
    font-size: 1.2rem;
}

.products-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.product-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
}

.product-dot.active {
    background: var(--primary-blue);
    width: 30px;
    border-radius: 6px;
}

/* CTA Final */
.final-cta {
    padding: 5rem 0;
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--yellow);
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--yellow);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--yellow);
    color: var(--dark-gray);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    opacity: 0.8;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

/* Botão WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Classes para animações de scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade - Mobile First Approach */

/* Extra Large Devices (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Large Devices (992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Medium Devices (768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        min-height: 90vh;
    }
    
    .plates-container {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
        gap: 0.8rem;
        flex-direction: row;
    }
    
    .plate-card {
        width: 120px;
        height: 80px;
    }
    
    .plate-text {
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .pricing-box {
        margin: 0 2rem;
        padding: 2.5rem 2rem;
    }
    
    .amount {
        font-size: 3.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Small Devices (576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        padding: 0 20px;
    }
    
    /* Menu mobile já está definido na regra geral acima */
    
    /* Logo responsivo para tablets */
    .logo-img {
        width: 75px;
        height: 75px;
    }
    
    .logo-name {
        font-size: 1.6rem;
    }
    
    .logo-subtitle {
        font-size: 1rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 95px;
        min-height: auto;
        padding-bottom: 1.5rem;
    }
    
    .hero-content {
        padding: 1.5rem 1rem 0.5rem;
    }
    
    .plates-container {
        position: absolute;
        top: 38%;
        left: 50%;
        transform: translate(-50%, -50%);
        gap: 1rem;
        flex-direction: row;
        margin: 0;
        justify-content: center;
        align-items: center;
        width: auto;
    }
    
    .hero-image {
        width: 100%;
        padding: 0.5rem 1rem;
        order: 2;
        margin-top: -0.5rem;
    }
    
    .car-placeholder {
        height: 180px;
        max-width: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .plate-card {
        width: 120px;
        height: 75px;
    }
    
    .plate-text {
        font-size: 0.75rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .hero {
        padding-top: 95px;
    }
    
    .hero-content {
        padding-top: 1.5rem;
    }
    
    .cta-button {
        padding: 1.1rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step {
        padding: 0 1rem;
    }
    
    .testimonials-carousel {
        min-height: 400px;
    }

    /* Produtos responsivo */
    .products-carousel {
        padding: 0 2.5rem;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .product-image-wrapper {
        min-height: 500px;
        padding: 1rem;
    }

    .product-overlay {
        padding: 1.8rem;
    }
}
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .pricing-box {
        margin: 0 1rem;
        padding: 2.5rem 2rem;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .final-cta h2 {
        font-size: 2.2rem;
    }
    
    .final-cta p {
        font-size: 1.1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .whatsapp-button {
        bottom: 25px;
        right: 25px;
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    /* Produtos responsivo */
    .products {
        padding: 3rem 0;
    }

    .products-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .products-carousel {
        padding: 0 2rem;
    }
    
    .products-carousel-container {
        margin: 0 1rem;
        overflow: hidden;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        z-index: 10;
    }

    .product-card {
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .product-image-wrapper {
        min-height: 400px;
        padding: 1rem;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .product-image {
        width: 100%;
        height: auto;
        max-width: 100%;
        max-height: 500px;
        object-fit: contain;
        object-position: center;
    }

    .product-overlay {
        padding: 1.2rem;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-cta {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Extra Small Devices (up to 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    
    /* Menu mobile já está definido na regra geral acima */
    
    .hamburger span {
        width: 22px;
        height: 2px;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    
    /* Logo responsivo para mobile */
    .logo-container {
        gap: 0.8rem;
    }
    
    .logo-img {
        width: 70px;
        height: 70px;
        border-radius: 12px;
    }
    
    .logo-name {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
    }
    
    .logo-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 2rem;
        justify-content: flex-start;
    }
    
    .hero-content {
        padding: 1.5rem 1rem 1rem;
        width: 100%;
        order: 1;
    }
    
    .hero-text {
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
        padding: 0 0.5rem;
        font-weight: 700;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 0;
        line-height: 1.5;
        padding: 0 1rem;
        opacity: 0.95;
        font-weight: 400;
    }
    
    .hero-image {
        width: 100%;
        padding: 1.5rem 1rem 1rem;
        order: 2;
        margin-top: 0.5rem;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .car-placeholder {
        height: 180px;
        max-width: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        border-radius: 20px;
    }
    
    .plates-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        gap: 0.9rem;
        flex-direction: row;
        margin: 0;
        justify-content: center;
        align-items: center;
        width: auto;
    }
    
    .plate-card {
        width: 110px;
        height: 70px;
    }
    
    .plate-text {
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 1px;
    }
    
    .hero-cta-mobile {
        margin-top: 1.5rem;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .hero-cta-mobile .cta-button {
        padding: 1.1rem 2.5rem;
        font-size: 1.1rem;
        font-weight: 600;
        width: auto;
        max-width: 320px;
        margin: 0;
        display: block;
        box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
        border-radius: 50px;
    }
    
    /* Esconder botão CTA do hero-text em mobile */
    .hero-text .cta-button {
        display: none;
    }
    
    .cta-button.large {
        padding: 1.1rem 2rem;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
    }
    
    /* Benefícios mobile */
    .benefits {
        padding: 3rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .benefit-card {
        padding: 1.8rem 1.2rem;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem;
    }
    
    .benefit-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Como funciona mobile */
    .how-it-works {
        padding: 3rem 0;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step {
        padding: 0 0.5rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .step h3 {
        font-size: 1.2rem;
    }
    
    .step p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* CTA no Como funciona */
    .how-it-works .cta-button {
        width: 100%;
        max-width: 300px;
        margin: 2rem auto 0;
        display: block;
    }
    
    .products {
        padding: 3rem 0;
    }

    .products-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .products-carousel {
        padding: 0 1.5rem;
    }
    
    .products-carousel-container {
        margin: 0;
        overflow: hidden;
        border-radius: 15px;
    }
    
    .products-track {
        display: flex;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
        z-index: 10;
    }
    
    .product-card {
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .product-image-wrapper {
        min-height: 400px;
        padding: 0.8rem;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .product-image {
        max-height: 450px;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .product-overlay {
        padding: 1.5rem;
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.5));
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .product-cta {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
        transform: translateY(0);
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .products-dots {
        gap: 0.6rem;
        margin-top: 1.5rem;
    }

    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonials-carousel {
        min-height: 300px;
        padding: 0 0.5rem;
    }
    
    .testimonial-card {
        padding: 0.5rem;
        border-radius: 10px;
    }
    
    .testimonial-image {
        max-width: 100%;
        border-radius: 8px;
    }
    
    .carousel-dots {
        gap: 0.6rem;
        margin-top: 0.5rem;
        flex-wrap: wrap;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .testimonial-card p {
        font-size: 1.1rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .pricing-box {
        margin: 0 0.5rem;
        padding: 2rem 1.5rem;
    }
    
    .pricing-box h2 {
        font-size: 1.8rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .currency {
        font-size: 1.2rem;
    }
    
    .price-description {
        font-size: 1rem;
    }
    
    .price-features {
        font-size: 0.9rem;
    }
    
    /* FAQ mobile */
    .faq {
        padding: 3rem 0;
    }
    
    .faq-list {
        padding: 0 0.5rem;
    }
    
    .faq-item {
        margin-bottom: 0.8rem;
    }
    
    .faq-question {
        padding: 1rem 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
        line-height: 1.4;
        padding-right: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1.2rem 1rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* CTA Final mobile */
    .final-cta {
        padding: 3rem 1rem;
    }
    
    .final-cta h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .final-cta p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .final-cta .cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
    
    /* Footer mobile */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .footer-section ul {
        margin-top: 0.5rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.4rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }
    
    /* Botão WhatsApp flutuante mobile */
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        z-index: 999;
    }
    
}

/* Landscape orientation for mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        min-height: 80vh;
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .nav-list {
        top: 60px;
        height: calc(100vh - 60px);
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-title,
    .section-title {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Touch Device Optimizations */
.touch-device .benefit-card:hover,
.touch-device .testimonial-card:hover,
.touch-device .pricing-box:hover,
.touch-device .product-card:hover {
    transform: none;
}

.touch-device .cta-button:hover {
    transform: none;
}

/* Garantir que imagens não quebrem o layout em mobile */
img {
    max-width: 100%;
    height: auto;
}

/* Melhorar espaçamento em mobile */
@media (max-width: 767px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Garantir que todos os textos sejam legíveis */
    body {
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
    }
    
    /* Melhorar espaçamento entre seções */
    section {
        padding-left: 0;
        padding-right: 0;
    }
}

/* ============================================
   OTIMIZAÇÕES ESPECÍFICAS PARA TODOS OS iPHONES
   ============================================ */

/* iPhone SE / iPhone 8 / iPhone 7 / iPhone 6s (375x667) */
@media (max-width: 375px) and (max-height: 670px) {
    .hero {
        padding-top: 90px;
        min-height: auto;
        padding-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .car-placeholder {
        height: 160px;
    }
    
    .plate-card {
        width: 95px;
        height: 60px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
    }
    
    .product-image-wrapper {
        min-height: 380px;
    }
    
    .whatsapp-button {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }
}

/* iPhone 8 Plus / iPhone 7 Plus / iPhone 6s Plus (414x736) */
@media (min-width: 376px) and (max-width: 414px) and (max-height: 740px) {
    .hero {
        padding-top: 95px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .car-placeholder {
        height: 180px;
    }
    
    .plate-card {
        width: 105px;
        height: 65px;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .product-image-wrapper {
        min-height: 420px;
    }
}

/* iPhone X / iPhone XS / iPhone 11 Pro / iPhone 12 mini / iPhone 13 mini (375x812) */
@media (max-width: 375px) and (min-height: 800px) {
    .hero {
        padding-top: 100px;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .car-placeholder {
        height: 190px;
    }
    
    .plate-card {
        width: 100px;
        height: 65px;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .benefits {
        padding: 3.5rem 0;
    }
    
    .how-it-works {
        padding: 3.5rem 0;
    }
    
    .products {
        padding: 3.5rem 0;
    }
    
    .product-image-wrapper {
        min-height: 450px;
    }
    
    .testimonials {
        padding: 3.5rem 0;
    }
    
    .faq {
        padding: 3.5rem 0;
    }
    
    .final-cta {
        padding: 3.5rem 1rem;
    }
}

/* iPhone XR / iPhone XS Max / iPhone 11 Pro Max (414x896) */
@media (min-width: 376px) and (max-width: 414px) and (min-height: 890px) {
    .hero {
        padding-top: 100px;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 2.1rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .car-placeholder {
        height: 200px;
    }
    
    .plate-card {
        width: 110px;
        height: 70px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits {
        padding: 4rem 0;
    }
    
    .how-it-works {
        padding: 4rem 0;
    }
    
    .products {
        padding: 4rem 0;
    }
    
    .product-image-wrapper {
        min-height: 480px;
    }
    
    .testimonials {
        padding: 4rem 0;
    }
    
    .faq {
        padding: 4rem 0;
    }
    
    .final-cta {
        padding: 4rem 1.5rem;
    }
}

/* iPhone 12 / iPhone 13 / iPhone 14 (390x844) */
@media (min-width: 376px) and (max-width: 392px) and (min-height: 840px) {
    .hero {
        padding-top: 100px;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 2.15rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .car-placeholder {
        height: 195px;
    }
    
    .plate-card {
        width: 108px;
        height: 68px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits {
        padding: 4rem 0;
    }
    
    .how-it-works {
        padding: 4rem 0;
    }
    
    .products {
        padding: 4rem 0;
    }
    
    .product-image-wrapper {
        min-height: 490px;
    }
    
    .testimonials {
        padding: 4rem 0;
    }
    
    .faq {
        padding: 4rem 0;
    }
    
    .final-cta {
        padding: 4rem 1.5rem;
    }
}

/* iPhone 12 Pro Max / iPhone 13 Pro Max / iPhone 14 Plus (428x926) */
@media (min-width: 415px) and (max-width: 428px) and (min-height: 920px) {
    .hero {
        padding-top: 100px;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .car-placeholder {
        height: 205px;
    }
    
    .plate-card {
        width: 112px;
        height: 72px;
    }
    
    .section-title {
        font-size: 2.1rem;
    }
    
    .benefits {
        padding: 4rem 0;
    }
    
    .how-it-works {
        padding: 4rem 0;
    }
    
    .products {
        padding: 4rem 0;
    }
    
    .product-image-wrapper {
        min-height: 510px;
    }
    
    .testimonials {
        padding: 4rem 0;
    }
    
    .faq {
        padding: 4rem 0;
    }
    
    .final-cta {
        padding: 4rem 1.5rem;
    }
}

/* iPhone 14 Pro Max / iPhone 15 Pro Max (430x932) */
@media (max-width: 430px) and (min-height: 900px) {
    /* Header */
    .header {
        padding: 0.75rem 0;
    }
    
    .header .container {
        padding: 0.75rem 15px;
    }
    
    .logo-img {
        width: 65px;
        height: 65px;
    }
    
    .logo-name {
        font-size: 1.4rem;
    }
    
    .logo-subtitle {
        font-size: 0.9rem;
    }
    
    /* Hero Section */
    .hero {
        padding-top: 95px;
        padding-bottom: 2rem;
        min-height: auto;
    }
    
    .hero-content-mobile {
        padding: 1.2rem 1rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 0;
        padding: 0 0.5rem;
    }
    
    .hero-content-mobile .hero-image {
        margin: 1.2rem 0;
    }
    
    .hero-content-mobile .car-placeholder {
        height: 170px;
    }
    
    .plates-container {
        top: 50%;
        gap: 0.9rem;
    }
    
    .plate-card {
        width: 105px;
        height: 68px;
    }
    
    .plate-text {
        font-size: 0.7rem;
    }
    
    .hero-cta-mobile {
        margin-top: 1.2rem;
    }
    
    .hero-cta-mobile .cta-button {
        padding: 1rem 2.2rem;
        font-size: 1rem;
        max-width: 300px;
    }
    
    /* Benefícios */
    .benefits {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .benefits-grid {
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }
    
    .benefit-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .benefit-card p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    /* Como Funciona */
    .how-it-works {
        padding: 4rem 0;
    }
    
    .steps-grid {
        gap: 2rem;
    }
    
    .step {
        padding: 0 1rem;
    }
    
    .step-icon {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .step h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .step p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .how-it-works .cta-button {
        max-width: 350px;
        margin-top: 2.5rem;
    }
    
    /* Produtos */
    .products {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.9rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .products-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .products-carousel {
        padding: 0 1.2rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
    
    .carousel-btn-prev {
        left: -3px;
    }
    
    .carousel-btn-next {
        right: -3px;
    }
    
    .product-image-wrapper {
        min-height: 420px;
        padding: 0.7rem;
    }
    
    .product-overlay {
        padding: 1.3rem;
        opacity: 1 !important;
    }
    
    .product-cta {
        padding: 0.85rem 1.6rem;
        font-size: 0.9rem;
    }
    
    .products-dots {
        gap: 0.8rem;
        margin-top: 2rem;
    }
    
    .product-dot {
        width: 12px;
        height: 12px;
    }
    
    .product-dot.active {
        width: 32px;
    }
    
    /* Depoimentos */
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonials-carousel {
        min-height: 450px;
        padding: 0 1rem;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .testimonial-image {
        width: 100%;
        max-width: 100%;
        border-radius: 12px;
    }
    
    .carousel-dots {
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .dot {
        width: 11px;
        height: 11px;
    }
    
    /* FAQ */
    .faq {
        padding: 4rem 0;
    }
    
    .faq-list {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .faq-item {
        margin-bottom: 1rem;
    }
    
    .faq-question {
        padding: 1.3rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.05rem;
        line-height: 1.5;
        padding-right: 1.5rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.3rem;
        font-size: 0.98rem;
        line-height: 1.7;
    }
    
    /* CTA Final */
    .final-cta {
        padding: 4rem 1.5rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .final-cta p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
        line-height: 1.6;
    }
    
    .final-cta .cta-button {
        max-width: 350px;
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-section ul li a {
        font-size: 0.95rem;
    }
    
    .social-links {
        margin-top: 1.2rem;
        gap: 1.2rem;
    }
    
    .social-links a {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        padding-top: 2rem;
        font-size: 0.9rem;
    }
    
    /* Botão WhatsApp Flutuante */
    .whatsapp-button {
        bottom: 25px;
        right: 25px;
        width: 58px;
        height: 58px;
        font-size: 1.4rem;
    }
    
    /* Container geral */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* Espaçamento entre seções */
    section {
        margin-bottom: 0;
    }
    
    /* Ajustes finos para melhor visualização */
    .section-title::after {
        width: 70px;
        height: 4px;
    }
    
    /* Melhorar legibilidade dos textos */
    p, li, span {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Ajustar scroll suave */
    html {
        scroll-behavior: smooth;
    }
    
    /* Safe area para iPhone com notch */
    @supports (padding: max(0px)) {
        .hero {
            padding-top: max(100px, env(safe-area-inset-top) + 100px);
        }
        
        .whatsapp-button {
            bottom: max(25px, env(safe-area-inset-bottom) + 25px);
        }
    }
}

/* iPhone 15 / iPhone 15 Pro (393x852) */
@media (min-width: 392px) and (max-width: 394px) and (min-height: 848px) and (max-height: 855px) {
    .hero {
        padding-top: 100px;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 2.15rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .car-placeholder {
        height: 200px;
    }
    
    .plate-card {
        width: 110px;
        height: 70px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits {
        padding: 4rem 0;
    }
    
    .how-it-works {
        padding: 4rem 0;
    }
    
    .products {
        padding: 4rem 0;
    }
    
    .product-image-wrapper {
        min-height: 500px;
    }
    
    .testimonials {
        padding: 4rem 0;
    }
    
    .faq {
        padding: 4rem 0;
    }
    
    .final-cta {
        padding: 4rem 1.5rem;
    }
}

/* Ajustes gerais para todos os iPhones */
@media (max-width: 430px) {
    /* Garantir que o container não ultrapasse as bordas */
    .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* Otimizar fontes para telas Retina */
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
        body {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
    }
    
    /* Safe area para iPhones com notch e Dynamic Island */
    @supports (padding: max(0px)) {
        .header {
            padding-top: env(safe-area-inset-top);
        }
        
        .hero {
            padding-top: max(100px, calc(env(safe-area-inset-top) + 100px));
        }
        
        .whatsapp-button {
            bottom: max(25px, calc(env(safe-area-inset-bottom) + 25px));
            right: max(25px, calc(env(safe-area-inset-right) + 25px));
        }
        
        .footer {
            padding-bottom: max(1rem, calc(env(safe-area-inset-bottom) + 1rem));
        }
    }
    
    /* Ajustar para modo landscape em iPhones */
    @media (orientation: landscape) and (max-height: 500px) {
        .hero {
            min-height: auto;
            padding-top: 80px;
            padding-bottom: 1rem;
        }
        
        .hero-title {
            font-size: 1.8rem;
        }
        
        .hero-subtitle {
            font-size: 0.95rem;
        }
        
        .car-placeholder {
            height: 140px;
        }
        
        .section-title {
            font-size: 1.8rem;
        }
        
        .benefits,
        .how-it-works,
        .products,
        .testimonials,
        .faq {
            padding: 2.5rem 0;
        }
    }
}

/* Telas muito pequenas (menos de 400px) */
@media (max-width: 400px) {
    .hero {
        padding-top: 85px;
        padding-bottom: 1rem;
        min-height: auto;
    }
    
    .hero-content {
        padding: 1rem 0.5rem 0.3rem;
    }
    
    .hero-title {
        font-size: 1.9rem;
        margin-bottom: 0.8rem;
        padding: 0 0.5rem;
        line-height: 1.3;
        font-weight: 700;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 0;
        padding: 0 0.8rem;
        line-height: 1.5;
        opacity: 0.95;
        font-weight: 400;
    }
    
    .hero-cta-mobile {
        margin-top: 1.5rem;
    }
    
    .hero-cta-mobile .cta-button {
        padding: 1.1rem 2.2rem;
        font-size: 1.05rem;
        font-weight: 600;
        max-width: 300px;
        box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    }
    
    /* Benefícios mobile muito pequeno */
    .benefits {
        padding: 2.5rem 0;
    }
    
    .benefit-card {
        padding: 1.5rem 1rem;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }
    
    /* Como funciona mobile muito pequeno */
    .how-it-works {
        padding: 2.5rem 0;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .step h3 {
        font-size: 1.1rem;
    }
    
    .step p {
        font-size: 0.85rem;
    }
    
    /* FAQ mobile muito pequeno */
    .faq {
        padding: 2.5rem 0;
    }
    
    .faq-question {
        padding: 0.9rem 1rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 0.9rem;
        font-size: 0.85rem;
    }
    
    /* CTA Final mobile muito pequeno */
    .final-cta {
        padding: 2.5rem 0.5rem;
    }
    
    .final-cta h2 {
        font-size: 1.6rem;
    }
    
    .final-cta p {
        font-size: 0.95rem;
    }
    
    /* Footer mobile muito pequeno */
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.2rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section p,
    .footer-section ul li a {
        font-size: 0.85rem;
    }
    
    .plates-container {
        position: absolute;
        top: 33%;
        left: 50%;
        transform: translate(-50%, -50%);
        gap: 0.6rem;
        margin: 0;
        justify-content: center;
        align-items: center;
        width: auto;
    }
    
    .hero-image {
        width: 100%;
        padding: 0.3rem 0.5rem;
        margin-top: -0.3rem;
    }
    
    .car-placeholder {
        height: 140px;
        max-width: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .plate-card {
        width: 90px;
        height: 60px;
    }
    
    .plate-text {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }
    
    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
        max-width: 280px;
    }
    
    .testimonials-carousel {
        min-height: 250px;
        padding: 0 0.3rem;
    }
    
    .testimonial-card {
        padding: 0.3rem;
        border-radius: 8px;
    }
    
    .testimonial-image {
        border-radius: 6px;
    }
    
    .carousel-dots {
        gap: 0.5rem;
        margin-top: 0.5rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .testimonials .section-title {
        font-size: 1.5rem;
    }

    /* Depoimentos mobile pequeno */
    .testimonials {
        padding: 2.5rem 0;
    }
    
    .testimonials-carousel {
        min-height: 280px;
    }
    
    .testimonial-image {
        max-width: 100%;
        height: auto;
    }

    /* Produtos responsivo para mobile pequeno */
    .products {
        padding: 2.5rem 0;
    }

    .products-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .products-carousel {
        padding: 0 1rem;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .carousel-btn-prev {
        left: -5px;
    }

    .carousel-btn-next {
        right: -5px;
    }

    .products-carousel-container {
        margin: 0 0.5rem;
    }

    .product-image-wrapper {
        min-height: 350px;
        padding: 0.5rem;
    }

    .product-overlay {
        padding: 1rem;
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6));
    }

    .product-cta {
        padding: 0.75rem 1.2rem;
        font-size: 0.85rem;
        transform: translateY(0);
    }

    .product-cta i {
        font-size: 1rem;
    }

    .products-dots {
        gap: 0.5rem;
        margin-top: 1.5rem;
    }

    .product-dot {
        width: 10px;
        height: 10px;
    }

    .product-dot.active {
        width: 25px;
    }

    .product-image-wrapper {
        min-height: 450px;
        padding: 0.8rem;
    }

    .product-overlay {
        padding: 1.5rem;
    }

    .product-cta {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-blue);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.3s;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--yellow);
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-text,
    .car-placeholder,
    .benefit-card,
    .step,
    .testimonial-card,
    .pricing-box,
    .faq-item {
        animation: none !important;
    }
}

/* Print styles */
@media print {
    .header,
    .whatsapp-button,
    .hamburger,
    .skip-link {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
        background: white !important;
        color: black !important;
    }
    
    .section-title {
        color: var(--dark-gray) !important;
    }
    
    .cta-button {
        background: var(--dark-gray) !important;
        color: var(--white) !important;
    }
    
    .benefit-card,
    .testimonial-card,
    .faq-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .faq-answer {
        max-height: none !important;
    }
    
    .whatsapp-button {
        display: none !important;
    }
}

/* Mobile muito pequeno (até 400px) */
@media (max-width: 400px) {
    .logo-container {
        gap: 0.6rem;
    }
    
    .logo-img {
        width: 65px;
        height: 65px;
        border-radius: 10px;
    }
    
    .logo-name {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .logo-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
    
    .header .container {
        padding: 0.8rem 15px;
    }

    /* Produtos para celulares muito pequenos */
    .products {
        padding: 2rem 0;
    }

    .products-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .products-carousel {
        padding: 0 0.5rem;
    }

    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .carousel-btn-prev {
        left: -8px;
    }

    .carousel-btn-next {
        right: -8px;
    }

    .product-image-wrapper {
        min-height: 300px;
        padding: 0.3rem;
    }

    .product-overlay {
        padding: 0.8rem;
    }

    .product-cta {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }

    .products-dots {
        gap: 0.4rem;
        margin-top: 1rem;
        flex-wrap: wrap;
    }

    .product-dot {
        width: 8px;
        height: 8px;
    }

    .product-dot.active {
        width: 20px;
    }
}