/* ============================================
   VARIABLES CSS
   ============================================ */
:root {
    /* Colores principales */
    --color-primary: #D4AF37; /* Dorado */
    --color-secondary: #7B68EE; /* Azul/Morado */
    --color-bg-dark: #0f172a; /* Fondo oscuro principal */
    --color-bg-darker: #111827; /* Fondo más oscuro */
    --color-bg-header: #0a0a0a; /* Fondo header */
    --color-text-white: #FFFFFF;
    --color-text-gray: #B8B8B8;
    
    /* Espaciados */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Tipografía */
    --font-headings: 'Libre Baskerville', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-base: 16px;
    --font-size-sm: 0.875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3rem;
    --font-size-5xl: 3.5rem;
    
    /* Breakpoints (para referencia) */
    --breakpoint-tablet: 768px;
    --breakpoint-desktop: 1024px;
    --breakpoint-wide: 1440px;
    
    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   RESET Y BASE STYLES
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-white);
    background: 
        linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%),
        linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-darker) 100%);
    background-attachment: fixed;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.header__logo-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: opacity var(--transition-fast);
}

.header__logo-link:hover {
    opacity: 0.8;
}

.header__logo {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.header__logo-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header__brand {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.header__brand-name {
    font-family: var(--font-headings);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-text-white);
    line-height: 1.2;
}

.header__brand-title {
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: 400;
    color: var(--color-text-gray);
    line-height: 1.2;
}

/* Navigation */
.header__nav {
    display: none;
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.header__nav-link {
    font-size: var(--font-size-md);
    color: var(--color-text-white);
    transition: color var(--transition-fast);
    position: relative;
    padding: var(--spacing-xs) 0;
}

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

.header__nav-link:hover,
.header__nav-link--active {
    color: var(--color-primary);
}

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

/* Mobile Menu Button */
.header__menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--spacing-xs);
    z-index: 1001;
}

.header__menu-icon {
    width: 25px;
    height: 2px;
    background-color: var(--color-text-white);
    transition: all var(--transition-normal);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(80px + var(--spacing-lg)) var(--spacing-md) var(--spacing-xl);
    position: relative;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero__title {
    font-family: var(--font-headings);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-white);
}

.hero__title-text {
    color: var(--color-text-white);
}

.hero__title-text--entrepreneur {
    background: linear-gradient(90deg, #F4D03F 0%, #D4AF37 50%, #F9E79F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero__title-text--business {
    background: linear-gradient(90deg, #7B68EE 0%, #9370DB 50%, #8A7FE8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: var(--font-size-lg);
    font-weight: 400;
    color: var(--color-text-gray);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    animation: fadeInUp 0.8s ease 0.7s both;
}

.hero__scroll {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--color-text-gray);
    transition: all var(--transition-normal);
    animation: bounce 2s infinite;
    margin-top: var(--spacing-lg);
}

.hero__scroll:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(5px);
}

.hero__scroll-icon {
    width: 24px;
    height: 24px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: var(--spacing-xxl) var(--spacing-md);
}

.services__container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.services__card {
    position: relative;
    min-height: 600px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-normal);
}

.services__card:hover {
    transform: translateY(-10px);
}

/* Tarjeta Empresarios - Imagen de fondo */
.services__card--business {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1560250097-0b93528c311a?q=80&w=1000') center/cover no-repeat;
}

/* Tarjeta Emprendedores - Imagen de fondo */
.services__card--entrepreneur {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=1000') center/cover no-repeat;
}

.services__card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.services__card-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-xl);
    text-align: center;
    max-width: 500px;
}

/* Icon */
.services__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    transition: transform var(--transition-normal);
}

.services__card:hover .services__icon {
    transform: scale(1.1) rotate(5deg);
}

