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

*::before,
*::after {
    box-sizing: border-box;
}

:root {
    /* Cores inspiradas na Espanha */
    --spain-red: #C41E3A;
    --spain-yellow: #FFD700;
    --spain-orange: #FF6B35;
    --spain-dark-red: #8B0000;
    
    /* Cores neutras */
    --dark-bg: #0A0A0A;
    --darker-bg: #050505;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8B8;
    --text-muted: #888888;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #C41E3A 0%, #FF6B35 100%);
    --gradient-secondary: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    
    /* Sombras */
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-button: 0 8px 25px rgba(196, 30, 58, 0.4);
    
    /* Bordas */
    --border-radius: 12px;
    --border-radius-large: 20px;
    
    /* Transições */
    --transition: 0.3s ease;
}

body {
    font-family: 'Henvilka Now', sans-serif;
    background: #000000;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    backdrop-filter: none;
    border-radius: 50px;
    width: fit-content;
    max-width: 800px;
    padding: 3px;
    background: transparent;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    border-radius: 50px;
    z-index: -1;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    gap: 40px;
    background: rgba(10, 10, 10, 0.9);
    border-radius: 47px;
    border: 3px solid #FF6B35;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 4px 8px;
}

.nav-link:hover {
    color: #FF6B35;
}


/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    padding-top: 80px;
    overflow: visible;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: #000000;
}

.hero-shape {
    position: absolute;
    background: var(--gradient-primary);
    opacity: 0.08;
    animation: abstractFloat 15s ease-in-out infinite;
    z-index: 1;
}

.abstract-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--spain-red), var(--spain-yellow), var(--spain-orange), transparent);
    height: 2px;
    opacity: 0.6;
    animation: lineMove 12s ease-in-out infinite;
    z-index: 1;
}

.abstract-dot {
    position: absolute;
    background: var(--spain-red);
    border-radius: 50%;
    opacity: 0.2;
    animation: dotPulse 8s ease-in-out infinite;
    z-index: 1;
}

