:root {
    --azul-principal: #1E3A8A;
    --naranja-acento: #F97316;
    --gris-oscuro: #374151;
    --gris-claro: #E5E7EB;
    --blanco: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: linear-gradient(135deg, #0d2a6b 0%, #1E3A8A 100%);
    color: var(--blanco);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background: rgba(30, 58, 138, 0.9);
    color: var(--blanco);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--naranja-acento);
}

.logo i {
    margin-right: 10px;
    font-size: 2rem;
}

.hero {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    text-align: center;
}

.hero-content {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.18);
    max-width: 800px;
    margin: 0 auto;
}

.hero-content img {
    max-width: 180px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 4px solid var(--naranja-acento);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
}

.hero-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--blanco);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gris-claro);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: var(--blanco);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn i {
    margin-right: 10px;
    font-size: 1.5rem;
}

footer {
    background: rgba(30, 58, 138, 0.9);
    color: var(--blanco);
    padding: 2rem 0;
    text-align: center;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.footer-logo span {
    color: var(--naranja-acento);
}

.footer-content p {
    margin-bottom: 1rem;
}

.social-icons {
    margin: 1rem 0;
}

.social-icons a {
    color: var(--blanco);
    font-size: 1.5rem;
    margin: 0 0.8rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    color: var(--naranja-acento);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        margin-bottom: 0.5rem;
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .whatsapp-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}