@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --primary-soft: #8FA4C7;
    --primary-medium: #7B95B8;
    --primary-deep: #6B85A4;
    --accent-warm: #B5A788;
    --accent-gold: #D4C49A;
    --neutral-warm: #F8F6F1;
    --neutral-cool: #E8E5E0;
    --text-primary: #2C3E50;
    --text-secondary: #5D6D7E;
    --success-soft: #95C5A3;
    --shadow-soft: rgba(139, 158, 186, 0.15);
    --shadow-medium: rgba(139, 158, 186, 0.25);
}

* {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

/* Prevenir scroll horizontal */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.font-display {
    font-family: 'Playfair Display', serif;
}

.bg-primary-gradient {
    background: linear-gradient(135deg, var(--primary-soft) 0%, var(--primary-medium) 50%, var(--primary-deep) 100%);
}

.bg-warm-gradient {
    background: linear-gradient(135deg, var(--neutral-warm) 0%, #ffffff 100%);
}

.bg-accent-gradient {
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-gold) 100%);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-medium) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-morphism {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(139, 158, 186, 0.1);
}

.card-premium {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid var(--neutral-cool);
    box-shadow: 0 20px 60px var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px var(--shadow-medium);
}

.btn-primary {
    background: linear-gradient(135deg, #D4C49A 0%, #B5A788 100%);
    color: #2C3E50;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 25px rgba(181, 167, 136, 0.4);
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(181, 167, 136, 0.6);
    background: linear-gradient(135deg, #E2D4A8 0%, #C3B896 100%);
}

/* Responsive button adjustments */
@media (max-width: 640px) {
    .btn-primary {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Hero Section - Mobile spacing fix */
#home {
    padding-bottom: 60px;
}

@media (max-width: 640px) {
    #home {
        padding-bottom: 80px;
    }
}

.floating-gentle {
    animation: floating-gentle 8s ease-in-out infinite;
}

@keyframes floating-gentle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ANIMAÇÃO CÍRCULO QUANTEC - RESTAURADA */
.zen-circle {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 100%);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255,255,255,0.3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: quantum-rotation 20s linear infinite;
    aspect-ratio: 1 / 1; /* Garantir proporção circular */
    flex-shrink: 0; /* Prevenir compressão */
}

/* Responsive zen circle */
@media (max-width: 640px) {
    .zen-circle {
        width: 240px;
        height: 240px;
        /* Garantir que permaneça circular no mobile */
        aspect-ratio: 1 / 1;
        min-width: 240px;
        min-height: 240px;
        flex-shrink: 0;
    }
}

.zen-circle::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(255,255,255,0.2);
    animation: quantum-pulse 4s ease-in-out infinite;
    aspect-ratio: 1 / 1; /* Garantir proporção circular */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Responsive zen circle before */
@media (max-width: 640px) {
    .zen-circle::before {
        width: 200px;
        height: 200px;
        aspect-ratio: 1 / 1;
    }
}

.zen-circle::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    animation: quantum-ripple 6s ease-in-out infinite;
    aspect-ratio: 1 / 1; /* Garantir proporção circular */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Responsive zen circle after */
@media (max-width: 640px) {
    .zen-circle::after {
        width: 280px;
        height: 280px;
        aspect-ratio: 1 / 1;
    }
}

@keyframes quantum-rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes quantum-pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.9;
    }
}

@keyframes quantum-ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

.pulse-ring {
    position: absolute;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    animation: pulse-animation 4s ease-out infinite;
    opacity: 0;
    transform: translate(-50%, -50%);
    aspect-ratio: 1 / 1; /* Garantir proporção circular */
}

.pulse-ring:nth-child(1) {
    width: 350px;
    height: 350px;
    animation-delay: 0s;
}

.pulse-ring:nth-child(2) {
    width: 400px;
    height: 400px;
    animation-delay: 1.3s;
}