/* Notificações Shopify */
.notification {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(149, 191, 71, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    animation: notificationFloat 8s ease-in-out infinite;
    min-width: 280px;
    min-height: 60px;
    opacity: 0;
    transform: translateY(20px);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.shopify-logo {
    width: 35px;
    height: 35px;
    background: url('../images/logo-shopfy.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 
        0 4px 12px rgba(149, 191, 71, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    transform: perspective(100px) rotateX(5deg) rotateY(-5deg);
}

.shopify-s {
    display: none;
}

.notification-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.notification-title {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.notification-time {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.notification-description {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.3;
    margin: 2px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.notification-amount {
    font-size: 15px;
    font-weight: 800;
    color: #4ade80;
    line-height: 1.2;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.notification-amount.negative {
    color: #f87171;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Posicionamento das notificações */
.notification-1 {
    top: 10%;
    right: 8%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.notification-2 {
    top: 25%;
    right: 3%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.notification-3 {
    top: 60%;
    right: 6%;
    animation-delay: 4s;
    animation-duration: 9s;
}

.notification-4 {
    top: 80%;
    right: 9%;
    animation-delay: 6s;
    animation-duration: 6s;
}

/* Animação das notificações */
@keyframes notificationFloat {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    15% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    85% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
}

.shape-1 {
    width: 300px;
    height: 2px;
    top: 20%;
    right: 10%;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 2px;
    bottom: 30%;
    left: 15%;
    transform: rotate(-30deg);
    animation-delay: 3s;
}

.shape-3 {
    width: 150px;
    height: 2px;
    top: 60%;
    left: 60%;
    transform: rotate(60deg);
    animation-delay: 6s;
}

.shape-4 {
    width: 250px;
    height: 1px;
    top: 40%;
    right: 30%;
    transform: rotate(-45deg);
    animation-delay: 9s;
}

@keyframes abstractFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(45deg);
        opacity: 0.08;
    }
    50% { 
        transform: translateY(-20px) rotate(65deg);
        opacity: 0.15;
    }
}


.line-1 {
    width: 600px;
    top: 20%;
    left: -300px;
    animation-delay: 0s;
}

.line-2 {
    width: 500px;
    top: 65%;
    right: -250px;
    animation-delay: 4s;
}

.line-3 {
    width: 450px;
    top: 40%;
    left: 30%;
    animation-delay: 8s;
}

.line-4 {
    width: 550px;
    top: 80%;
    left: -200px;
    animation-delay: 2s;
}

.line-5 {
    width: 400px;
    top: 10%;
    right: -100px;
    animation-delay: 6s;
}

.abstract-dot {
    position: absolute;
    background: var(--spain-red);
    border-radius: 50%;
    opacity: 0.2;
    animation: dotPulse 8s ease-in-out infinite;
}

.dot-1 {
    width: 6px;
    height: 6px;
    top: 15%;
    right: 20%;
    animation-delay: 0s;
}

.dot-2 {
    width: 4px;
    height: 4px;
    bottom: 25%;
    left: 25%;
    animation-delay: 3s;
}

.dot-3 {
    width: 8px;
    height: 8px;
    top: 55%;
    right: 40%;
    animation-delay: 6s;
}

@keyframes lineMove {
    0%, 100% { 
        transform: translateX(0px);
        opacity: 0.3;
    }
    50% { 
        transform: translateX(100px);
        opacity: 0.6;
    }
}

@keyframes dotPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.2;
    }
    50% { 
        transform: scale(1.5);
        opacity: 0.4;
    }
}

.hero-content {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero-text {
    width: 100%;
    max-width: 100%;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 500px;
    background: url('../images/hero-01.png') no-repeat center center;
    background-size: cover;
    border-radius: 20px;
    position: relative;
    z-index: 20;
}




.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.9rem;
    color: var(--spain-yellow);
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Henvilka Now', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.highlight {
    color: var(--spain-red);
    -webkit-text-fill-color: var(--spain-red);
}

.title-highlight {
    color: var(--text-primary);
    background: var(--gradient-primary);
    font-weight: 900;
    padding: 4px 8px;
    border-radius: 6px;
    letter-spacing: 0.02em;
    display: inline-block;
}

.flag {
    font-size: 0.8em;
    margin-left: 8px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 500;
}

.euro {
    color: var(--spain-yellow);
    font-weight: 700;
    font-size: 1.2em;
}


.hero-cta {
    display: flex;
    justify-content: flex-start;
    max-width: 400px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-button);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(196, 30, 58, 0.5);
}

.btn-large {
    padding: 24px 48px;
    font-size: 1.25rem;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.1rem;
}

.price {
    color: var(--spain-yellow);
    font-weight: 700;
    font-size: 1.5rem;
}

.or {
    color: var(--text-muted);
}

.installments {
    color: var(--text-primary);
    font-weight: 600;
}



/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

.about-section .section-header {
    z-index: 15;
}

.section-title {
    font-family: 'Henvilka Now', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.title-highlight {
    font-size: 1.2em;
    font-weight: 700;
    opacity: 1;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Benefits Section */
.benefits {
    padding: 150px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.benefits .container {
    position: relative;
    z-index: 10;
}

/* Benefits Carousel - Refatorado */
.benefits-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    padding: 20px 0;
}

.benefits-track {
    display: flex;
    gap: 20px;
    animation: benefitsCarouselMove 40s linear infinite;
    width: calc(300px * 8);
}

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

.benefit-card {
    flex: 0 0 280px;
    min-width: 280px;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 1px solid #404040;
    border-radius: 12px;
    padding: 20px 20px 20px 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateZ(0);
    display: flex;
    flex-direction: column;
    height: 200px;
    text-align: left;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #C41E3A 0%, #FF6B35 100%);
    border-radius: 12px 12px 0 0;
    z-index: 1;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: #555;
    background: linear-gradient(145deg, #333 0%, #222 100%);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(196, 30, 58, 0.2);
}

.benefit-card:hover::before {
    height: 3px;
    background: linear-gradient(90deg, #FF6B35 0%, #C41E3A 100%);
}

.benefit-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #C41E3A 0%, #FF6B35 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 3;
    margin: 0;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 
        0 4px 12px rgba(196, 30, 58, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.benefit-icon i {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    filter: grayscale(100%) brightness(0) invert(1);
}

.benefit-card h3 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    padding: 0 50px 0 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.2px;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
    line-height: 1.2;
    text-align: left;
}

.benefit-card:hover h3 {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
    padding: 0 50px 0 0;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.benefit-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

/* Animação do carrossel */
@keyframes benefitsCarouselMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Animação do carrossel de testemunhos */
@keyframes testimonialsCarouselMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Seção de Feedbacks Reais */
.feedback-images-section {
    padding: 80px 0 100px 0;
    background: #000000;
}

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

.feedback-cta .btn {
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(196, 30, 58, 0.4),
        0 4px 12px rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.feedback-cta .btn i {
    margin-left: 8px;
    margin-right: 0;
    font-size: 1.1rem;
    order: 2;
}

.feedback-cta .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(196, 30, 58, 0.6),
        0 8px 25px rgba(255, 107, 53, 0.4);
}

.feedback-carousel {
    overflow: hidden;
    position: relative;
    padding: -10px 0;
    width: 100%;
    height: 420px;
}

.feedback-track {
    display: flex;
    gap: 20px;
    animation: feedbackCarouselMove 30s linear infinite;
    width: calc(320px * 16);
    min-height: 400px;
}

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

.feedback-track img {
    flex: 0 0 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #333;
    background: #ffffff;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 1;
}

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


/* Seção Sobre */
.about-section {
    padding: 150px 0 250px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(196, 30, 58, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(196, 30, 58, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.about-section .section-header {
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.about-section .section-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Henvilka Now', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.about-section .section-title .title-highlight {
    color: var(--text-primary);
    background: var(--gradient-primary);
    font-weight: 900;
    padding: 4px 8px;
    border-radius: 6px;
    letter-spacing: 0.02em;
    display: inline-block;
}

.about-section .section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.about-text {
    text-align: left;
}

.about-text h3 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.01em;
}

.about-text h3::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #c41e3a, #ff6b6b, #c41e3a);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.3);
}

.about-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 0;
    text-align: left;
}

.about-text p strong {
    color: #c41e3a;
    font-weight: 700;
}

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

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -20px;
    width: 100px;
    height: 120px;
    background: linear-gradient(135deg, #ffc107, #ffeb3b);
    border-radius: 15px;
    transform: rotate(-15deg);
    z-index: -1;
    opacity: 1;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -20px;
    width: 100px;
    height: 120px;
    background: linear-gradient(135deg, #ff5722, #ff7043);
    border-radius: 15px;
    transform: rotate(15deg);
    z-index: -1;
    opacity: 1;
}


.about-image img {
    max-width: 100%;
    width: 400px;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    filter: contrast(1.1) brightness(1.05) saturate(1.1) sharpness(1.2);
}


/* Classes reutilizáveis para evitar duplicação */
.icon-base {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    display: block;
}

.icon-small {
    font-size: 16px;
}

/* Seção de Preços */
.pricing-section {
    padding: 120px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FF6B35, #FFD700, #FF6B35, transparent);
    opacity: 0.3;
    z-index: 1;
}

.pricing-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FFD700, #FF6B35, #FFD700, transparent);
    opacity: 0.2;
    z-index: 1;
}

.pricing-section {
    padding: 120px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(196, 30, 58, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.pricing-abstract-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--spain-red), var(--spain-yellow), var(--spain-orange), transparent);
    height: 2px;
    opacity: 0.6;
    animation: lineMove 12s ease-in-out infinite;
    z-index: 1;
}

.pricing-abstract-dot {
    position: absolute;
    background: var(--spain-red);
    border-radius: 50%;
    opacity: 0.2;
    animation: dotPulse 8s ease-in-out infinite;
    z-index: 1;
}

.pricing-line-1 {
    top: 20%;
    left: 10%;
    width: 300px;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.pricing-line-2 {
    top: 60%;
    right: 15%;
    width: 250px;
    transform: rotate(-25deg);
    animation-delay: 3s;
}

.pricing-line-3 {
    bottom: 25%;
    left: 20%;
    width: 200px;
    transform: rotate(45deg);
    animation-delay: 6s;
}

.pricing-dot-1 {
    width: 8px;
    height: 8px;
    top: 15%;
    right: 25%;
    animation-delay: 0s;
}

.pricing-dot-2 {
    width: 6px;
    height: 6px;
    top: 40%;
    left: 15%;
    animation-delay: 2s;
}

.pricing-dot-3 {
    width: 10px;
    height: 10px;
    bottom: 30%;
    right: 20%;
    animation-delay: 4s;
}

.pricing-dot-4 {
    width: 5px;
    height: 5px;
    top: 70%;
    left: 30%;
    animation-delay: 6s;
}


.pricing-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.pricing-layout {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 50px;
}

.pricing-options {
    margin-bottom: 0;
    order: 2;
}

/* Containers Laterais com Profundidade */
.why-choose-left,
.why-choose-right {
    background: linear-gradient(145deg, #1a1a1a 0%, #000000 50%, #0a0a0a 100%);
    border-radius: 12px;
    padding: 25px 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 
        inset 0 4px 10px rgba(0, 0, 0, 0.6),
        inset 0 2px 5px rgba(0, 0, 0, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.5),
        0 3px 8px rgba(0, 0, 0, 0.3);
    text-align: left;
    height: fit-content;
    position: relative;
    transform: perspective(1000px) rotateX(2deg);
    transition: all 0.3s ease;
}

.why-choose-left {
    order: 1;
}

.why-choose-right {
    order: 3;
}

.why-choose-left h3,
.why-choose-right h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateX(3px);
}

.why-item i {
    font-size: 1rem;
    color: #FF6B35;
    flex-shrink: 0;
}

.why-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
}

.pricing-option {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 35px 30px;
    border: 1px solid rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    height: fit-content;
}

.pricing-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #FFD700, #FF6B35);
}


.pricing-header h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pricing-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 8px 0;
    font-weight: 500;
}

.pricing-price {
    color: #4ade80;
    font-size: 2rem;
    font-weight: 800;
    margin: 12px 0;
    text-shadow: 0 3px 6px rgba(74, 222, 128, 0.3);
}

.pricing-cta {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-btn {
    padding: 12px 25px;
    font-size: 0.95rem;
    font-weight: 600;
    background: var(--gradient-primary);
    border: none;
    border-radius: 25px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 6px 20px rgba(255, 107, 53, 0.3),
        0 3px 8px rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    width: 100%;
}

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

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

.pricing-btn i {
    margin-left: 8px;
    margin-right: 0;
    font-size: 0.9rem;
    order: 2;
}

.pricing-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 10px 30px rgba(255, 107, 53, 0.5),
        0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Botão Melhorado com Efeito de Sombra Glow */
.shadow__btn {
    padding: 16px 32px;
    border: none;
    font-size: 18px;
    color: #fff;
    border-radius: 50px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(135deg, #00ad54 0%, #00cc6a 50%, #00aa55 100%);
    box-shadow: 
        0 8px 25px rgba(0, 173, 84, 0.3),
        0 4px 12px rgba(0, 173, 84, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Henvilka Now', sans-serif;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    height: 60px;
}

/* Efeito de brilho que passa pelo botão */
.shadow__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
    z-index: 1;
}

/* Efeito de pulsação sutil */
.shadow__btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: 0;
}

.shadow__btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, #00cc6a 0%, #00ff88 50%, #00ad54 100%);
    box-shadow: 
        0 15px 35px rgba(0, 173, 84, 0.4),
        0 8px 20px rgba(0, 204, 106, 0.3),
        0 0 40px rgba(0, 173, 84, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    letter-spacing: 3px;
}

.shadow__btn:hover::before {
    left: 100%;
}

.shadow__btn:hover::after {
    width: 200px;
    height: 200px;
    opacity: 0;
}

.shadow__btn:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 
        0 8px 20px rgba(0, 173, 84, 0.3),
        0 4px 12px rgba(0, 204, 106, 0.2);
    transition: all 0.1s ease;
}

.shadow__btn i {
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
    position: relative;
}

.shadow__btn:hover i {
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Efeito de foco para acessibilidade */
.shadow__btn:focus {
    outline: none;
    box-shadow: 
        0 0 0 4px rgba(0, 173, 84, 0.3),
        0 15px 35px rgba(0, 173, 84, 0.4);
}

/* Estilos para links que funcionam como botões */
a.btn, a.cta-button, a.shadow__btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

a.btn:hover, a.cta-button:hover, a.shadow__btn:hover {
    text-decoration: none;
}

/* Animação de entrada suave */
@keyframes button-enter {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.shadow__btn {
    animation: button-enter 0.6s ease-out;
}

/* Contador de Urgência - Profissional com Profundidade */
.urgency-timer {
    margin: 30px 0;
    text-align: center;
    padding: 25px 30px;
    background: linear-gradient(145deg, #1a1a1a 0%, #000000 50%, #0a0a0a 100%);
    border: 2px solid #FF6B35;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    box-shadow: 
        inset 0 8px 20px rgba(0, 0, 0, 0.8),
        inset 0 4px 10px rgba(0, 0, 0, 0.6),
        0 15px 30px rgba(0, 0, 0, 0.7),
        0 5px 15px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateX(5deg);
}

.urgency-timer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.1) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(255, 107, 53, 0.05) 100%);
    border-radius: 18px;
    pointer-events: none;
}

.urgency-timer::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 50%;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 100%);
    border-radius: 18px 18px 0 0;
    pointer-events: none;
}

.timer-label {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Henvilka Now', sans-serif;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.timer-display {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Henvilka Now', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.timer-separator {
    animation: blink 1s infinite;
    color: #FFD700;
    font-weight: 900;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}



.payment-methods {
    margin-top: 30px;
}

.payment-methods h4 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
    text-align: center;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: auto;
}

.payment-icon i {
    font-size: 1.2rem;
    color: #ffffff;
}

.payment-icon span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 400;
}

/* Seção FAQ */
.faq-section {
    padding: 120px 0;
    background: #000000;
    position: relative;
}

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

.faq-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #FF6B35;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.faq-question h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    color: #FF6B35;
    font-size: 1.5rem;
    font-weight: 300;
    transition: all 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-question:hover .faq-icon {
    color: #FFD700;
    transform: scale(1.1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}


.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    z-index: 1;
}

.benefits::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    z-index: 1;
}

.benefits-abstract-line {
    position: absolute;
    background: linear-gradient(90deg, var(--spain-red), var(--spain-yellow), var(--spain-orange));
    height: 1px;
    opacity: 0.3;
    z-index: 2;
}

.benefits-abstract-line.line-1 {
    top: 15%;
    left: 10%;
    width: 200px;
    transform: rotate(15deg);
}

.benefits-abstract-line.line-2 {
    top: 25%;
    right: 15%;
    width: 150px;
    transform: rotate(-25deg);
}

.benefits-abstract-line.line-3 {
    bottom: 20%;
    left: 20%;
    width: 180px;
    transform: rotate(45deg);
}

.benefits-abstract-line.line-4 {
    bottom: 30%;
    right: 10%;
    width: 120px;
    transform: rotate(-60deg);
}

.benefits-abstract-line.line-5 {
    top: 50%;
    left: 50%;
    width: 100px;
    transform: translateX(-50%) rotate(90deg);
}

.benefits-cta {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.benefits-cta .cta-button {
    background: linear-gradient(135deg, var(--spain-red) 0%, var(--spain-orange) 50%, var(--spain-yellow) 100%);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Henvilka Now', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(220, 38, 38, 0.3),
        0 4px 12px rgba(255, 165, 0, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefits-cta .cta-button::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.6s;
}

.benefits-cta .cta-button::after {
    content: '🚀';
    font-size: 1.2rem;
    animation: rocket-bounce 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes rocket-bounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-3px) rotate(-5deg);
    }
    50% {
        transform: translateY(-2px) rotate(0deg);
    }
    75% {
        transform: translateY(-4px) rotate(5deg);
    }
}

.benefits-cta .cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(220, 38, 38, 0.5),
        0 8px 25px rgba(255, 165, 0, 0.4),
        0 0 30px rgba(255, 193, 7, 0.3);
    background: linear-gradient(135deg, #e53e3e 0%, #ff8c00 50%, #ffd700 100%);
}

.benefits-cta .cta-button:hover::before {
    left: 100%;
}

.benefits-cta .cta-button:hover::after {
    animation: rocket-launch 0.6s ease-out forwards;
}

@keyframes rocket-launch {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(-10deg) scale(1.2);
    }
    100% {
        transform: translateY(-12px) rotate(-15deg) scale(1.3);
    }
}

.benefits-cta .cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

/* Animated Banner */
.animated-banner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.08) 100%);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.2),
        0 3px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: rotate(0deg);
    margin: 40px 0;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-image: linear-gradient(90deg, var(--spain-red), var(--spain-orange), var(--spain-yellow)) 1;
}

