@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

:root {
    --bg-dark-green: #152B20;
    --top-bar-bg: #0F1E16;
    --highlight-lime: #BFFF23;
    --text-white: #FFFFFF;
    --text-gray: #E0E0E0;
    --card-bg: #FFFFFF;
    --form-border: #DDE2E5;
    --btn-dark: #1A3626;
    --btn-start-bg: #1A3626;
    --whatsapp-green: #25D366;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark-green);
    color: var(--text-white);
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background-color: var(--top-bar-bg);
    padding: 10px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar a {
    color: var(--text-white);
    font-weight: 700;
    text-decoration: underline;
}

.top-bar i {
    margin-right: 5px;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: transparent;
    position: relative;
    z-index: 100;
}

.logo .title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--highlight-lime);
}

.logo .subtitle {
    font-size: 0.85rem;
    color: var(--text-white);
    font-weight: 700;
    letter-spacing: 3px;
    margin-top: -2px;
}

.logo .tagline {
    font-size: 0.75rem;
    color: var(--highlight-lime);
    margin-top: 2px;
}

nav.desktop-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 0.95rem;
    margin-left: auto;
}

nav.desktop-nav a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

nav.desktop-nav a:hover:not(.btn-support) {
    color: var(--highlight-lime);
}

nav.desktop-nav a.active {
    border-bottom: 2px solid #3F8F56; /* Subtle green underline like reference */
    padding-bottom: 5px;
}

.lang-selector-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.separator {
    color: rgba(255,255,255,0.3);
    font-size: 1.1rem;
    font-weight: 300;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-white);
}

.lang-selector i {
    color: var(--highlight-lime);
}

.btn-support {
    background-color: var(--text-white);
    color: var(--bg-dark-green) !important;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-support:hover {
    background: #f1f1f1;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    height: 70vh;
    min-height: 500px;
    background-color: var(--bg-dark-green); /* Fallback color */
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 10%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(21, 43, 32, 0.95) 0%, rgba(21, 43, 32, 0.6) 50%, rgba(21, 43, 32, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero h1 .highlight {
    background-color: var(--highlight-lime);
    color: var(--btn-dark);
    font-weight: 800;
    padding: 2px 10px;
    display: inline-block;
    margin-top: 5px;
}

.btn-start {
    background-color: var(--btn-start-bg);
    color: var(--text-white);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    display: inline-block;
    transition: background 0.2s;
}

.btn-start:hover {
    background-color: #244934;
}

/* Info Section */
.info-section {
    padding: 80px 10%;
    background-color: var(--top-bar-bg); /* Un tono ligeramente más oscuro para contrastar */
    color: var(--text-gray);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.info-container {
    max-width: 900px;
    margin: 0 auto;
}

.info-container p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #D1D5DB;
}

.info-container p:first-child {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-white);
}

.info-container .highlight-text {
    color: var(--highlight-lime);
    font-weight: 700;
}

.btn-solicitar {
    display: inline-block;
    margin-top: 20px;
    background-color: var(--highlight-lime);
    color: var(--bg-dark-green);
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.15rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(191, 255, 35, 0.2);
}

.btn-solicitar:hover {
    background-color: #a9e81b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(191, 255, 35, 0.35);
}

/* Registration Section */
.register-section {
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    background-color: var(--bg-dark-green);
}

.register-card {
    background-color: var(--card-bg);
    color: #333;
    padding: 50px;
    border-radius: 10px;
    width: 100%;
    max-width: 650px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.register-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.register-card h2 .light-green {
    color: #8FD11E; /* slightly darker green for white background to keep contrast */
}

.subtitle-text {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 40px;
    line-height: 1.5;
}

.form-group {
    text-align: left;
    margin-bottom: 25px;
}

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

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--form-border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    color: #333;
    appearance: none;
}

.select-wrapper {
    position: relative;
}

.select-wrapper .select-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
}

.recaptcha-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F9F9F9;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    padding: 15px 20px;
    margin-bottom: 30px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-container input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-container label {
    font-weight: 500;
    cursor: pointer;
}

.rc-logo {
    text-align: center;
    font-size: 0.65rem;
    color: #555;
}

.form-actions {
    display: flex;
    gap: 15px;
}

.form-actions button {
    flex: 1;
    padding: 14px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-dark {
    background-color: var(--btn-dark);
    color: white;
    border: none;
}

.btn-dark:hover {
    background-color: #244934;
}

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

.btn-outline-dark:hover {
    background-color: rgba(26, 54, 38, 0.05);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-green);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.2s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 900px) {
    nav.desktop-nav {
        display: none; /* In a real app we'd add a hamburger menu */
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .form-actions {
        flex-direction: column;
    }
    .register-card {
        padding: 30px 20px;
    }
}

/* Footer Section */
.site-footer {
    background-color: var(--bg-dark-green);
    color: var(--text-gray);
    padding: 60px 5% 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo .title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 1px;
}

.footer-logo .subtitle {
    font-size: 0.8rem;
    color: var(--highlight-lime);
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #9CA3AF;
}

.footer-col h3 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: #9CA3AF;
}

.contact-list li i {
    color: var(--highlight-lime);
    width: 20px;
    margin-right: 10px;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255,255,255,0.1);
    color: var(--text-white);
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.2s;
}

.social-icons a:hover {
    background-color: var(--highlight-lime);
    color: var(--bg-dark-green);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #6B7280;
}

/* Legal Pages */
.legal-content {
    padding: 150px 5% 80px;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-gray);
    line-height: 1.8;
}

.legal-content h1 {
    color: var(--highlight-lime);
    margin-bottom: 5px;
    font-size: 2.5rem;
}

.legal-content h2 {
    color: var(--text-white);
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.legal-content p, .legal-content ul {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.legal-content ul {
    padding-left: 20px;
    list-style-type: disc;
}

.legal-content li {
    margin-bottom: 10px;
}


