/* Variables CSS de Trascende */
:root {
    --primary-color: #233d34;
    --secondary-color: #4C685E;
    --accent-color: #BAB495;
    --accent-light: #d8be9a;
    --text-primary: #1a1a1a;
    --text-secondary: #666;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #233d34 0%, #4C685E 50%, #BAB495 100%);
    --shadow-soft: 0 10px 30px rgba(35, 61, 52, 0.1);
    --shadow-medium: 0 15px 40px rgba(35, 61, 52, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

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

/* Header y Navegación */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(186, 180, 149, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

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

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

.logo-img {
    height: 40px;
    width: auto;
}

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

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

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-login, .btn-register {
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-login {
    color: var(--primary-color);
    background: transparent;
    border: 1px solid var(--primary-color);
}

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

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

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.mobile-auth-buttons {
    display: none;
}

.btn-login-mobile-menu,
.btn-register-mobile-menu {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    margin: 0.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    min-width: 140px;
}

.btn-login-mobile-menu {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
}

.btn-login-mobile-menu:hover {
    background: var(--primary-color);
    color: white;
}

.btn-register-mobile-menu {
    background: var(--accent-color);
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
}

.btn-register-mobile-menu:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-overlay {
    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 100 100"><defs><pattern id="hero-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-pattern)"/></svg>');
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
}

.hero-text {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.magazine-focus {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-trust {
    text-align: left;
}

.hero-trust p {
    margin-bottom: 1rem;
    opacity: 0.8;
    font-size: 0.95rem;
}

.trust-logos {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.magazine-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.magazine-main {
    position: relative;
    max-width: 400px;
}

.magazine-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.magazine-image:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
}

.magazine-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.floating-elements-hero {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    animation: floatAnimation 6s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: -10%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 4s;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    33% {
        transform: translateY(-20px) translateX(10px);
    }
    66% {
        transform: translateY(10px) translateX(-5px);
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Sección Membresía */
.membership {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a2f26 0%, #233d34 50%, #0d1811 100%);
    position: relative;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.membership-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.card-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(186, 180, 149, 0.2);
}

.card-features li:last-child {
    border-bottom: none;
}

.card-features i {
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 20px;
}

.card-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.price-period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.card-button {
    width: 100%;
    padding: 1.2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: block;
    text-align: center;
}

.card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(35, 61, 52, 0.3);
}

.membership-card.featured {
    position: relative;
    border: 2px solid var(--accent-color);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Sección Contacto */
.contact {
    padding: 8rem 0;
    background: var(--primary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::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 100 100"><defs><pattern id="contact-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="3" cy="3" r="1.5" fill="%23BAB495" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
}

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

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    width: 30px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 3rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(186, 180, 149, 0.3);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 50px;
}

.footer-description {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 2rem;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    opacity: 0.7;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Estilos adicionales para secciones actualizadas */

/* Sección About Us con diseño UI/UX mejorado */
.about-us {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2f26 50%, #0d1811 100%);
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(186, 180, 149, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(186, 180, 149, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(216, 190, 154, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.about-us::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(186, 180, 149, 0.1), rgba(216, 190, 154, 0.05));
    border-radius: 50%;
    filter: blur(80px);
    animation: floatGlow 8s ease-in-out infinite;
}

@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(-20px, -30px) scale(1.1); opacity: 0.8; }
}

.about-hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-intro {
    color: white;
    position: relative;
    z-index: 3;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(186, 180, 149, 0.25), rgba(216, 190, 154, 0.15));
    color: var(--accent-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-bottom: 3rem;
    font-weight: 800;
    font-size: 0.95rem;
    border: 2px solid rgba(186, 180, 149, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(186, 180, 149, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    animation: badgePulse 4s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 32px rgba(186, 180, 149, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 12px 40px rgba(186, 180, 149, 0.4); }
}

.intro-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(186, 180, 149, 0.4);
}

.intro-badge i {
    font-size: 1rem;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 2.5rem;
    line-height: 1.1;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: titleReveal 1s ease-out;
}

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

.brand-highlight {
    background: linear-gradient(135deg, #d4af37 0%, var(--accent-color) 30%, #f4d03f  70%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: goldShimmer 3s ease-in-out infinite;
}

/* Título de membresía con mejor contraste */
.membership-brand-highlight {
    color: white;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d4af37 50%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: block;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(186, 180, 149, 0.4);
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

@keyframes goldShimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.brand-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% { opacity: 0.6; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
}

.about-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-weight: 500;
    max-width: 550px;
    animation: textFadeIn 1.2s ease-out 0.3s both;
}

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

.golden-text {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 25%, var(--accent-color) 50%, #d4af37 75%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
    animation: goldSparkle 4s ease-in-out infinite;
}

@keyframes goldSparkle {
    0%, 100% { filter: brightness(1) saturate(1); }
    25% { filter: brightness(1.2) saturate(1.1); }
    50% { filter: brightness(1.4) saturate(1.2); }
    75% { filter: brightness(1.2) saturate(1.1); }
}

.golden-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
    animation: goldGlow 4s ease-in-out infinite;
}

@keyframes goldGlow {
    0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.1); }
}

.text-highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.stat-card {
    background: linear-gradient(135deg, 
        rgba(186, 180, 149, 0.15) 0%, 
        rgba(76, 104, 94, 0.25) 50%, 
        rgba(35, 61, 52, 0.3) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(186, 180, 149, 0.3);
    border-radius: 25px;
    padding: 2rem 3rem;
    text-align: center;
    width: 280px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: cardFloat 6s ease-in-out infinite;
    animation-delay: calc(var(--delay, 0) * 0.5s);
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.stat-card:nth-child(1) { --delay: 0; }
.stat-card:nth-child(2) { --delay: 1; }
.stat-card:nth-child(3) { --delay: 2; }

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(186, 180, 149, 0.4), 
        transparent);
    transition: left 0.8s;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        #d4af37, 
        var(--accent-color), 
        #f4d03f);
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(186, 180, 149, 0.4);
    border-color: rgba(186, 180, 149, 0.6);
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, 
        #d4af37 0%, 
        #f4d03f 25%, 
        var(--accent-color) 50%, 
        #d4af37 75%, 
        #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    animation: numberPulse 3s ease-in-out infinite;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

@keyframes numberPulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.05); filter: brightness(1.2); }
}

.stat-card:hover .stat-number {
    animation-duration: 1.5s;
    filter: brightness(1.3) saturate(1.2);
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.section-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.pillars {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.pillar-item {
    background: rgba(76, 104, 94, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
}

.pillar-item:hover {
    background: rgba(212, 175, 55, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.pillar-label {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.mission-elements {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.element-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.element-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(8px);
}

.element-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.8), rgba(186, 180, 149, 0.8));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.element-content h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 768px) {
    .origin-mission-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
        padding: 0 1rem;
    }
    
    .section-card {
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .pillars {
        justify-content: center;
    }
}

/* Timeline de misión completamente rediseñada */
.about-journey {
    margin-top: 8rem;
    position: relative;
}

.journey-header {
    text-align: center;
    margin-bottom: 5rem;
}

.journey-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.journey-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.journey-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

.journey-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color), var(--accent-light), var(--accent-color));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 100%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
    text-align: left;
}

.timeline-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    width: 45%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -30px;
    border-right-color: rgba(255, 255, 255, 0.95);
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -30px;
    border-left-color: rgba(255, 255, 255, 0.95);
}

.timeline-marker {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.timeline-year {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

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

.timeline-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Pilares de misión mejorados */
.mission-pillars {
    margin-top: 8rem;
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 249, 250, 0.9));
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.mission-pillars::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 60 60"><defs><pattern id="pillars-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="%23BAB495" opacity="0.1"/><circle cx="15" cy="15" r="1.5" fill="%23233D34" opacity="0.05"/><circle cx="45" cy="45" r="1.5" fill="%23233D34" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23pillars-pattern)"/></svg>');
}

.pillars-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.pillars-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
}

.pillars-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.pillars-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.pillar-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

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

.pillar-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 15px 30px rgba(35, 61, 52, 0.3);
    position: relative;
    overflow: hidden;
}

.pillar-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: iconPulse 4s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(0.8) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.pillar-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.pillar-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 500;
}