.animated-banner-2 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.08) 100%);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.2),
        0 3px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: rotate(-3deg);
    margin: -80px 0 60px 0;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-image: linear-gradient(90deg, var(--spain-red), var(--spain-orange), var(--spain-yellow)) 1;
}

.banner-content {
    display: flex;
    color: rgba(255, 255, 255, 0.95);
    width: 200%;
    background-color: transparent;
    padding: 8px 0;
    margin: 0;
    animation: faixaAnimada 20s infinite linear;
}

.banner-content h2 {
    flex: 0 0 50%;
    font-size: 1rem;
    font-family: 'Henvilka Now', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding: 0 15px;
}

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

/* Animação contínua - sem pausa no hover */


/* Responsividade */
@media (max-width: 768px) {
    .animated-banner {
        padding: 6px 0;
    }
    
    .banner-content {
        padding: 3px 0;
    }
    
    .banner-content h2 {
        font-size: 0.9rem;
        padding: 0 12px;
    }
}

@media (max-width: 480px) {
    .animated-banner {
        padding: 4px 0;
    }
    
    .banner-content {
        padding: 2px 0;
    }
    
    .banner-content h2 {
        font-size: 0.8rem;
        padding: 0 10px;
    }
}








/* New Section */
.new-section {
    padding: 180px 0 130px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.new-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    z-index: 1;
}


