/* ===== RESET & VARIABLES ===== */
:root {
    --vino: #6B1C24;
    --vino-dark: #4A1218;
    --vino-light: #8B2A34;
    --verde-bandera: #006847;
    --verde-bandera-light: #008A5E;
    --oro: #D4AF37;
    --oro-light: #F5DEB3;
    --blanco: #FFFFFF;
    --blanco-humo: #F9F9FB;
    --gris-oscuro: #1A1A1A;
    --gris-texto: #4A4A4A;
    --gris-borde: #E8E8EC;
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --shadow-gold: 0 8px 24px rgba(212,175,55,0.2);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gris-oscuro);
    background-color: var(--blanco);
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo-text, .btn {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--gris-borde);
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    background: linear-gradient(135deg, var(--vino), var(--oro));
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white;
    font-size: 1.2rem;
}

.logo-text {
    color: var(--gris-oscuro);
}

.logo-highlight {
    color: var(--vino);
    position: relative;
}

.logo-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--oro), transparent);
    border-radius: 2px;
}

.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-list a {
    text-decoration: none;
    color: var(--gris-oscuro);
    font-weight: 500;
    transition: var(--transition);
}

.nav-list a:hover {
    color: var(--vino);
}

.nav-cta {
    background: var(--vino);
    color: white !important;
    padding: 10px 24px;
    border-radius: 40px;
}

.nav-cta:hover {
    background: var(--vino-dark);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--vino);
}

/* ===== HERO ===== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #FFF5EB 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(107,28,36,0.1);
    color: var(--vino);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--vino), var(--oro));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gris-texto);
    margin-bottom: 32px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--vino), var(--vino-dark));
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

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

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

.hero-stats {
    display: flex;
    gap: 40px;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--vino);
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gris-texto);
}

.hero-img-wrapper {
    position: relative;
}

.hero-img-wrapper img {
    width: 100%;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.floating-card i {
    color: var(--oro);
}

.card-1 {
    top: 10%;
    left: -10%;
}

.card-2 {
    bottom: 15%;
    right: -10%;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
}

/* ===== SECTION TAGS ===== */
.section-tag {
    display: inline-block;
    background: rgba(0,104,71,0.1);
    color: var(--verde-bandera);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

/* ===== MISSION ===== */
.mission {
    padding: 80px 0;
    background: var(--blanco);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mission-text h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.mission-text p {
    color: var(--gris-texto);
    margin-bottom: 16px;
}

.mission-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mission-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mission-feature i {
    color: var(--verde-bandera);
    font-size: 1.2rem;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--blanco-humo);
    padding: 24px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
}

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

.stat-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--verde-bandera-light), var(--verde-bandera));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stat-percent {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--gris-texto);
}

/* ===== PROGRAMS ===== */
.programs {
    padding: 80px 0;
    background: var(--blanco-humo);
}

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

.program-card {
    background: white;
    padding: 32px 24px;
    border-radius: 28px;
    transition: var(--transition);
    border: 1px solid var(--gris-borde);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--oro);
}

.program-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--vino-light), var(--vino));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.program-icon i {
    font-size: 1.8rem;
    color: white;
}

.program-card h3 {
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.program-card p {
    color: var(--gris-texto);
    margin-bottom: 24px;
    line-height: 1.5;
}

.program-link {
    color: var(--vino);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.program-link:hover {
    gap: 12px;
    color: var(--oro);
}

/* ===== BENEFITS ===== */
.benefits {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-image img {
    width: 100%;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
}

.benefits-content h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.benefits-list {
    list-style: none;
    margin-top: 32px;
}

.benefits-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--gris-borde);
}

.benefits-list li i {
    width: 28px;
    color: var(--oro);
    font-size: 1.2rem;
}

/* ===== PANORAMA ===== */
.panorama {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--vino-dark), var(--vino));
    color: white;
    text-align: center;
}

.panorama .section-tag {
    background: rgba(255,255,255,0.2);
    color: var(--oro);
}

.panorama h2, .panorama-header p {
    color: white;
}

.panorama-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin: 48px 0;
    flex-wrap: wrap;
}

.panorama-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    padding: 32px 40px;
    border-radius: 32px;
    text-align: center;
    transition: var(--transition);
}

.panorama-card:hover {
    transform: scale(1.02);
    background: rgba(255,255,255,0.2);
}

.panorama-card i {
    font-size: 2.5rem;
    color: var(--oro);
    margin-bottom: 16px;
}

.panorama-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.panorama-cta {
    margin-top: 32px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 80px 0;
    background: var(--blanco-humo);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 28px;
    border-radius: 28px;
    transition: var(--transition);
}

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

.testimonial-stars {
    color: var(--oro);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    color: var(--gris-texto);
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar i {
    font-size: 2.5rem;
    color: var(--vino-light);
}

.testimonial-author strong {
    display: block;
    color: var(--gris-oscuro);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--vino);
}

/* ===== CONTACT ===== */
.contact {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-details {
    margin: 32px 0;
}

.contact-item {
    margin: 16px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item i {
    width: 32px;
    color: var(--vino);
    font-size: 1.2rem;
}

.contact-badge {
    background: var(--verde-bandera-light);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 60px;
    font-weight: 600;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gris-borde);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group label i {
    color: var(--vino);
    margin-right: 6px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--gris-borde);
    border-radius: 20px;
    font-family: inherit;
    transition: var(--transition);
    font-size: 0.95rem;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--vino);
    box-shadow: 0 0 0 3px rgba(107,28,36,0.1);
}

.range-wrapper {
    padding: 16px 0;
}

input[type="range"] {
    width: 100%;
    accent-color: var(--vino);
}

.range-values {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--gris-texto);
}

.monto-display {
    font-weight: 700;
    color: var(--vino);
    background: #fdf2e9;
    padding: 4px 12px;
    border-radius: 40px;
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
}

.form-note {
    font-size: 0.7rem;
    text-align: center;
    margin-top: 16px;
    color: var(--gris-texto);
}

.form-success {
    text-align: center;
    padding: 40px;
    background: #E8F5E9;
    border-radius: 28px;
    margin-top: 20px;
}

.form-success i {
    font-size: 3rem;
    color: var(--verde-bandera);
}

.form-success.hidden {
    display: none;
}

/* ===== DISCLAIMER ===== */
.disclaimer {
    padding: 40px 0;
    background: #F5F3F0;
}

.disclaimer-box {
    display: flex;
    gap: 16px;
    background: white;
    padding: 24px;
    border-radius: 24px;
    border-left: 5px solid var(--oro);
}

.disclaimer-box i {
    font-size: 1.5rem;
    color: var(--oro);
}

.disclaimer-box p {
    font-size: 0.8rem;
    color: var(--gris-texto);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gris-oscuro);
    color: #B0B0B0;
    padding: 60px 0 30px;
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    color: white;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    color: white;
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--vino);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #B0B0B0;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.8rem; }
    .programs-grid { grid-template-columns: repeat(2,1fr); }
    .mission-grid, .benefits-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .floating-card { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .nav-list { display: none; }
    .mobile-toggle { display: block; }
    .programs-grid { grid-template-columns: 1fr; }
    .mission-stats { grid-template-columns: 1fr; }
    .panorama-grid { flex-direction: column; align-items: center; }
    .hero-title { font-size: 2.2rem; }
    .section-header h2 { font-size: 1.8rem; }
    .contact-form-wrapper { padding: 24px; }
}

.nav-list.active {
    display: flex;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-md);
}