.pulse-ring:nth-child(3) {
    width: 450px;
    height: 450px;
    animation-delay: 2.6s;
}

/* Responsive pulse rings */
@media (max-width: 640px) {
    .pulse-ring {
        /* Forçar proporção circular no mobile */
        aspect-ratio: 1 / 1;
        max-width: none;
        max-height: none;
    }
    
    .pulse-ring:nth-child(1) {
        width: 280px;
        height: 280px;
    }
    
    .pulse-ring:nth-child(2) {
        width: 320px;
        height: 320px;
    }
    
    .pulse-ring:nth-child(3) {
        width: 360px;
        height: 360px;
    }
}

@keyframes pulse-animation {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.quantum-icon {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantum-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    animation: particle-float 8s linear infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 40%; left: 80%; animation-delay: 2s; }
.particle:nth-child(3) { top: 70%; left: 20%; animation-delay: 4s; }
.particle:nth-child(4) { top: 30%; left: 60%; animation-delay: 6s; }

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.wave-bg {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B5A788' fill-opacity='0.05'%3E%3Cpath d='M30 0c16.569 0 30 13.431 30 30s-13.431 30-30 30S0 46.569 0 30 13.431 0 30 0zm0 6c13.255 0 24 10.745 24 24s-10.745 24-24 24S6 43.255 6 30 16.745 6 30 6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.section-padding {
    padding: 80px 0;
}

/* Responsive section padding */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 640px) {
    .section-padding {
        padding: 40px 0;
    }
}

.text-balance {
    text-wrap: balance;
}

.highlight-text {
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.divider-elegant {
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-gold) 100%);
    border-radius: 2px;
    margin: 20px auto;
}

/* Responsive divider */
@media (max-width: 640px) {
    .divider-elegant {
        width: 60px;
        height: 2px;
        margin: 16px auto;
    }
}

.number-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4C49A 0%, #B5A788 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2C3E50;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    box-shadow: 0 15px 35px var(--shadow-soft);
}

/* Responsive number circle */
@media (max-width: 640px) {
    .number-circle {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
}

.progress-line {
    position: absolute;
    top: 35px;
    left: 70px;
    width: calc(100% - 70px);
    height: 2px;
    background: linear-gradient(to right, #D4C49A 0%, var(--neutral-cool) 100%);
    border-radius: 1px;
}

.premium-badge {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-warm) 100%);
    color: var(--text-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(212, 196, 154, 0.4);
    white-space: nowrap;
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    position: relative;
    padding: 0 30px;
}

.testimonial-quote::before,
.testimonial-quote::after {
    content: '"';
    font-size: 48px;
    color: var(--accent-warm);
    font-family: 'Playfair Display', serif;
    position: absolute;
    top: -10px;
}

.testimonial-quote::before {
    left: 0;
}

.testimonial-quote::after {
    right: 0;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--accent-warm);
    transition: width 0.3s ease;
}

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

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

.header-blur {
    background: rgba(248, 246, 241, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--neutral-cool);
}