.new-section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Linhas animadas da seção */
.new-section-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--spain-red), var(--spain-yellow), var(--spain-orange), transparent);
    height: 2px;
    opacity: 0.4;
    animation: sectionLineMove 15s ease-in-out infinite;
    z-index: 1;
}

.new-section-line-1 {
    width: 400px;
    top: 25%;
    left: -200px;
    animation-delay: 0s;
}

.new-section-line-2 {
    width: 350px;
    top: 60%;
    right: -175px;
    animation-delay: 5s;
}

.new-section-line-3 {
    width: 300px;
    top: 80%;
    left: 20%;
    animation-delay: 10s;
}

.new-section-line-4 {
    width: 500px;
    top: 15%;
    right: -250px;
    animation-delay: 2s;
}

.new-section-line-5 {
    width: 450px;
    top: 45%;
    left: -225px;
    animation-delay: 7s;
}

.new-section-line-6 {
    width: 400px;
    top: 75%;
    right: -200px;
    animation-delay: 12s;
}

.new-section-line-7 {
    width: 350px;
    top: 35%;
    left: 30%;
    animation-delay: 3s;
}

/* Pontos animados da seção */
.new-section-dot {
    position: absolute;
    background: var(--spain-red);
    border-radius: 50%;
    opacity: 0.3;
    animation: sectionDotPulse 12s ease-in-out infinite;
    z-index: 1;
}

