@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Sora:wght@100..800&display=swap');

:root {
    --primary-red: #CC1A0D;
    --dark-red: #B91C1C;
    --light-red: #FEF2F2;
    --primary-dark: #1a1a1a;
    --secondary-dark: #2d2d2d;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark-gray: #495057;
    --text-primary: #1a1a1a;
    --text-secondary: #64748B;
    --border-color: #E2E8F0;
    --background-primary: #FFFFFF;
    --background-secondary: #F8FAFC;
    
    --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-red: 0 4px 15px rgba(220, 38, 38, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background-primary);
    overflow-x: hidden;
}

/* Typography */
.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.text-red { color: var(--primary-red); }
.text-dark { color: var(--text-primary); }

/* Brand */
.brand-logo {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

/* Buttons */
.btn {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500;
    border-radius: 8px;
    padding: 12px 24px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center !important;
    gap: 8px;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.top-lp {
    padding: 10px 0;
    background: var(--primary-red);
    color: var(--white);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}

.btn-red {
    background:  var(--primary-red);
    color: var(--white);
    /* box-shadow: var(--shadow-red); */
}

.btn-red:hover {
    background:  #991B1B;
    transform: translateY(-2px);
    color: var(--white);
    /* box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4); */
}

.btn-red-light {
    background: #16A362;
    font-size: 16px !important;
    color: #fff;
    border: none;
}

.scafeli-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.scafeli-black {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.btn-red-light:hover {
     background: #16A362;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

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

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: var(--background-primary);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 10%, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    margin-bottom: 2rem;
}

.hero-badge {
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary-red);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2rem;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    letter-spacing: -1.6px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .hero-title {
        letter-spacing: -1px;
    }
}

.hero-title span {
    line-height: 1.4;
    color: var(--primary-red);
}



.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-subtitle strong {
    font-weight: 500 !important;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Form */
.hero-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-strong);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    max-width: 500px;
    width: 100%;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--dark-red));
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.form-subtitle {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--background-secondary);
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: var(--shadow-subtle);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-red);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--primary-red);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-red);
}

.feature-card h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}



.gallery-item img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.splide__arrow {
    background: #fff;
    border: none;
    opacity: 0.8;
}

.splide__arrow:hover {
    background: #fff;
    opacity: 1;
}

/* Benefit Cards */
.benefit-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-color);
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-red);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid var(--primary-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--primary-red);
}

.benefit-card h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

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

/* Stats Cards */
.stats-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-subtle);
    height: 100%;
}

.stats-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-red);
}

.stats-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-red);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-strong);
}

.form-control {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    background: var(--white);
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    color: var(--text-primary);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-secondary);
}

