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

:root {
  /* Paleta de colores actualizada */
  --primary: #5A5EBD;
  --secondary: #F7A9CB;
  --accent: #FFBA79;
  --background: #121227;
  --card: #1B1D38;
  --border: #1B1D38;
  --text: #FFFFFF;
  --text-muted: #BBBBE0;
  --text-gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);

  /* Tipografía */
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transiciones */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Sombras */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Gradientes */
  --hero-gradient: linear-gradient(135deg, #121227 0%, #1B1D38 50%, #121227 100%);
  --card-gradient: linear-gradient(135deg, rgba(90, 94, 189, 0.1) 0%, rgba(247, 169, 203, 0.1) 100%);
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utilidades */
.text-gradient {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(18, 18, 39, 0.95); /* Basado en tu nuevo fondo base (#121227) */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--background);
    transition: var(--transition);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    width: 32px;
    height: 32px;
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(110, 127, 232, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--hero-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.bg-circle-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.bg-circle-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary);
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.bg-circle-3 {
    width: 150px;
    height: 150px;
    background: var(--accent);
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: fadeInLeft 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(110, 127, 232, 0.1);
    
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.badge-icon {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(110, 127, 232, 0.3);
}

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

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

.btn-icon {
    width: 16px;
    height: 16px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.feature-icon {
    width: 12px;
    height: 12px;
    color: var(--primary);
}

.hero-image {
    display: flex;
    justify-content: center;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

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

.image-bg-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(110, 127, 232, 0.1) 0%, rgba(255, 162, 255, 0.1) 100%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.profile-image {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(110, 127, 232, 0.3);
}

.floating-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    z-index: 3;
    box-shadow: var(--shadow-lg);
}

.floating-logo {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.sparkles-icon {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 3s linear infinite, scale 2s ease-in-out infinite;
    z-index: 3;
    box-shadow: var(--shadow-lg);
}

.sparkles {
    width: 24px;
    height: 24px;
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

/* Section Numbers */
.section-number {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(110, 127, 232, 0.1);
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 1;
    line-height: 1;
}

/* Secciones generales */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Quién Soy Section */
.quien-soy {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(135deg, var(--background) 0%, var(--card) 50%, var(--background) 100%);
}

.quien-soy-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text);
}

.experience-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.experience-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--card);
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.experience-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(110, 127, 232, 0.1);
}

.experience-icon {
    width: 60px;
    height: 60px;
    background: rgba(110, 127, 232, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.experience-icon .icon {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.experience-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.experience-content p {
    color: var(--text-muted);
    line-height: 1.5;
}

/* Audiencia Section */
.audiencia {
    padding: 8rem 0;
    position: relative;
}

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

.audiencia-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out;
}

.audiencia-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(110, 127, 232, 0.1);
}

.audiencia-icon {
    width: 80px;
    height: 80px;
    background: rgba(110, 127, 232, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.audiencia-icon .icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.audiencia-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.audiencia-card p {
    color: var(--text-muted);
    line-height: 1.5;
}

/* Servicios Section */
.servicios {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(135deg, var(--background) 0%, var(--card) 50%, var(--background) 100%);
}

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

.servicio-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.8s ease-out;
}

.servicio-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(110, 127, 232, 0.1);
}

.servicio-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--card) 0%, rgba(110, 127, 232, 0.05) 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

.servicio-icon {
    width: 80px;
    height: 80px;
    background: rgba(110, 127, 232, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.servicio-icon .icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.servicio-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.servicio-card > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.servicio-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.servicio-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.check-icon {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

.servicio-btn {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    margin-top: auto;
}

.servicio-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(110, 127, 232, 0.3);
}

/* Testimonios Section */
.testimonios {
    padding: 8rem 0;
    position: relative;
}

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

.testimonio-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out;
}

.testimonio-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(110, 127, 232, 0.1);
}

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

.testimonio-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text);
    font-style: italic;
}

.testimonio-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.author-info h4 {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.testimonio-results {
    padding: 1rem;
    background: rgba(110, 127, 232, 0.05);
    border-radius: 0.5rem;
    text-align: center;
}

.result-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.875rem;
    color: var(--primary);
}

/* Contacto Section */
.contacto {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--background) 0%, var(--card) 50%, var(--background) 100%);
}

.contacto-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Contact Form Styles */
.contact-form {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 1rem;
}

.form-container {
    width: 100%;
    height: 700px; /* Adjust height as needed */
    overflow: hidden;
    border-radius: 0.75rem;
}

.form-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
}

/* ========================================
RESPONSIVE DESIGN - MOBILE
======================================== */