.new-section-dot-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    right: 25%;
    animation-delay: 0s;
}

.new-section-dot-2 {
    width: 6px;
    height: 6px;
    bottom: 40%;
    left: 15%;
    animation-delay: 4s;
}

.new-section-dot-3 {
    width: 10px;
    height: 10px;
    top: 70%;
    right: 10%;
    animation-delay: 8s;
}

/* Animações */
@keyframes sectionLineMove {
    0%, 100% { 
        transform: translateX(0px);
        opacity: 0.2;
    }
    50% { 
        transform: translateX(100px);
        opacity: 0.6;
    }
}

@keyframes sectionDotPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.2;
    }
    50% { 
        transform: scale(1.8);
        opacity: 0.5;
    }
}

.left-container {
    max-width: 600px;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.section-header-left {
    margin-bottom: 40px;
    text-align: right;
}

.section-header-left .section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-align: right;
}

.section-header-left .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: right;
    max-width: 100%;
    margin-left: auto;
}

.target-groups {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
    text-align: right;
}

.target-group {
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-right: 3px solid;
    border-image: linear-gradient(180deg, #c41e3a, #ff6b6b, #c41e3a) 1;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 2px 0 8px rgba(196, 30, 58, 0.1);
}


.target-group:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 3px 0 12px rgba(196, 30, 58, 0.15);
}


