/* Variables globales */
:root {
    /* Colores */
    --color-primary: #1a1a1a;
    --color-accent: #6366f1;
    --color-accent-light: #8b5cf6;
    --color-text: #1a1a1a;
    --color-text-light: #94a3b8;
    --color-text-secondary: #64748b;
    --color-background: #ffffff;
    --color-background-alt: #f8fafc;
    --color-border: #e2e8f0;
    --color-dark: #2d3436;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Header y Navegación */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav__logo-img {
    height: 60px; /* Ajusta este valor según el tamaño que necesites */
    width: auto;
    object-fit: contain;
}

/* Asegurarse que el logo se ve bien en móvil */
@media (max-width: 768px) {
    .nav__logo-img {
        height: 35px; /* Ligeramente más pequeño en móvil */
    }
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav__link:hover,
.nav__link--active {
    color: var(--color-accent);
}

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

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

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

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__description {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.btn--primary::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;
}

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

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn--secondary {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn--secondary:hover {
    background: var(--color-accent);
    color: white;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--color-background);
}

.services__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

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

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--color-background);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.service-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--color-accent);
}

.service-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.service-card__description {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.service-card__features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-card__feature {
    padding: 0.5rem 0;
    color: var(--color-text-secondary);
}

.service-card__feature::before {
    content: '✓';
    color: #10b981;
    margin-right: 0.5rem;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
    }

    .nav__menu.active {
        display: flex;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
}

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

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

/* Modifica en el archivo styles.css */

/* Contact Hero Section */
.contact-hero {
    padding: 120px 20px 100px; /* Aumentamos el padding superior */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 90px; /* Añadimos margin-top */
}

/* Asegurarnos que funciona bien en todos los tamaños de pantalla */
@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 20px 80px; /* Ajustamos el padding para móvil */
        margin-top: 60px; /* Ajustamos el margin para móvil */
    }
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="600" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.2;
}

.contact-hero__container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-hero__description {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--color-background);
}

.contact__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

/* Contact Information */
.contact__info {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.contact__info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.contact__info-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.contact__info-description {
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
}

.contact__info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    width: 100%;
    max-width: 500px; /* Ajusta este valor según necesites */
}

.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact__info-item:last-child {
    border-bottom: none;
}

.contact__info-item .icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    color: var(--color-primary, #6366f1);
}

.contact__info-item div {
    flex: 1;
}

.contact__info-item h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #333;
}

.contact__info-item a,
.contact__info-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
    word-break: break-word; /* Para que el email largo se ajuste */
    line-height: 1.4;
    text-decoration: none;
}

.contact__info-item a:hover {
    color: var(--color-primary, #6366f1);
}

/* Responsive */
@media (max-width: 768px) {
    .contact__info-list {
        padding: 20px;
    }

    .contact__info-item {
        padding: 15px;
    }

    .contact__info-item h3 {
        font-size: 1rem;
    }

    .contact__info-item a,
    .contact__info-item p {
        font-size: 0.9rem;
    }
}

/* Contact Form */
.contact__form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--color-border);
}

.form {
    display: grid;
    gap: 1.5rem;
}

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

.form__label {
    font-weight: 500;
    color: var(--color-primary);
}

.form__input,
.form__select,
.form__textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--color-background-alt);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form__textarea {
    min-height: 120px;
    resize: vertical;
}

.form__checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.form__checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    cursor: pointer;
}

.form__checkbox a {
    color: var(--color-accent);
    text-decoration: underline;
}