/* HAMBURGER MENU MODERNO */
.hamburger-menu {
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 4px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.hamburger-menu span {
    width: 22px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

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

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

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

/* MOBILE MENU OVERLAY */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-sidebar {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    max-width: 350px;
    height: 100%;
    background: linear-gradient(145deg, #2C3E50 0%, #34495E 100%);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(100%);
}

.mobile-menu-overlay.active .mobile-menu-sidebar {
    transform: translateX(0);
}

.mobile-menu-header {
    padding: 30px 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.mobile-menu-nav {
    flex: 1;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 16px 30px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-warm) 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.mobile-nav-link:hover::before {
    left: 0;
}

.mobile-nav-link i {
    width: 24px;
    margin-right: 16px;
    font-size: 18px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--text-primary);
    transform: translateX(10px);
}

.mobile-nav-link:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.mobile-menu-footer {
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-warm);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(181, 167, 136, 0.4);
}

/* Planos Section - Melhor Visibilidade */
.plan-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 246, 241, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 60px rgba(139, 158, 186, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(139, 158, 186, 0.3);
    border-color: rgba(212, 196, 154, 0.8);
}

.plan-card.popular {
    border: 3px solid #D4C49A;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 246, 241, 0.95) 100%);
}

.plan-icon-bg {
    background: linear-gradient(135deg, var(--primary-soft) 0%, var(--primary-medium) 100%);
    box-shadow: 0 8px 25px rgba(139, 158, 186, 0.3);
}

.plan-btn {
    background: linear-gradient(135deg, #D4C49A 0%, #B5A788 100%);
    color: #2C3E50;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 25px rgba(181, 167, 136, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 14px;
}

.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(181, 167, 136, 0.6);
    background: linear-gradient(135deg, #E2D4A8 0%, #C3B896 100%);
}

/* Modal Styles */
#agendamento-modal {
    animation: fadeIn 0.5s ease-out;
}

#agendamento-modal.show #modal-overlay {
    opacity: 1;
}

#agendamento-modal.show #modal-content {
    opacity: 1;
    transform: scale(1);
}

#agendamento-modal.hide {
    animation: fadeOut 0.5s ease-out forwards;
}

#agendamento-modal.hide #modal-overlay {
    opacity: 0;
}

#agendamento-modal.hide #modal-content {
    opacity: 0;
    transform: scale(0.95);
}

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

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

/* Form Input Enhancements */
#agendamento-form input:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 158, 186, 0.15);
}

#agendamento-form input:valid {
    border-color: var(--success-soft);
}

#agendamento-form input:valid + div i {
    color: var(--success-soft);
}

/* Button States */
#submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-medium) 0%, var(--primary-deep) 100%);
}

#submit-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Responsive Modal */
@media (max-width: 640px) {
    #agendamento-modal .max-w-md {
        max-width: calc(100vw - 2rem);
        margin: 1rem;
    }
    
    #agendamento-modal .p-8 {
        padding: 1.5rem;
    }
    
    #agendamento-modal .px-8 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* Smooth Transitions */
#agendamento-form input,
#agendamento-form button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus Management */
#agendamento-modal input:focus {
    outline: none;
}

/* Success Animation */
@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

#success-state {
    animation: successPulse 0.6s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    /* Reduce grid gaps on mobile */
    .grid {
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Smaller grid gaps on small mobile */
    .grid {
        gap: 1rem;
    }
    
    /* Adjust card padding */
    .card-premium {
        padding: 1.5rem;
    }
    
    /* Mobile text adjustments */
    h1 {
        line-height: 1.2;
    }
    
    h2 {
        line-height: 1.3;
    }
    
    /* Fix mobile overflow issues */
    * {
        max-width: 100%;
        word-wrap: break-word;
    }
    
    /* Mobile form adjustments */
    input, select, textarea {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

/* Prevent horizontal scroll */
.overflow-hidden {
    overflow-x: hidden;
}

/* Utility classes for mobile responsiveness */
@media (max-width: 640px) {
    .text-3xl {
        font-size: 1.75rem;
    }
    
    .text-4xl {
        font-size: 2rem;
    }
    
    .text-5xl {
        font-size: 2.25rem;
    }
    
    .text-6xl {
        font-size: 2.5rem;
    }
    
    .text-7xl {
        font-size: 2.75rem;
    }
}

/* Loading states and improved UX */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Smooth transitions for all interactive elements */
a, button, input, select, textarea {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 2px solid var(--primary-medium);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .fixed,
    .floating-whatsapp,
    #mobile-menu-btn,
    .btn-primary {
        display: none !important;
    }
    
    .section-padding {
        padding: 20px 0;
    }
}

/* Disclaimer Section Styles */
.disclaimer-container {
    margin-top: 30px;
    padding: 0 1rem;
}

.disclaimer-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 246, 241, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(181, 167, 136, 0.2);
    border-radius: 20px;
    padding: 24px 32px;
    box-shadow: 0 10px 30px rgba(139, 158, 186, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.disclaimer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-gold) 100%);
    border-radius: 20px 20px 0 0;
}