.group-title {
    font-family: 'Henvilka Now', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--spain-red);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    text-align: right;
}

.group-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
    text-align: right;
}

.target-cta {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
}

.target-cta .btn {
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(196, 30, 58, 0.4),
        0 4px 12px rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

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

.target-cta .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(196, 30, 58, 0.6),
        0 8px 25px rgba(255, 107, 53, 0.4);
}

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

.target-cta .btn i {
    margin-left: 8px;
    margin-right: 0;
    font-size: 1.1rem;
    order: 2;
}

/* Right Container - Content */
.right-container {
    max-width: 600px;
}

.section-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 10px 40px rgba(196, 30, 58, 0.2);
    background: transparent;
}



/* Testimonials Section */
.testimonials {
    padding: 120px 0 60px 0;
    background: #050000;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    position: relative;
    overflow: visible;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 70% 80%, rgba(196, 30, 58, 0.05) 0%, transparent 30%);
    pointer-events: none;
    z-index: 1;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, #000000 0%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(0deg, #000000 0%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

/* Linhas e partículas para a seção de testemunhos (igual ao hero) */
.testimonials-abstract-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--spain-red), var(--spain-yellow), var(--spain-orange), transparent);
    height: 2px;
    opacity: 0.6;
    animation: lineMove 12s ease-in-out infinite;
    z-index: 1;
}

.testimonials-abstract-dot {
    position: absolute;
    background: var(--spain-red);
    border-radius: 50%;
    opacity: 0.2;
    animation: dotPulse 8s ease-in-out infinite;
    z-index: 1;
}

.testimonials-line-1 {
    top: 20%;
    left: 10%;
    width: 300px;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.testimonials-line-2 {
    top: 60%;
    right: 15%;
    width: 250px;
    transform: rotate(-25deg);
    animation-delay: 3s;
}

.testimonials-line-3 {
    bottom: 25%;
    left: 20%;
    width: 200px;
    transform: rotate(45deg);
    animation-delay: 6s;
}

.testimonials-dot-1 {
    width: 8px;
    height: 8px;
    top: 15%;
    right: 25%;
    animation-delay: 0s;
}

.testimonials-dot-2 {
    width: 6px;
    height: 6px;
    top: 40%;
    left: 15%;
    animation-delay: 2s;
}

.testimonials-dot-3 {
    width: 10px;
    height: 10px;
    bottom: 30%;
    right: 20%;
    animation-delay: 4s;
}

.testimonials-dot-4 {
    width: 5px;
    height: 5px;
    top: 70%;
    left: 30%;
    animation-delay: 6s;
}



.testimonials .container {
    position: relative;
}


/* Carrossel de Testimonials */
.testimonials-carousel {
    position: relative;
    overflow: visible;
    margin-top: 20px;
    padding: 20px 0;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
}

.testimonials-track {
    display: flex;
    gap: 25px;
    width: calc(375px * 8); /* 8 cards originais */
    box-sizing: border-box;
    padding: 0 50px;
    justify-content: flex-start;
    align-items: center;
    animation: testimonialsCarouselMove 60s linear infinite;
}

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

.testimonial-card {
    flex: 0 0 350px;
    min-width: 350px;
    max-width: 350px;
    width: 350px;
    min-height: 280px;
    height: auto;
    box-sizing: border-box;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF6B35 0%, #C41E3A 50%, #FFD700 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.25);
}


.testimonial-content {
    text-align: center;
    flex: 1;
}

.stars {
    font-size: 1.4rem;
    margin-bottom: 16px;
    display: block;
    text-align: center;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
}

.testimonial-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.7;
    margin: 0;
    position: relative;
    padding: 0 10px;
}

.testimonial-content p::before {
    content: '"';
    font-size: 2rem;
    color: rgba(255, 107, 53, 0.3);
    position: absolute;
    top: -10px;
    left: -5px;
    font-family: serif;
}

.testimonial-content p::after {
    content: '"';
    font-size: 2rem;
    color: rgba(255, 107, 53, 0.3);
    position: absolute;
    bottom: -15px;
    right: -5px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    margin-top: auto;
}