.form__submit {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form__submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero__title {
        font-size: 2.5rem;
    }

    .contact__info,
    .contact__form {
        padding: 1.5rem;
    }

    .contact {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .contact-hero__title {
        font-size: 2rem;
    }

    .contact__social-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .form__submit {
        width: 100%;
    }
}

/* About Hero Section */
.about-hero {
    padding: 120px 20px 100px; /* Aumentamos el padding superior */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 90px; /* Añadimos margin-top */
}

/* Asegurarnos que funciona bien en todos los tamaños de pantalla */
@media (max-width: 768px) {
    .about-hero {
        padding: 100px 20px 80px; /* Ajustamos el padding para móvil */
        margin-top: 60px; /* Ajustamos el margin para móvil */
    }
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="600" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.2;
}

.about-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero__description {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Mission Section */
.mission {
    padding: 100px 0;
    background: var(--color-background-alt);
}

.mission__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.mission__content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mission__content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mission__content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.mission__title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.mission__text {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: white;
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member__image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.team-member__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-member:hover .team-member__image img {
    transform: scale(1.1);
}

.team-member__name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.team-member__role {
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member__bio {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Values Section */
.values {
    padding: 100px 0;
    background: var(--color-background-alt);
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.value:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--color-accent);
}

.value__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.value__description {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Timeline Section */
.timeline {
    padding: 100px 0;
    position: relative;
}

.timeline__content {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline__content::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--gradient);
}

.timeline__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline__date {
    text-align: right;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    padding-right: 2rem;
}

.timeline__info {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
}

.timeline__info::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 100%;
    border: 10px solid transparent;
    border-right-color: white;
    transform: translateY(-50%);
}

.timeline__info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.timeline__info p {
    color: var(--color-text-secondary);
}


/* Services Hero Section */
.services-hero {
    padding: 120px 20px 100px; /* Aumentamos el padding superior */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 90px; /* Añadimos margin-top */
}

/* Asegurarnos que funciona bien en todos los tamaños de pantalla */
@media (max-width: 768px) {
    .services-hero {
        padding: 100px 20px 80px; /* Ajustamos el padding para móvil */
        margin-top: 60px; /* Ajustamos el margin para móvil */
    }
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="600" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.2;
}

.services-hero__container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-hero__description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-hero__trial {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.services-hero__trial-badge {
    background: #10b981;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.services-hero__trial-text {
    font-size: 1rem;
}

/* Service Plans Section */
.service-plans {
    padding: 100px 0;
    background: var(--color-background);
}

.service-plans__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-plans__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Plan Cards */
.plan-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.plan-card--featured {
    background: var(--gradient);
    color: white;
    transform: scale(1.05);
}

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

.plan-card__badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: #10b981;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plan-card__description {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.plan-card__pricing {
    text-align: center;
    margin-bottom: 0.5rem;
}

.plan-card__price {
    font-size: 3rem;
    font-weight: 700;
}

.plan-card__period {
    font-size: 0.875rem;
    opacity: 0.8;
}

.plan-card__annual {
    text-align: center;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    color: #10b981;
}

.plan-card--featured .plan-card__annual {
    color: rgba(255, 255, 255, 0.9);
}

.plan-card__features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-card__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.plan-card__feature::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: 50%;
    font-size: 0.75rem;
}

.plan-card--featured .plan-card__feature::before {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.plan-card__cta {
    width: 100%;
    text-align: center;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn--primary.plan-card__cta {
    background: var(--gradient);
    color: white;
    border: none;
}

.btn--secondary.plan-card__cta {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.plan-card--featured .btn--primary.plan-card__cta {
    background: white;
    color: var(--color-accent);
}

.plan-card__cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.cta__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta__description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

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

.btn--outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn--outline-white:hover {
    background: white;
    color: var(--color-accent);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-plans__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plan-card--featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .service-plans__grid {
        grid-template-columns: 1fr;
    }

    .plan-card--featured {
        grid-column: auto;
        transform: none;
    }

    .plan-card--featured:hover {
        transform: translateY(-5px);
    }

    .cta__actions {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .services-hero__title {
        font-size: 2rem;
    }

    .plan-card {
        padding: 1.5rem;
    }

    .plan-card__price {
        font-size: 2.5rem;
    }
}

/* Modifica/añade estas propiedades al CSS existente */
.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: auto; /* Esto empujará el menú hacia la derecha */
}

/* Ajusta el responsive para mantener el alineamiento */
@media (max-width: 768px) {
    .nav__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
        margin-left: 0; /* Reset margin for mobile */
    }

    .nav__menu.active {
        display: flex;
    }
}

/* Estilos para el botón hamburguesa */
.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.nav__toggle-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animación del botón hamburguesa cuando está activo */
.nav__toggle.active .nav__toggle-line:first-child {
    transform: translateY(9px) rotate(45deg);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-line:last-child {
    transform: translateY(-9px) rotate(-45deg);
}

/* Estilos del menú móvil */
@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        display: none;
        position: fixed;
        top: 80px; /* Altura del header */
        right: 0;
        width: 250px; /* Ancho del menú lateral */
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        transform: translateX(100%);
    }

    .nav__menu.active {
        display: flex;
        transform: translateX(0);
    }

    .nav__item {
        margin: 1rem 0;
    }

    .nav__link {
        font-size: 1.1rem;
        display: block;
        padding: 0.5rem 0;
    }
}

/* Footer Styles */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 40px 0 20px;
}

.footer__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer__content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer__brand {
    max-width: 320px;
}

.footer__logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 20px;
    display: inline-block;
}

.footer__description {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer__social {
    display: flex;
    gap: 15px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

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

.footer__heading {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__list li {
    margin-bottom: 12px;
}

.footer__link {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: var(--gradient);
}

.footer__list--contact .footer__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.icon--small {
    width: 20px;
    height: 20px;
}

.footer__bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__copyright {
    color: #a0a0a0;
    margin: 0;
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer__legal-link {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__legal-link:hover {
    color: var(--color-background);
}

.footer__separator {
    color: #a0a0a0;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__brand {
        max-width: 100%;
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 20px;
    }

    .footer__links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

    .footer__legal {
        flex-direction: column;
        gap: 10px;
    }

    .footer__separator {
        display: none;
    }
}

@media (max-width: 576px) {
    .footer__links {
        grid-template-columns: 1fr;
    }

    .footer__column {
        text-align: center;
    }

    .footer__list--contact .footer__contact-item {
        justify-content: center;
    }
}

/* Beneficios Section */
.benefits {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefit {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
}

.benefit__icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit__icon .icon {
    width: 30px;
    height: 30px;
    color: white;
}

.benefit__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.benefit__description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .benefits {
        padding: 60px 0;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .benefits__grid {
        grid-template-columns: 1fr;
    }

    .benefit {
        padding: 25px;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

/* Process Section */
.process {
    padding: 80px 0;
    background-color: #ffffff;
}

.process__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process__timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.process__timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    z-index: 1;
}

.process__step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.process__step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.process__step-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.process__step-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonials__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin: 0;
}

.testimonial__text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial__footer {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial__author {
    font-style: normal;
    font-weight: 600;
    color: var(--color-dark);
}

.testimonial__role {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Responsive Design */
@media (max-width: 992px) {
    .process__timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .process__timeline::before {
        display: none;
    }

    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process,
    .testimonials {
        padding: 60px 0;
    }

    .process__step-number {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .process__timeline,
    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .testimonial {
        padding: 25px;
    }
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: var(--gradient);
    color: white;
}

.stats__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.stat__label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 992px) {
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

@media (max-width: 576px) {
    .stats__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat__number {
        font-size: 2rem;
    }

    .stat__label {
        font-size: 0.9rem;
    }
}

/* Contact Social Links */
.contact__social {
    margin-top: 2rem;
}

.contact__social-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.contact__social-links {
    display: flex;
    gap: 1.5rem;
}

.contact__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.contact__social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact__social-link .icon {
    width: 24px;
    height: 24px;
}

/* Colores específicos para cada red social al hover */
.contact__social-link[aria-label="WhatsApp"]:hover {
    background: #25D366;
}

.contact__social-link[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.contact__social-link[aria-label="X (Twitter)"]:hover {
    background: #000000;
}

/* Responsive */
@media (max-width: 768px) {
    .contact__social-links {
        justify-content: center;
    }
}