.timeline-badge {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.timeline-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.story-highlights {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.highlight-chip {
    background: rgba(186, 180, 149, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 12px;
    text-align: center;
}

.pillar i {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.pillar span {
    font-weight: 600;
    color: var(--primary-color);
}

/* Estilos mejorados para membresía */
.membership-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    background: rgba(186, 180, 149, 0.1);
    border-radius: 50%;
}

.bg-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.bg-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}

.bg-shape.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
}

.membership-intro-centered {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-content-centered {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid var(--accent-color);
}

.membership-title-centered {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0 auto 2rem auto;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    overflow: visible;
    max-width: none;
    width: 100%;
    display: block;
    position: relative;
    left: 0;
    right: 0;
}

.membership-description-centered {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.stats-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-inline {
    text-align: center;
}

.stat-number-inline {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label-inline {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.stat-divider {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Showcase de membresía */
.membership-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.benefits-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.benefits-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.benefits-compact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 12px;
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateX(5px);
    background: rgba(186, 180, 149, 0.1);
}

.benefit-icon-small {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.benefit-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Pricing section */
.pricing-section {
    position: relative;
}

.premium-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.premium-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
}

.pricing-main {
    text-align: center;
    margin-bottom: 2rem;
}

.price-container {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
}

.period {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.billing-info {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.features-list {
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(186, 180, 149, 0.2);
}

.feature:last-child {
    border-bottom: none;
}

.feature i {
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 20px;
}

.cta-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 1.5rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.cta-premium:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Estilos para sección de contacto premium */
.contact-premium {
    padding: 8rem 0;
    background: var(--primary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.contact-overlay {
    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 100 100"><defs><pattern id="contact-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="3" cy="3" r="1.5" fill="%23BAB495" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
}

.contact-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.contact-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    position: relative;
    z-index: 2;
}

.contact-info-premium {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card-premium {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
}

.info-card-premium:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.info-icon-premium {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.email-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.location-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.info-details h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.info-details p {
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.info-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.info-link:hover {
    color: var(--accent-light);
}

.contact-form-premium {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

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

.form-header h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.form-header p {
    opacity: 0.9;
    line-height: 1.6;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group-premium {
    position: relative;
}

.input-icon-premium {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    z-index: 1;
}

.input-icon-premium.message-icon {
    top: 1rem;
    transform: none;
}

.form-group-premium input,
.form-group-premium textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group-premium input::placeholder,
.form-group-premium textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group-premium input:focus,
.form-group-premium textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
}

.form-group-premium textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 1rem;
}

.input-line-premium {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.form-group-premium input:focus + .input-line-premium,
.form-group-premium textarea:focus + .input-line-premium {
    width: 100%;
}

.btn-submit-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 1.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit-premium:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(186, 180, 149, 0.3);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Estilos para sección de servicios */
.services-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight-text {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(35, 61, 52, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
}

.service-content {
    padding: 2.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== SECCIÓN CONOCE MÁS SOBRE TRASCENDE REDISEÑADA ===== */
.about-us-redesigned {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 35%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.about-us-redesigned::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(186, 180, 149, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(35, 61, 52, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-us-redesigned::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(186, 180, 149, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
}

/* Header Principal */
.about-header {
    text-align: center;
    margin-bottom: 5rem;
}

.about-badge {
    display: inline-block;
    background: rgba(26, 47, 38, 0.1);
    border: 1px solid rgba(26, 47, 38, 0.2);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.badge-text {
    color: #1a2f26;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #1a2f26;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gold-accent {
    color: #D4AF37;
}

.about-main-description {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Estadísticas Mejoradas */
.stats-section {
    margin-bottom: 8rem;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    background: white;
    padding: 3rem 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a2f26;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #D4AF37, transparent);
}

/* Contenido Principal */
.about-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 6rem;
}

.content-column {
    position: relative;
}

.content-block {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

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

.block-number {
    width: 50px;
    height: 50px;
    background: #D4AF37;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.block-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a2f26;
    font-weight: 600;
    margin: 0;
}

.block-subtitle {
    font-size: 1.4rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.block-text {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.block-text strong {
    color: #1a2f26;
    font-weight: 600;
}

/* Puntos Clave */
.key-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.point-dot {
    width: 8px;
    height: 8px;
    background: #D4AF37;
    border-radius: 50%;
    margin-top: 0.4rem;
    flex-shrink: 0;
}

.point-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.point-text {
    color: #1a2f26;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
}

.point-description {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    font-weight: 400;
}

/* Grid de Servicios - Misión (para la sección "Conoce más sobre Trascende") */
.mission-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-icon {
    width: 40px;
    height: 40px;
    background: #1a2f26;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.service-name {
    color: #1a2f26;
    font-weight: 600;
    font-size: 0.95rem;
}

/* CTA Final */
.about-cta {
    text-align: center;
    background: #1a2f26;
    border-radius: 24px;
    padding: 4rem 3rem;
    color: white;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: #D4AF37;
    color: #1a2f26;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #B8860B;
    color: #1a2f26;
}

/* Responsive */
@media (max-width: 768px) {
    .about-main-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }
    
    .stat-divider {
        width: 60px;
        height: 2px;
        background: linear-gradient(to right, transparent, #D4AF37, transparent);
    }
    
    .about-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-block {
        padding: 2rem;
    }
    
    .about-cta {
        padding: 3rem 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

/* Estilos para sección de patrocinadores */
.sponsors-premium {
    padding: 8rem 0;
    background: linear-gradient(135deg, #4C685E 0%, #5a7267 50%, #3d5751 100%);
    position: relative;
    overflow: hidden;
}

.sponsors-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(186, 180, 149, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(76, 104, 94, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.sponsors-header-premium {
    text-align: center;
    margin-bottom: 5rem;
}

.sponsors-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(186, 180, 149, 0.9);
    color: #1a2f26;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.sponsors-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.sponsors-highlight {
    background: linear-gradient(135deg, #D4AF37 0%, #F5E6A3 50%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s ease-in-out infinite alternate;
}

.sponsors-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.sponsors-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.sponsor-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 0;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 8px 32px rgba(35, 61, 52, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 420px;
    width: 100%;
    margin: 0 auto;
}

.sponsor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(35, 61, 52, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.sponsor-logo {
    width: 100%;
    height: 280px;
    margin: 0;
    padding: 0;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    display: block;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    flex-shrink: 0;
}

.sponsor-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.03) 50%, transparent 70%);
    pointer-events: none;
}

.sponsor-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.05));
    transition: transform 0.3s ease;
}

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

.sponsor-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    justify-content: space-between;
    min-height: 140px;
}

.sponsor-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.sponsor-visit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 4px 16px rgba(35, 61, 52, 0.2);
    letter-spacing: 0.02em;
}

.sponsor-visit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(35, 61, 52, 0.3);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.sponsor-visit-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.sponsor-visit-btn:hover i {
    transform: translateX(2px);
}

.sponsor-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.sponsor-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.loading-sponsors {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.loading-sponsors i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.loading-sponsors p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Footer rediseñado según las imágenes */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::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 100 100"><defs><pattern id="footer-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="4" cy="4" r="2" fill="%23BAB495" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 300px;
}

.footer-logo {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.footer-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(186, 180, 149, 0.4);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
    color: var(--accent-color);
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.5rem;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    opacity: 0.7;
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Responsivo */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(35, 61, 52, 0.95) 0%, rgba(35, 61, 52, 0.98) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        z-index: 999;
    }

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

    .nav-actions {
        display: none;
    }

    .mobile-auth-buttons {
        display: block;
        text-align: center;
        padding: 2rem 1rem 1rem 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        margin-top: 2rem;
    }

    .btn-login-mobile-menu {
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid var(--accent-color);
        color: var(--accent-color);
    }

    .btn-login-mobile-menu:hover {
        background: var(--accent-color);
        color: var(--primary-color);
    }

    .btn-register-mobile-menu {
        background: var(--accent-color);
        color: var(--primary-color);
        border: 2px solid var(--accent-color);
    }

    .btn-register-mobile-menu:hover {
        background: rgba(255, 255, 255, 0.9);
        color: var(--primary-color);
        border-color: white;
    }

    .nav-menu a {
        font-size: 1.5rem;
        margin: 1rem 0;
        color: white;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    /* Sección de contacto responsiva */
    .contact-premium {
        padding: 4rem 0;
    }

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

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-card-premium {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .info-card-premium .info-details h3 {
        font-size: 1.2rem;
    }

    .contact-form-premium {
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    /* Título Soluciones Empresariales Premium responsivo */
    .membership-title-centered {
        font-size: 2.2rem;
        white-space: normal;
        line-height: 1.3;
    }

    .membership-brand-highlight {
        display: block;
        text-align: center;
        width: 100%;
    }

    .nav-actions {
        display: none;
    }

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

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .membership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

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

    .trust-logos {
        justify-content: center;
    }

    /* Servicios responsivo */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .service-content {
        padding: 2rem;
    }

    /* Patrocinadores responsivo */
    .sponsors-grid-simple {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .visual-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-circle {
        min-width: 100px;
        height: 100px;
    }

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

    .mission-pillars {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .membership-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .membership-title-centered {
        font-size: 2.5rem;
    }
}

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

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

    .membership-card {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .btn-primary, .btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}