/* Ícones de avatar dos testemunhos */
.testimonial-avatar {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35 0%, #C41E3A 50%, #FFD700 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ffffff;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin: 0 auto;
    box-shadow: 
        0 4px 15px rgba(196, 30, 58, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.testimonial-avatar::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35 0%, #C41E3A 50%, #FFD700 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-avatar:hover::before {
    opacity: 1;
}

.testimonial-avatar i {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.avatar-fallback {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #ffffff;
    display: none;
}


.testimonial-avatar:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.author-info {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    visibility: visible !important;
    opacity: 1 !important;
}

.author-info h4 {
    font-weight: 700;
    color: #ffffff !important;
    margin: 0;
    font-size: 1rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #000000;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-large);
    padding: 50px 40px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.03;
    z-index: -1;
}

.pricing-header {
    margin-bottom: 40px;
}

.price-badge {
    display: inline-block;
    background: var(--gradient-secondary);
    color: var(--dark-bg);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.pricing-header h3 {
    font-family: 'Henvilka Now', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.pricing-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.price-display {
    margin-bottom: 40px;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.currency {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--spain-yellow);
}

.amount {
    font-size: 5rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
}

.period {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 600;
}

.price-installments {
    font-size: 1.3rem;
    color: var(--text-secondary);
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
    text-align: left;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 1rem;
}

.feature i {
    color: #4ade80;
    font-size: 1.1rem;
}

.fa-check-circle {
    color: #4ade80 !important;
    font-size: 1.1rem;
}

.fa-star {
    color: #4ade80 !important;
    font-size: 1.1rem;
}

.bonuses {
    margin-bottom: 40px;
    text-align: left;
}

.bonuses h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-align: center;
}

.bonus-list {
    list-style: none;
}

.bonus-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.bonus-list i {
    color: var(--spain-yellow);
    font-size: 1.2rem;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.guarantee i {
    color: var(--spain-yellow);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(180deg, #000000 0%, #000000 100%);
}

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

.faq-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-card);
}

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

.faq-question:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
}

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

.faq-question i {
    color: #FF6B35;
    font-size: 1.2rem;
    transition: all var(--transition);
}

.faq-question:hover i {
    color: #FFD700;
    transform: scale(1.1);
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition);
}

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

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 50px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FF6B35, #FFD700, #FF6B35, transparent);
    opacity: 0.6;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    text-align: center;
}

/* Redes Sociais */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35, #FFD700);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #E4405F, #FF6B35);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon i {
    font-size: 1.8rem;
    color: #ffffff;
    z-index: 2;
    position: relative;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.5);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover i {
    transform: scale(1.2);
}

/* Navegação */
.footer-nav {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.footer-nav a:hover {
    color: #FF6B35;
    background: rgba(255, 107, 53, 0.05);
    transform: translateY(-2px);
}

.footer-nav a:hover::before {
    left: 100%;
}

/* Aviso Legal */
.footer-legal {
    max-width: 600px;
    margin: 0 auto;
}

.footer-legal p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

/* Copyright */
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.7;
}

.footer-bottom a {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #FFD700;
}