.services__icon--business {
    background: linear-gradient(135deg, #F4D03F 0%, #D4AF37 100%);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.services__icon--entrepreneur {
    background: linear-gradient(135deg, #7B68EE 0%, #9370DB 100%);
    box-shadow: 0 10px 30px rgba(123, 104, 238, 0.3);
}

.services__icon-svg {
    color: var(--color-bg-dark);
}

/* Title */
.services__title {
    font-family: var(--font-headings);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
}

.services__title--business {
    background: linear-gradient(90deg, #F4D03F 0%, #D4AF37 50%, #F9E79F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services__title--entrepreneur {
    background: linear-gradient(90deg, #7B68EE 0%, #9370DB 50%, #8A7FE8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.services__description {
    font-family: var(--font-body);
    font-size: var(--font-size-md);
    color: var(--color-text-gray);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

/* Features List */
.services__features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.services__feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: var(--font-body);
    font-size: var(--font-size-md);
    color: var(--color-text-white);
}

.services__feature-icon {
    flex-shrink: 0;
    color: var(--color-primary);
}

.services__card--entrepreneur .services__feature-icon {
    color: var(--color-secondary);
}

.services__feature-text {
    text-align: left;
}

/* Button */
.services__btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: var(--font-size-md);
    font-weight: 600;
    color: var(--color-bg-dark);
    transition: all var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.services__btn--business {
    background: linear-gradient(90deg, #F4D03F 0%, #D4AF37 100%);
}

.services__btn--business:hover {
    background: linear-gradient(90deg, #D4AF37 0%, #F4D03F 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.services__btn--entrepreneur {
    background: linear-gradient(90deg, #7B68EE 0%, #9370DB 100%);
}

.services__btn--entrepreneur:hover {
    background: linear-gradient(90deg, #9370DB 0%, #7B68EE 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(123, 104, 238, 0.4);
}

.services__btn-icon {
    transition: transform var(--transition-fast);
}

.services__btn:hover .services__btn-icon {
    transform: translateX(5px);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter {
    padding: var(--spacing-xxl) var(--spacing-md);
}

.newsletter__container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Main Title */
.newsletter__main-title {
    font-family: var(--font-headings);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.newsletter__main-title-text--gold {
    background: linear-gradient(90deg, #F4D03F 0%, #D4AF37 50%, #F9E79F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter__main-title-text--purple {
    background: linear-gradient(90deg, #7B68EE 0%, #9370DB 50%, #8A7FE8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter__main-subtitle {
    font-family: var(--font-body);
    font-size: var(--font-size-lg);
    color: var(--color-text-gray);
    text-align: center;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto var(--spacing-xxl);
}

/* Card Container */
.newsletter__card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: var(--spacing-xl);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Info Section */
.newsletter__info {
    display: flex;
    flex-direction: column;
}

.newsletter__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F4D03F 0%, #D4AF37 50%, #9370DB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.newsletter__icon-svg {
    color: var(--color-bg-dark);
}

.newsletter__title {
    font-family: var(--font-headings);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-text-white);
    line-height: 1.4;
    margin-bottom: var(--spacing-md);
}

.newsletter__description {
    font-family: var(--font-body);
    font-size: var(--font-size-md);
    color: var(--color-text-gray);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

/* Benefits List */
.newsletter__benefits {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-sm);
}

.newsletter__benefit {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    color: var(--color-text-gray);
}

.newsletter__benefit-icon {
    flex-shrink: 0;
    color: #10b981;
}

/* Form Section */
.newsletter__form-wrapper {
    display: flex;
    align-items: center;
}

.newsletter__form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.newsletter__input-group {
    width: 100%;
}

.newsletter__input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: var(--font-size-md);
    color: var(--color-text-white);
    transition: all var(--transition-normal);
}

.newsletter__input::placeholder {
    color: rgba(184, 184, 184, 0.5);
}

.newsletter__input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(15, 23, 42, 1);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.newsletter__submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, #F4D03F 0%, #D4AF37 50%, #9370DB 100%);
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: var(--font-size-md);
    font-weight: 600;
    color: var(--color-bg-dark);
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.newsletter__submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    background: linear-gradient(90deg, #D4AF37 0%, #F4D03F 50%, #7B68EE 100%);
}

.newsletter__submit:active {
    transform: translateY(-1px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--spacing-xxl) var(--spacing-md);
}

.about__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

/* Image Side */
.about__image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about__image-card {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--color-bg-darker);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    position: relative;
    z-index: 1;
}

.about__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(147, 112, 219, 0.15) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Content Side */
.about__content {
    text-align: left;
}

/* Title */
.about__title {
    font-family: var(--font-headings);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
}

/* Description */
.about__description {
    margin-bottom: var(--spacing-xl);
}

.about__text {
    font-family: var(--font-body);
    font-size: var(--font-size-md);
    color: var(--color-text-gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.about__text:last-child {
    margin-bottom: 0;
}

/* Stats */
.about__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.about__stat {
    text-align: center;
}

.about__stat-number {
    font-family: var(--font-headings);
    font-size: var(--font-size-4xl);
    font-weight: 700;
    background: linear-gradient(90deg, #F4D03F 0%, #D4AF37 50%, #9370DB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
    line-height: 1.2;
}

.about__stat-label {
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    color: var(--color-text-gray);
    line-height: 1.5;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--spacing-xxl) var(--spacing-md);
}

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

/* Main Title */
.contact__main-title {
    font-family: var(--font-headings);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    color: var(--color-text-white);
    margin-bottom: var(--spacing-md);
}

.contact__main-subtitle {
    font-family: var(--font-body);
    font-size: var(--font-size-lg);
    color: var(--color-text-gray);
    text-align: center;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto var(--spacing-xxl);
}

/* Content Layout */
.contact__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xxl);
}

/* Form Side */
.contact__form-wrapper {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: var(--spacing-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact__form-title {
    font-family: var(--font-headings);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: var(--spacing-lg);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact__form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.contact__input-group {
    width: 100%;
}

.contact__input,
.contact__textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: var(--font-size-md);
    color: var(--color-text-white);
    transition: all var(--transition-normal);
}

.contact__input::placeholder,
.contact__textarea::placeholder {
    color: rgba(184, 184, 184, 0.5);
}

.contact__input:focus,
.contact__textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(15, 23, 42, 1);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.contact__submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, #F4D03F 0%, #D4AF37 50%, #9370DB 100%);
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: var(--font-size-md);
    font-weight: 600;
    color: var(--color-bg-dark);
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.contact__submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    background: linear-gradient(90deg, #D4AF37 0%, #F4D03F 50%, #7B68EE 100%);
}

.contact__submit:active {
    transform: translateY(-1px);
}

/* Info Side */
.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact__info-title {
    font-family: var(--font-headings);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: var(--spacing-xs);
}

/* Contact Methods */
.contact__methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.contact__method {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(30, 41, 59, 0.3);
    border-radius: 12px;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact__method:hover {
    background: rgba(30, 41, 59, 0.5);
    transform: translateX(5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.contact__method-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__method-icon--calendar {
    background: linear-gradient(135deg, #F4D03F 0%, #D4AF37 100%);
    color: var(--color-bg-dark);
}

.contact__method-icon--whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.contact__method-icon--email {
    background: linear-gradient(135deg, #7B68EE 0%, #9370DB 100%);
    color: white;
}

.contact__method-icon svg {
    width: 20px;
    height: 20px;
}

.contact__method-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.contact__method-label {
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text-white);
}

.contact__method-text {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--color-text-gray);
}

/* Schedule */
.contact__schedule {
    background: rgba(30, 41, 59, 0.3);
    border-radius: 12px;
    padding: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact__schedule-title {
    font-family: var(--font-headings);
    font-size: var(--font-size-md);
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: var(--spacing-sm);
}

.contact__schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact__schedule-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact__schedule-day {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--color-text-gray);
}

.contact__schedule-time {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    align-items: start;
}

/* Brand */
.footer__brand {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer__logo-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: opacity var(--transition-fast);
    width: fit-content;
}

.footer__logo-link:hover {
    opacity: 0.8;
}

.footer__logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer__logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer__brand-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.footer__brand-name {
    font-family: var(--font-headings);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-text-white);
    line-height: 1.2;
}

.footer__brand-title {
    font-family: var(--font-body);
    font-size: var(--font-size-md);
    font-weight: 400;
    color: var(--color-text-gray);
    line-height: 1.2;
}

.footer__tagline {
    font-family: var(--font-body);
    font-size: var(--font-size-xl);
    color: var(--color-text-gray);
    line-height: 1.6;
 
    font-style: italic;
}

/* Social Media */
.footer__social-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer__social-title {
    font-family: var(--font-headings);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-text-white);
}

.footer__social {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.footer__social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(50, 55, 70, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-gray);
    transition: all var(--transition-normal);
}

.footer__social-link:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-bg-dark);
    transform: translateY(-3px);
}

/* Bottom */
.footer__bottom {
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer__copyright {
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    color: var(--color-text-gray);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ============================================
   MEDIA QUERIES - TABLET
   ============================================ */
@media (min-width: 768px) {
    /* Header */
    .header {
        padding: var(--spacing-md) 0;
    }
    
    .header__container {
        padding: 0 var(--spacing-xl);
    }
    
    .header__logo {
        width: 48px;
        height: 48px;
    }
    
    .header__brand-name {
        font-size: 1.25rem;
    }
    
    .header__menu-btn {
        display: none;
    }
    
    .header__nav {
        display: block;
    }
    
    /* Hero */
    .hero {
        padding: calc(100px + var(--spacing-xl)) var(--spacing-xl) var(--spacing-xxl);
    }
    
    .hero__title {
        font-size: var(--font-size-4xl);
        margin-bottom: var(--spacing-xl);
    }
    
    .hero__subtitle {
        font-size: 1.25rem;
        max-width: 800px;
    }
    
    /* Services - Tablet */
    .services {
        padding: var(--spacing-xxl) var(--spacing-xl);
    }
    
    .services__container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
    
    .services__title {
        font-size: var(--font-size-3xl);
    }
    
    /* Newsletter - Tablet */
    .newsletter {
        padding: var(--spacing-xxl) var(--spacing-xl);
    }
    
    .newsletter__card {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xxl);
        padding: var(--spacing-xxl);
    }
    
    .newsletter__main-title {
        font-size: var(--font-size-4xl);
    }
    
    /* About - Tablet */
    .about {
        padding: var(--spacing-xxl) var(--spacing-xl);
    }
    
    .about__container {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--spacing-xxl);
    }
    
    .about__title {
        font-size: var(--font-size-4xl);
    }
    
    .about__text {
        font-size: var(--font-size-lg);
    }
    
    /* Contact - Tablet */
    .contact {
        padding: var(--spacing-xxl) var(--spacing-xl);
    }
    
    .contact__content {
        grid-template-columns: 1.2fr 1fr;
        gap: var(--spacing-xxl);
    }
    
    .contact__form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact__main-title {
        font-size: var(--font-size-4xl);
    }
    
    /* Footer - Tablet */
    .footer {
        padding: var(--spacing-xxl) var(--spacing-xl) var(--spacing-xl);
    }
    
    .footer__content {
        grid-template-columns: 2fr 1fr;
        gap: var(--spacing-xxl);
        align-items: center;
    }
    
    .footer__social-section {
        align-items: flex-end;
        text-align: right;
    }
    
    .footer__social {
        justify-content: flex-end;
    }
}

/* ============================================
   MEDIA QUERIES - DESKTOP
   ============================================ */
@media (min-width: 1024px) {
    /* Hero */
    .hero__title {
        font-size: var(--font-size-5xl);
    }
    
    .hero__subtitle {
        font-size: 1.375rem;
        max-width: 900px;
    }
    
    /* Services - Desktop */
    .services__card {
        min-height: 650px;
    }
    
    .services__card-content {
        padding: var(--spacing-xxl);
    }
    
    .services__icon {
        width: 90px;
        height: 90px;
    }
    
    .services__icon-svg {
        width: 45px;
        height: 45px;
    }
    
    .services__description {
        font-size: var(--font-size-lg);
    }
    
    /* Newsletter - Desktop */
    .newsletter__icon {
        width: 80px;
        height: 80px;
    }
    
    .newsletter__icon-svg {
        width: 45px;
        height: 45px;
    }
    
    .newsletter__title {
        font-size: var(--font-size-2xl);
    }
    
    .newsletter__description {
        font-size: var(--font-size-lg);
    }
    
    /* About - Desktop */
    .about__image-card {
        max-width: 550px;
    }
    
    .about__stat-number {
        font-size: var(--font-size-5xl);
    }
}

/* ============================================
   MEDIA QUERIES - WIDE SCREENS
   ============================================ */
@media (min-width: 1440px) {
    .hero__title {
        font-size: 4.5rem;
    }
    
    .hero__subtitle {
        font-size: 1.5rem;
    }
    
    /* Services - Wide Screens */
    .services__card {
        min-height: 700px;
    }
    
    .services__title {
        font-size: var(--font-size-4xl);
    }
    
    /* About - Wide Screens */
    .about__title {
        font-size: var(--font-size-5xl);
    }
    
    .about__text {
        font-size: 1.25rem;
    }
    
    .about__stat-label {
        font-size: var(--font-size-md);
    }
}

/* ============================================
   MOBILE MENU (CUANDO ESTÉ ABIERTO)
   ============================================ */
@media (max-width: 767px) {
    .header__nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-darker) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: left var(--transition-normal);
    }
    
    .header__nav--active {
        left: 0;
    }
    
    .header__nav-list {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .header__nav-link {
        font-size: 1.5rem;
    }
    
    /* Mobile menu button animation when active */
    .header__menu-btn--active .header__menu-icon:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .header__menu-btn--active .header__menu-icon:nth-child(2) {
        opacity: 0;
    }
    
    .header__menu-btn--active .header__menu-icon:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