/* Header responsivo */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--background);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
        padding: 12px; /* Añadido espacio alrededor */
    }

    /* Solución para la X visible */
    .nav-toggle span {
        position: relative;
        display: block;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        left: 3px;
        top: 10px;
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        left: 3px;
        top: 10px;
    }

    .nav-link {
        font-size: 1.5rem;
        color: var(--text);
    }

    .nav-cta {
        font-size: 1.25rem;
        padding: 1rem 2rem;
    }

    /* Hero Section */
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        align-items: center;
    }

    .profile-image {
        width: 250px;
        height: 250px;
    }

    .image-bg-circle {
        width: 300px;
        height: 300px;
    }

    /* Secciones generales */
    .section-title {
        font-size: 2.5rem;
    }

    .section-description {
        font-size: 1.125rem;
    }

    /* Grids responsivos */
    .audiencia-grid,
    .servicios-grid,
    .testimonios-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .experience-points {
        gap: 1.5rem;
    }

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

    /* Contacto */
    .contacto-content {
        grid-template-columns: 1fr;
    }
}

.redes-sociales {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
}

.redes-sociales h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.redes-sociales p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

.red-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(110, 127, 232, 0.1);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
}

.red-social:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(110, 127, 232, 0.1);
}

.red-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.red-social span {
    font-size: 0.875rem;
    font-weight: 500;
}
/* ========================================
MEDIA QUERIES RESPONSIVE
======================================== */

/* Tablets grandes (1024px y menos) */
@media screen and (max-width: 1024px) {
.container {
padding: 0 1rem;
}

/* Hero ajustes menores */
.hero-content {
    gap: 3rem;
}

.hero-title {
    font-size: 3rem;
}

.hero-description {
    font-size: 1.125rem;
}

.image-bg-circle {
    width: 350px;
    height: 350px;
}

.profile-image {
    width: 280px;
    height: 280px;
}
}

/* Tablets (768px y menos) */
@media screen and (max-width: 768px) {
/* Header Mobile */
.nav {
position: relative;
}

.nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(32, 35, 42, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

.nav-menu.active {
    left: 0;
}

.nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.nav-menu.active .nav-link {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInMenuItem 0.3s ease forwards;
}

.nav-menu.active .nav-link:nth-child(1) { animation-delay: 0.1s; }
.nav-menu.active .nav-link:nth-child(2) { animation-delay: 0.2s; }
.nav-menu.active .nav-link:nth-child(3) { animation-delay: 0.3s; }
.nav-menu.active .nav-link:nth-child(4) { animation-delay: 0.4s; }

.nav-cta {
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.nav-menu.active .nav-cta {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInMenuItem 0.3s ease forwards;
    animation-delay: 0.5s;
}

/* Hamburger Menu */
.nav-toggle {
    display: flex;
    z-index: 1002;
    transition: var(--transition);
    padding: 12px; /* Añadido espacio alrededor */
}

/* Solución para la X visible */
.nav-toggle span {
    position: relative;
    display: block;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    left: 3px;
    top: 10px;
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    left: 3px;
    top: 10px;
}

/* Hero Mobile */
.hero {
    padding-top: 80px;
    min-height: auto;
    padding-bottom: 4rem;
}

.hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
}

.hero-text {
    order: 2;
}

.hero-image {
    order: 1;
}

.hero-badge {
    justify-content: center;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    justify-content: center;
    gap: 1rem;
}

.btn {
    padding: 1rem 1.5rem;
}

.hero-features {
    align-items: center;
    margin-bottom: 2rem;
}

.feature {
    justify-content: center;
}

/* Background circles ajuste */
.bg-circle-1 {
    width: 200px;
    height: 200px;
    top: 5%;
    left: -10%;
}

.bg-circle-2 {
    width: 150px;
    height: 150px;
    top: 70%;
    right: -10%;
}

.bg-circle-3 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    left: 50%;
}

/* Image adjustments */
.image-bg-circle {
    width: 280px;
    height: 280px;
}

.profile-image {
    width: 220px;
    height: 220px;
}

.floating-icon {
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
}

.floating-logo {
    width: 20px;
    height: 20px;
}

.sparkles-icon {
    width: 40px;
    height: 40px;
    bottom: -8px;
    right: -8px;
}

.sparkles {
    width: 20px;
    height: 20px;
}
}

