/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2962cb;
    --primary-dark: #1e4a9c;
    --primary-light: #5c85d6;
    --secondary-color: #f8f9fa;
    --accent-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --border-radius: 0.75rem;
    --transition: all 0.3s ease;
}

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

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

/* Botões */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-cta {
    background: linear-gradient(135deg, var(--accent-color), #059669);
    color: var(--white);
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    box-shadow: var(--shadow-lg);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-emergency {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: var(--white);
    font-weight: 700;
}

.btn-emergency:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-brand span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 8rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.25rem;
    color: #e3f2fd;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item i {
    color: #4ade80;
    font-size: 1.2rem;
    width: 24px;
}

.feature-item span {
    color: var(--white);
    font-weight: 500;
}

.hero-video {
    text-align: center;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-video #id_video {
    border-radius: var(--border-radius);
}

/* Seções */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Especialidades */
.promocional {
    background: var(--white);
    color: var(--text-dark);
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.promocional-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-md);
}

.promocional-icon i {
    font-size: 3rem;
    color: var(--white);
}

.promocional-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--text-dark);
}

.promocional-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.promocional-text p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.promocional-beneficios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    text-align: left;
}

.beneficio-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--secondary-color);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.beneficio-item i {
    color: #4ade80;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.beneficio-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.promocional-cta-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.promocional-instrucao {
    font-size: 1.125rem;
    font-weight: 600;
    color: #f59e0b;
}

.promocional-urgencia {
    font-size: 1.125rem;
    color: #dc2626;
    background: #fef2f2;
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid #dc2626;
    border: 1px solid #fecaca;
}

/* Caixa de Presente Interativa */
.gift-container {
    text-align: center;
    margin: 2rem auto;
    max-width: 300px;
}

.gift-box {
    width: 250px;
    height: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: giftBounce 2s infinite, giftGlow 3s infinite;
    filter: drop-shadow(0 10px 20px rgba(220, 38, 38, 0.3));
}

.gift-box:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 15px 30px rgba(220, 38, 38, 0.5));
}

.gift-instruction {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
    animation: giftPulse 2s infinite;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.gift-revealed {
    animation: giftReveal 0.8s ease-out;
}

.gift-content {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 1rem;
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(41, 98, 203, 0.2);
}

.gift-sparkles {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    animation: sparkle 1.5s infinite;
}

.gift-cta {
    margin-top: 2rem;
    text-align: center;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 0.75rem;
    box-shadow: 0 8px 25px rgba(41, 98, 203, 0.3);
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(41, 98, 203, 0.4);
}

/* Animações */
@keyframes giftBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

@keyframes giftGlow {
    0%, 100% {
        filter: drop-shadow(0 10px 20px rgba(220, 38, 38, 0.3));
    }
    50% {
        filter: drop-shadow(0 10px 20px rgba(220, 38, 38, 0.6)) drop-shadow(0 0 30px rgba(255, 215, 0, 0.4));
    }
}

@keyframes giftPulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.05);
    }
}

@keyframes giftReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(90deg); }
    50% { transform: scale(1) rotate(180deg); }
    75% { transform: scale(1.2) rotate(270deg); }
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

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

.whatsapp-float i {
    font-size: 1.75rem;
    color: var(--white);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

.especialidades {
    background: var(--white);
}

.especialidades-swiper {
    padding: 2rem 0;
}

.especialidade-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
}

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

.especialidade-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.especialidade-icon i {
    font-size: 2rem;
    color: var(--white);
}

.especialidade-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.especialidade-card p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Benefícios */
.beneficios {
    background: var(--secondary-color);
}

.beneficios-swiper {
    padding: 2rem 0;
}

.beneficio-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

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

.beneficio-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.beneficio-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.beneficio-icon i {
    font-size: 2rem;
    color: var(--white);
}

.beneficio-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.beneficio-card p {
    color: var(--text-light);
}

/* Swiper Customização */
.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.5rem;
}