.form-label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-check-input:checked {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.form-check-label {
    color: var(--text-secondary);
}

/* FAQ */
.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-subtle);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.faq-item:hover {
    /* box-shadow: var(--shadow-medium); */
    /* border-color: var(--white); */
    border: 1px solid var(--border-color);
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.faq-answer.active {
    max-height: 300px;
    padding: 1.5rem;
}

/* Footer */
.footer {
    background: var(--text-primary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
    color: var(--white);
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

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

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

.social-links a:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-align: center;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-strong);
    border: none;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: var(--white);
}

.whatsapp-btn { 
    background: #16a362; 
    font-size: 24px;
}

.back-to-top { 
    background: var(--text-primary);
    opacity: 0.8;
}

.back-to-top:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-title { 
        font-size: 2.5rem; 
    }
    
    .brand-logo {
        font-size: 2.5rem;
    }
    
    .section-title { 
        font-size: 2rem; 
    }
    
    .section { 
        padding: 60px 0; 
    }
    
    .hero-actions { 
        justify-content: center;
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .floating-buttons { 
        bottom: 1rem; 
        right: 1rem; 
    }
    
    .floating-btn { 
        width: 50px; 
        height: 50px; 
        font-size: 1.2rem; 
    }
    
    .contact-form { 
        padding: 2rem; 
    }
    
    .benefit-card, .feature-card { 
        padding: 1.5rem; 
    }
    
    .form-container {
        padding: 2rem;
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title { 
        font-size: 2rem; 
    }
    
    .brand-logo {
        font-size: 2rem;
    }
    
    .section-title { 
        font-size: 1.75rem; 
    }
    
    .btn-lg { 
        padding: 12px 24px; 
        font-size: 1rem; 
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Scroll Animations */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Selection */
::selection {
    background: var(--primary-red);
    color: var(--white);
}

/* Focus States */
.btn:focus,
.form-control:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}





.thank-you-container {
position: relative;
z-index: 2;
}

.logo {
font-size: 4rem;
font-weight: 900;
color: white;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
margin-bottom: 2rem;
letter-spacing: -2px;
text-align: center;
}

.logo span {
color: var(--primary-red);
}

.success-icon {
font-size: 3rem;
color: #16A362;
text-align: center;
animation: bounce 2s infinite;
}

@keyframes bounce {
0%,
20%,
50%,
80%,
100% {
    transform: translateY(0);
}

40% {
    transform: translateY(-10px);
}

60% {
    transform: translateY(-5px);
}
}

.thank-you-title {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -1px;
    text-align: center;
    margin-bottom: 0;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.thank-you-subtitle {
    font-size: 16px;
    font-weight: 500 !important;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
    font-weight: 300;
}


.ty-whatsapp-btn {
background: #16A362;
font-size: 16px !important;
color: white;
text-decoration: none;
border-radius: 8px;
padding: 14px 26px;
display: inline-block;
}

.info-card {
background: rgba(255, 255, 255, 0.95);
color: #333;
border-radius: 20px;
padding: 3rem;
margin-bottom: 2rem;
box-shadow: 0px 10px 13px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
font-weight: 700;
margin-bottom: 1.5rem;
font-size: 1.8rem;
}


.step {
display: flex;
align-items: center;
margin-bottom: 1.5rem;
padding: 1rem;
background: var(--light-red);
border-radius: 10px;
border-left: 5px solid var(--primary-red);
}

.step-number {
background: var(--primary-red);
color: white;
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
margin-right: 1rem;
flex-shrink: 0;
}

.step-text {
font-size: 14px;
font-weight: 500;
}



.social-links {
text-align: center;
margin-top: 2rem;
}

.social-link {
color: white;
font-size: 2rem;
margin: 0 1rem;
transition: all 0.3s ease;
}

.social-link:hover {
color: var(--primary-red);
transform: translateY(-5px);
}

.countdown {
background: rgba(220, 38, 38, 0.9);
color: white;
padding: 1rem;
border-radius: 10px;
text-align: center;
margin: 2rem 0;
}

.countdown-timer {
font-size: 2rem;
font-weight: bold;
margin: 0.5rem 0;
}

.floating-elements {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
overflow: hidden;
}

.floating-element {
position: absolute;
color: rgba(255, 255, 255, 0.1);
font-size: 2rem;
animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
top: 20%;
left: 10%;
animation-delay: 0s;
}

.floating-element:nth-child(2) {
top: 60%;
right: 15%;
animation-delay: 2s;
}

.floating-element:nth-child(3) {
bottom: 30%;
left: 20%;
animation-delay: 4s;
}

@keyframes float {
0%,
100% {
    transform: translateY(0px) rotate(0deg);
}

50% {
    transform: translateY(-20px) rotate(180deg);
}
}

@media (max-width: 768px) {
.thank-you-title {
    font-size: 2.5rem;
}

.logo {
    font-size: 3rem;
}

.info-card {
    padding: 2rem;
}

.info-card h3 {
    font-size:20px;
}

.step {
    flex-direction: column;
    text-align: center;
}

.step-number {
    margin-bottom: 0.5rem;
    margin-right: 0;
    font-size: 12px;
}
}