/* Móviles (480px y menos) */
@media screen and (max-width: 480px) {
.container {
padding: 0 0.75rem;
}

/* Header ajustes móviles pequeños */
.nav {
    padding: 0.75rem 1rem;
}

.brand-text {
    font-size: 1.125rem;
}

.logo {
    width: 28px;
    height: 28px;
}

.nav-toggle span {
    width: 22px;
    height: 2.5px;
}

/* Hero móviles pequeños */
.hero {
    padding-top: 70px;
}

.hero-content {
    gap: 2rem;
}

.hero-badge {
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    width: 100%;
    max-width: 280px;
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
    justify-content: center;
}

.hero-features {
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature {
    font-size: 0.8125rem;
}

.feature-icon {
    width: 10px;
    height: 10px;
}

/* Image mobile */
.image-bg-circle {
    width: 220px;
    height: 220px;
}

.profile-image {
    width: 180px;
    height: 180px;
}

.floating-icon {
    width: 45px;
    height: 45px;
    bottom: 8px;
    right: 8px;
}

.floating-logo {
    width: 18px;
    height: 18px;
}

.sparkles-icon {
    width: 36px;
    height: 36px;
    bottom: -6px;
    right: -6px;
}

.sparkles {
    width: 18px;
    height: 18px;
}

/* Scroll indicator */
.scroll-indicator {
    bottom: 1rem;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
}

/* Background circles mobile */
.bg-circle-1 {
    width: 150px;
    height: 150px;
}

.bg-circle-2 {
    width: 100px;
    height: 100px;
}

.bg-circle-3 {
    width: 80px;
    height: 80px;
}
}

/* Móviles muy pequeños (360px y menos) */
@media screen and (max-width: 360px) {
.container {
padding: 0 0.5rem;
}

.nav {
    padding: 0.625rem 0.75rem;
}

.brand-text {
    font-size: 1rem;
}

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

.hero-description {
    font-size: 0.875rem;
}

.btn {
    max-width: 250px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
}

.image-bg-circle {
    width: 200px;
    height: 200px;
}

.profile-image {
    width: 160px;
    height: 160px;
}
}

/* ========================================
ANIMACIONES RESPONSIVE
======================================== */

@keyframes fadeInMenuItem {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes fadeInLeft {
from {
opacity: 0;
transform: translateX(-50px);
}
to {
opacity: 1;
transform: translateX(0);
}
}

@keyframes fadeInRight {
from {
opacity: 0;
transform: translateX(50px);
}
to {
opacity: 1;
transform: translateX(0);
}
}

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

@keyframes float {
0%, 100% {
transform: translateY(0px);
}
50% {
transform: translateY(-20px);
}
}

@keyframes pulse {
0%, 100% {
transform: scale(1);
opacity: 0.1;
}
50% {
transform: scale(1.05);
opacity: 0.15;
}
}

@keyframes bounce {
0%, 20%, 53%, 80%, 100% {
transform: translateX(-50%) translateY(0);
}
40%, 43% {
transform: translateX(-50%) translateY(-10px);
}
70% {
transform: translateX(-50%) translateY(-5px);
}
90% {
transform: translateX(-50%) translateY(-2px);
}
}

@keyframes rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}

@keyframes scale {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
}

/* ========================================
UTILIDADES RESPONSIVE
======================================== */

/* Ocultar elementos en móvil si es necesario */
@media screen and (max-width: 768px) {
.desktop-only {
display: none !important;
}
}

/* Mostrar solo en móvil */
.mobile-only {
display: none !important;
}

@media screen and (max-width: 768px) {
.mobile-only {
display: block !important;
}
}

/* Texto centrado en móvil */
@media screen and (max-width: 768px) {
.mobile-center {
text-align: center !important;
}
}

    /* Padding y márgenes ajustados para móvil */
    .container {
        padding: 0 1rem;
    }

    .quien-soy,
    .audiencia,
    .servicios,
    .testimonios,
    .contacto {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    /* Botones responsivos */
    .btn {
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    /* Tarjetas responsivas */
    .audiencia-card,
    .servicio-card,
    .testimonio-card {
        padding: 1.5rem;
    }

    /* Iconos más pequeños en móvil */
    .audiencia-icon,
    .servicio-icon {
        width: 60px;
        height: 60px;
    }

    .audiencia-icon .icon,
    .servicio-icon .icon {
        width: 24px;
        height: 24px;
    }

    /* Formulario de contacto */
    .form-container {
        height: 500px;
    }
}

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content {
        gap: 3rem;
    }

    .hero-title {
        font-size: 3rem;
    }

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

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

/* Mejoras para iconos Lucide */
[data-lucide] {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 2;
    stroke: currentColor;
    fill: none;
}

/* Asegurar que los iconos se vean correctamente */
.badge-icon,
.btn-icon,
.feature-icon,
.check-icon,
.scroll-arrow,
.sparkles {
    flex-shrink: 0;
}

/* Fix para iconos en móvil */
@media (max-width: 768px) {
    [data-lucide] {
        width: 1.2em;
        height: 1.2em;
    }
    
    .badge-icon {
        width: 18px;
        height: 18px;
    }
    
    .btn-icon {
        width: 18px;
        height: 18px;
    }
    
    .feature-icon {
        width: 14px;
        height: 14px;
    }
    
    .check-icon {
        width: 18px;
        height: 18px;
    }
}