/* Planos */
.planos {
    background: var(--white);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.plano-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

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

.plano-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.plano-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.plano-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.plano-preco {
    margin-bottom: 1rem;
}

.preco-valor {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.preco-periodo {
    font-size: 1rem;
    color: var(--text-light);
}

.plano-header p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.plano-beneficios li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
}

.plano-beneficios i {
    color: var(--accent-color);
    font-size: 1rem;
}

/* Depoimentos */
.depoimentos {
    background: var(--secondary-color);
}

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

.depoimento-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1.125rem;
}

.depoimento-content p {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.depoimento-autor img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.depoimento-autor h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.depoimento-autor span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.cta-section {
    text-align: center;
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.cta-section h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

/* Contato */
.contato {
    background: var(--white);
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contato-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.contato-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contato-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contato-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.contato-card p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contato-card span {
    color: var(--text-light);
    font-size: 0.875rem;
    display: block;
    margin-bottom: 1.5rem;
}

/* Emergência */
.emergencia {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    padding: 3rem 0;
}

.emergencia-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.emergencia-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.emergencia-icon i {
    font-size: 2rem;
    color: var(--white);
}

.emergencia-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 1rem;
}

.emergencia-text p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: #ffffff;
    padding: 3rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

/* Footer Brand */
.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 50px;
    height: auto;
}

.footer-logo h3 {
    color: #3b82f6;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #3b82f6;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Footer Services */
.footer-services h4,
.footer-contact h4 {
    color: #3b82f6;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-service-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.footer-service-link:hover {
    color: #ffffff;
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(5px);
}

.footer-service-link i {
    color: #3b82f6;
    width: 20px;
    text-align: center;
}

/* Footer Contact */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
}

.contact-item i {
    color: #3b82f6;
    width: 20px;
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.footer-company-info {
    flex: 1;
}

.footer-company-info p {
    color: #94a3b8;
    margin: 0.25rem 0;
    font-size: 0.875rem;
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.875rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .header {
        padding: 0.5rem 0;
    }
    
    .nav {
        padding: 0.5rem 0;
    }
    
    .nav-brand {
        gap: 0.5rem;
    }
    
    .nav-logo {
        height: 40px;
        display: none; /* Esconde a logo no mobile */
    }
    
    .nav-brand span {
        font-size: 1.2rem;
    }
    
    /* Estilo específico para mobile */
    .nav-brand-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .nav-brand-mobile span {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--primary-color);
    }
    
    .hero {
        padding: 6rem 0 3rem;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .planos-grid {
        grid-template-columns: 1fr;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
    }
    
    .emergencia-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .promocional-content {
        flex-direction: column;
        text-align: center;
    }
    
    .promocional-text h2 {
        font-size: 1.5rem;
    }
    
    .promocional-beneficios {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float i {
        font-size: 1.5rem;
    }
    
    .feature-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .header {
        padding: 0.25rem 0;
    }
    
    .nav {
        padding: 0.25rem 0;
    }
    
    .nav-brand {
        gap: 0.25rem;
    }
    
    .nav-logo {
        height: 45px;
    }
    
    .nav-brand span {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
        margin-top: 1rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .btn-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}


/* Depoimentos Swiper */
.depoimentos-swiper {
    width: 100%;
    padding-bottom: 60px;
}

.depoimentos-swiper .swiper-slide {
    height: auto;
}

.depoimentos-swiper .depoimento-card {
    height: 100%;
}

.depoimentos-swiper .swiper-pagination {
    bottom: 0;
}

.depoimentos-swiper .swiper-button-next,
.depoimentos-swiper .swiper-button-prev {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .depoimentos-swiper .swiper-button-next,
    .depoimentos-swiper .swiper-button-prev {
        display: none;
    }
}


/* Classes de controle de visibilidade */
.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}

/* Media query para dispositivos móveis */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: flex !important;
    }
    
    .nav {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        padding: 0.5rem 0;
        gap: 10px;
    }
    
    .nav-brand-mobile {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--primary-color);
        font-family: Arial, sans-serif;
    }
    
    .nav-brand-mobile span {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--primary-color);
        font-family: Arial, sans-serif;
    }
    
    .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 1rem;
        white-space: nowrap;
        min-width: auto;
        margin-left: 5px;
    }
}