.disclaimer-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(139, 158, 186, 0.15);
    border-color: rgba(181, 167, 136, 0.3);
}

.disclaimer-icon {
    color: var(--accent-warm);
    font-size: 20px;
    margin-bottom: 12px;
    display: inline-block;
    animation: gentle-pulse 3s ease-in-out infinite;
}

.disclaimer-text {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
    text-align: center;
    font-style: italic;
    opacity: 0.9;
}

/* Gentle pulse animation for icon */
@keyframes gentle-pulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Responsive adjustments for disclaimer */
@media (max-width: 768px) {
    .disclaimer-container {
        padding: 0 0.5rem;
    }
    
    .disclaimer-box {
        padding: 20px 24px;
        border-radius: 16px;
    }
    
    .disclaimer-icon {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .disclaimer-text {
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (max-width: 640px) {
    .disclaimer-box {
        padding: 18px 20px;
        border-radius: 14px;
    }
    
    .disclaimer-icon {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .disclaimer-text {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .disclaimer-box {
        background: linear-gradient(145deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 73, 94, 0.8) 100%);
        border-color: rgba(181, 167, 136, 0.3);
    }
    
    .disclaimer-text {
        color: rgba(255, 255, 255, 0.8);
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .disclaimer-icon {
        animation: none;
    }
    
    .disclaimer-box {
        transition: none;
    }
    
    .disclaimer-box:hover {
        transform: none;
    }
}

/* Plano Personalizado - Design Diferenciado para WhatsApp */
.plan-card.whatsapp-contact {
    background: linear-gradient(145deg, #25D366 0%, #128C7E 50%, #075E54 100%);
    border: 3px solid #25D366;
    color: white;
    position: relative;
    overflow: hidden;
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(37, 211, 102, 0.3);
}

.plan-card.whatsapp-contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: whatsapp-shine 3s ease-in-out infinite;
}

@keyframes whatsapp-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(0%) translateY(0%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.plan-card.whatsapp-contact:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 35px 90px rgba(37, 211, 102, 0.4);
    border-color: #34E77F;
}

.plan-card.whatsapp-contact .plan-icon-bg {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
        transform: scale(1.05);
    }
}

.plan-card.whatsapp-contact .plan-icon-bg i {
    color: #ffffff;
    font-size: 28px;
    animation: whatsapp-bounce 1.5s ease-in-out infinite;
}

@keyframes whatsapp-bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.plan-card.whatsapp-contact h3 {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.plan-card.whatsapp-contact p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.plan-card.whatsapp-contact ul li {
    color: rgba(255, 255, 255, 0.95);
}

.plan-card.whatsapp-contact .fas.fa-check {
    color: #FFD700;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #075E54;
    font-weight: 700;
    padding: 16px 24px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    font-size: 12px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFED4E 0%, #FF8C00 100%);
}

.whatsapp-btn i {
    margin-right: 8px;
    font-size: 18px;
    animation: whatsapp-icon-wiggle 2s ease-in-out infinite;
}

@keyframes whatsapp-icon-wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

@keyframes whatsapp-badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive adjustments for WhatsApp plan */
@media (max-width: 768px) {
    .plan-card.whatsapp-contact {
        transform: scale(1);
    }
    
    .plan-card.whatsapp-contact:hover {
        transform: scale(1.02) translateY(-4px);
    }
    
    .whatsapp-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .whatsapp-btn i {
        font-size: 16px;
        margin-right: 6px;
    }
}

@media (max-width: 640px) {
    .plan-card.whatsapp-contact .plan-icon-bg i {
        font-size: 24px;
    }
    
    .whatsapp-btn {
        padding: 12px 18px;
        font-size: 13px;
    }
}