/* Responsividade */
@media (max-width: 768px) {
    .header {
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 600px;
    }
    
    .nav-container {
        display: none !important;
    }
    
    .header {
        display: none !important;
    }
    
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-cta {
        max-width: 350px;
        margin: 0 auto;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .hero-image {
        min-height: 350px;
    }
    
    .hero {
        background-position: 60% center;
        min-height: 80vh;
    }
    
    /* Ocultar notificações no mobile */
    .notification {
        display: none !important;
    }
    
    
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .new-section {
        padding: 180px 0 110px 0;
    }
    
    .new-section-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .left-container {
        max-width: 100%;
        min-height: 300px;
    }
    
    .right-container {
        max-width: 100%;
    }
    
    .section-header-left .section-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .section-header-left .section-subtitle {
        text-align: center;
    }
    
    .target-cta {
        justify-content: center;
    }
    
    .section-image {
        border-radius: 15px;
        box-shadow: 
            0 15px 50px rgba(0, 0, 0, 0.3),
            0 8px 25px rgba(196, 30, 58, 0.15);
    }
    
    .target-groups {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .target-group {
        padding: 12px;
    }
    
    .group-title {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    .group-description {
        font-size: 0.8rem;
    }
    
    .footer {
        padding: 40px 0 25px;
    }
    
    .footer .container {
        gap: 30px;
    }
    
    .footer-nav {
        gap: 20px;
        flex-direction: column;
    }
    
    .footer-nav a {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-icon i {
        font-size: 1.5rem;
    }
    
    .footer-legal {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .footer-legal p {
        font-size: 0.8rem;
    }
    
    .benefits-carousel {
        padding: 15px 0;
    }
    
    .benefits-track {
        gap: 20px;
        width: calc(320px * 8);
    }
    
    .benefit-card {
        flex: 0 0 250px;
        min-width: 250px;
        height: 180px;
        padding: 15px;
    }
    
    .benefit-icon {
        width: 32px;
        height: 32px;
        top: 15px;
        right: 15px;
    }
    
    .benefit-icon i {
        filter: grayscale(100%) brightness(0) invert(1);
    }
    
    .icon-base {
        font-size: 16px;
    }
    
    .benefit-card h3 {
        font-size: 0.85rem;
        margin-bottom: 6px;
        padding: 0 40px 0 0;
    }
    
    .benefit-card p {
        font-size: 0.75rem;
        padding: 0 40px 0 0;
    }
    
    .feedback-images-section {
        padding: 0 0 60px 0;
    }
    
    .feedback-cta {
        margin-top: 30px;
    }
    
    .feedback-cta .btn {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .feedback-track {
        gap: 15px;
        width: calc(270px * 16);
    }
    
    .feedback-track img {
        flex: 0 0 250px;
        height: 320px;
    }
    
    .about-section {
        padding: 100px 0 400px 0;
    }
    
    .about-section .section-title {
        font-size: 2.8rem;
    }
    
    .about-section .section-title .title-highlight {
        padding: 3px 6px;
        font-size: 0.9em;
    }
    
    .about-section .section-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text h3 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .about-text h3::before {
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
    }
    
    .about-text p {
        font-size: 1.1rem;
        text-align: left;
    }
    
    .about-image img {
        width: 300px;
        height: auto;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .about-text h3 {
        font-size: 1.3rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .pricing-section {
        padding: 100px 0;
    }
    
    .pricing-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-choose-left,
    .why-choose-right {
        padding: 20px 15px;
        order: unset;
    }
    
    .pricing-options {
        order: 2;
    }
    
    .why-choose-left h3,
    .why-choose-right h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .why-item {
        gap: 8px;
        padding: 4px 0;
    }
    
    .why-item i {
        font-size: 0.9rem;
    }
    
    .why-item span {
        font-size: 0.85rem;
    }
    
    .pricing-option {
        padding: 25px 20px;
    }
    
    .pricing-header h3 {
        font-size: 1.2rem;
    }
    
    .pricing-price {
        font-size: 1.8rem;
    }
    
    .pricing-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .payment-icons {
        gap: 12px;
    }
    
    .payment-icon {
        padding: 6px 10px;
    }
    
    .payment-icon i {
        font-size: 1rem;
    }
    
    .payment-icon span {
        font-size: 0.75rem;
    }
    
    .faq-section {
        padding: 100px 0;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .title-highlight {
        font-size: 1.1em;
    }
    
    .benefits-cta {
        margin-top: 40px;
    }
    
    .benefits-cta .cta-button {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .testimonial-card,
    .pricing-card {
        padding: 20px;
    }
    
    
    .testimonials-carousel {
        padding: 15px 0;
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .testimonials-track {
        padding: 0 20px;
    }
    
    .testimonial-card {
        flex: 0 0 320px;
        min-width: 320px;
        padding: 25px;
    }
    
    .testimonial-avatar {
        width: 45px;
        height: 45px;
    }
    
    .testimonial-avatar i {
        font-size: 16px;
    }
    
    .author-info h4 {
        font-size: 0.85rem;
    }
    
    .author-info span {
        font-size: 0.75rem;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
    }
    
    .stars {
        font-size: 0.9rem;
    }
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
}


/* Scroll suave */
html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--spain-red);
}

/* Seção de Garantia */
.guarantee-section {
    padding: 100px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(196, 30, 58, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.guarantee-abstract-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--spain-red), var(--spain-yellow), var(--spain-orange), transparent);
    height: 2px;
    opacity: 0.6;
    animation: lineMove 12s ease-in-out infinite;
    z-index: 1;
}

.guarantee-abstract-dot {
    position: absolute;
    background: var(--spain-red);
    border-radius: 50%;
    opacity: 0.2;
    animation: dotPulse 8s ease-in-out infinite;
    z-index: 1;
}

.guarantee-line-1 {
    top: 25%;
    left: 15%;
    width: 280px;
    transform: rotate(20deg);
    animation-delay: 1s;
}

.guarantee-line-2 {
    top: 65%;
    right: 20%;
    width: 220px;
    transform: rotate(-30deg);
    animation-delay: 4s;
}

.guarantee-line-3 {
    bottom: 20%;
    left: 25%;
    width: 180px;
    transform: rotate(50deg);
    animation-delay: 7s;
}

.guarantee-dot-1 {
    width: 7px;
    height: 7px;
    top: 20%;
    right: 30%;
    animation-delay: 1s;
}

.guarantee-dot-2 {
    width: 5px;
    height: 5px;
    top: 45%;
    left: 20%;
    animation-delay: 3s;
}

.guarantee-dot-3 {
    width: 9px;
    height: 9px;
    bottom: 35%;
    right: 25%;
    animation-delay: 5s;
}

.guarantee-dot-4 {
    width: 6px;
    height: 6px;
    top: 75%;
    left: 35%;
    animation-delay: 7s;
}


.guarantee-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.guarantee-text {
    text-align: left;
    position: relative;
    z-index: 3;
}

.guarantee-badge {
    display: inline-block;
    margin-bottom: 30px;
}

.guarantee-seal {
    max-width: 100px;
    height: auto;
    border-radius: 50%;
    transition: transform 0.3s ease;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 10;
}


.guarantee-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.guarantee-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 500;
}

.guarantee-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.guarantee-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.guarantee-feature i {
    color: #4ade80;
    font-size: 1.3rem;
}

.guarantee-image {
    text-align: center;
    position: relative;
    z-index: 15;
    width: 100%;
    height: auto;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-image {
    text-align: center;
    position: relative;
    z-index: 15;
    width: 100%;
    height: auto;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.guarantee-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 20;
}


/* Responsive para Garantia */
@media (max-width: 768px) {
    .guarantee-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .guarantee-text {
        text-align: center;
    }
    
    .guarantee-title {
        font-size: 2rem;
    }
    
    .guarantee-description {
        font-size: 1.1rem;
    }
}

