:root {
    --pink: #FF4081;
    --yellow: #FFD600;
    --orange: #FF6E40;
    --white: #FFFFFF;
    --light-grey: #F5F5F5;
    --dark: #333333;
    --grey: #666666;
    --wa-green: #25D366;
    
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-hover: 0 15px 40px rgba(255, 64, 129, 0.2);
    --transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-gradient {
    background: linear-gradient(90deg, var(--pink), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-pink { color: var(--pink); }
.text-orange { color: var(--orange); }
.text-yellow { color: var(--yellow); }

.bg-light { background-color: var(--light-grey); }
.bg-pink { background-color: var(--pink); color: white; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--pink);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 64, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 64, 129, 0.4);
}

.btn-primary-wa {
    background-color: var(--wa-green);
    color: white;
    width: 100%;
}

.btn-secondary {
    background-color: var(--yellow);
    color: var(--dark);
}

.btn-outline {
    border: 2px solid var(--pink);
    color: var(--pink);
}

.btn-white {
    background-color: white;
    color: var(--pink);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
.header {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px !important; /* Forzar altura */
    width: auto !important;
    max-width: 200px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

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

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

.nav-desktop a {
    margin-left: 25px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
}

/* Hero */
.hero {
    padding: 80px 0;
    background: radial-gradient(circle at top right, rgba(255, 214, 0, 0.1), transparent),
                radial-gradient(circle at bottom left, rgba(255, 64, 129, 0.05), transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge {
    background: rgba(255, 64, 129, 0.1);
    color: var(--pink);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--grey);
    margin-bottom: 30px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.trust-item {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.hero-ctas {
    display: flex;
    gap: 15px;
}

.image-wrapper {
    position: relative;
}

.img-main {
    width: 100%;
    border-radius: 30px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

.floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    font-weight: 700;
}

/* Gallery */
.gallery { padding: 100px 0; }
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 64, 129, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

/* Benefits */
.benefits { padding: 100px 0; }
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-list {
    list-style: none;
    margin-top: 30px;
}

.benefits-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-box {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
}

.benefits-list h3 { font-size: 1.25rem; margin-bottom: 5px; }
.benefits-list p { color: var(--grey); }

.bordered-img {
    width: 100%;
    border-radius: 30px;
    border: 10px solid white;
    box-shadow: var(--shadow);
}

/* Packages */
.packages { padding: 100px 0; }
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.package-card.featured {
    border: 2px solid var(--pink);
    transform: scale(1.05);
    z-index: 10;
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-tag {
    background: var(--light-grey);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}

.package-tag-popular {
    background: var(--pink);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}

.package-desc { margin: 15px 0; color: var(--grey); }

.package-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
    flex-grow: 1;
}

.package-features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.package-features li::before {
    content: "✅";
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

/* How it works */
.how-it-works { padding: 100px 0; }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.step-num {
    width: 50px;
    height: 50px;
    background: var(--pink);
    color: white;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

/* Testimonials */
.testimonials { padding: 100px 0; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.rating { color: #FFB300; margin-bottom: 15px; }

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.user { border-top: 1px solid rgba(0,0,0,0.05); padding-top: 15px; }

.user strong { display: block; }
.user span { font-size: 0.85rem; color: var(--grey); }

/* Urgency */
.urgency { padding: 60px 0; }
.urgency h2 { font-size: 2.2rem; margin-bottom: 15px; }
.urgency p { font-size: 1.1rem; }

/* Contact */
.contact { padding: 100px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 { font-size: 3rem; margin-bottom: 20px; }
.micro-trust { margin-top: 30px; }
.micro-trust p { font-weight: 600; margin-bottom: 10px; }

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; }

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(255, 64, 129, 0.1);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-logo { font-size: 2rem; }
.footer-logo span { color: var(--pink); }

.footer-links { display: flex; gap: 60px; }
.footer-col h4 { margin-bottom: 20px; color: var(--pink); }
.footer-col p { opacity: 0.7; margin-bottom: 10px; }

.social-links a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    margin-right: 15px;
    opacity: 0.7;
    transition: 0.3s;
}

.social-links a:hover { opacity: 1; color: var(--pink); }

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    font-size: 0.85rem;
    opacity: 0.4;
}

/* Sticky CTA & Float */
.sticky-cta-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 20px;
    background: white;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none; /* Mobile Only Logic */
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.btn-primary-wa {
    background-color: var(--wa-green);
    color: white;
    width: 100%;
    animation: pulse-wa 2s infinite;
}

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

.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--wa-green);
    border-radius: 50%;
    display: flex; /* Desktop only logic in media query */
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: var(--transition);
}

.wa-float:hover { transform: scale(1.1) rotate(5deg); }
.wa-float img { width: 35px; height: 35px; }

/* Form Feedback */
.form-feedback {
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    min-height: 20px;
}

.form-feedback.error { color: #d32f2f; }
.form-feedback.success { color: #2e7d32; }

/* Micro Copy Hero */
.micro-copy-hero {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--grey);
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Mobile Responsive */
@media (max-width: 992px) {
    .container { width: 92%; }
    
    .hero-grid, .grid-2, .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image { order: -1; margin-bottom: 20px; }
    .hero h1 { font-size: 2.5rem; }
    
    .gallery-grid, .packages-grid, .steps-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-ctas, .hero-trust, .micro-copy-hero { justify-content: center; }
    
    .nav-desktop { display: none; }
    
    .logo-img {
        height: 40px !important;
        max-width: 150px;
    }

    .sticky-cta-mobile { display: block; }
    .wa-float { display: none; }
    
    section { padding: 60px 0; }
    .contact-form-wrapper { padding: 25px; }
}

@media (max-width: 768px) {
    .section-header h2 { font-size: 1.8rem; }
    .footer-content { flex-direction: column; gap: 40px; }
    .hero-ctas { flex-direction: column; }
    .btn-lg { width: 100%; }
}
