/* Reset y variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pink-500: #ec4899;
    --pink-600: #db2777;
    --pink-50: #fdf2f8;
    --pink-100: #fce7f3;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-900: #111827;
    --green-500: #10b981;
    --white: #ffffff;
    --border-color: #e5e7eb;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.textlink{
    text-decoration: none;
    color: white;
}
.textlink2{
    text-decoration: none;
    color : #db2777;
}
/* Utilidades */
.text-pink { color: var(--pink-500); }
.text-green { color: var(--green-500); }

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    background: none;
}

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

.btn-primary:hover {
    background-color: var(--pink-600);
    border-color: var(--pink-600);
}

.btn-outline {
    border-color: var(--border-color);
    color: var(--gray-600);
}

.btn-outline:hover {
    background-color: var(--gray-50);
}

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

.btn-white:hover {
    background-color: var(--gray-100);
}

.btn-large {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Header */
.header {
    border-bottom: 1px solid var(--border-color);
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: bold;
}

.nav-menu {
    display: none;
    gap: 1.5rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--pink-500);
}

.nav-buttons {
    display: none;
    gap: 1rem;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
    
    .nav-buttons {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, var(--white), var(--pink-50));
    padding: 5rem 0;
}

.hero-content {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.hero-title {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-image {
    display: flex;
    justify-content: center;
}


.hero-video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: none;
}

.hero-img {
    width: 100%;
    height: 400px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
}

/* App Preview Section */
.app-preview {
    padding: 4rem 0;
    background-color: var(--white);
}

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

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.preview-item {
    margin-bottom: 4rem;
}

.preview-content {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.preview-text {
    order: 1;
}

.preview-image {
    order: 2;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background-color: var(--pink-500);
    color: var(--white);
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 1rem;
}

.preview-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.preview-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.screenshot {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

@media (min-width: 1024px) {
    .preview-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .preview-item.reverse .preview-text {
        order: 2;
    }
    
    .preview-item.reverse .preview-image {
        order: 1;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Final CTA */
.final-cta {
    text-align: center;
    margin-top: 3rem;
}

.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #dcfce7;
    color: #166534;
    border-radius: 9999px;
    font-weight: 500;
    margin-bottom: 1rem;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: var(--gray-50);
}

.features-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: var(--pink-100);
    color: var(--pink-500);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: var(--gray-500);
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 0;
    background-color: var(--white);
}

.steps-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

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

.step-number-large {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: var(--pink-500);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step-description {
    color: var(--gray-500);
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background-color: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.testimonial-event {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.testimonial-text {
    color: var(--gray-600);
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background-color: var(--pink-500);
    color: var(--white);
}

.cta-content {
    text-align: center;
}

.cta-section .cta-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-section .cta-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .cta-section .cta-title {
        font-size: 3rem;
    }
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    background-color: var(--white);
    padding: 2rem 0;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-title {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--pink-500);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--gray-500);
}

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

.social-link {
    color: var(--gray-500);
    font-size: 1.25rem;
    transition: color 0.2s;
}

.social-link:hover {
    color: var(--pink-500);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 767px) {
    .hero-buttons {
        align-items: stretch;
    }
    
    .btn {
        justify-content: center;
    }
}