/* landing.style.css (Actualizado) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
    --primary-color: #00A99D;
    --secondary-color: #0D2A4B;
    --accent-color-blue: #3E82F8;
    --accent-color-pink: #F472B6;
    --text-light: #ffffff;
    --text-dark: #1E293B;
    --background-light: #F8FAFC;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-light);
    overflow-x: hidden;
}

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

/* --- Hero Section --- */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 60px 0;
    position: relative;
}

.hero-content { flex: 1; z-index: 2; }
.hero-content h1 { font-size: 4rem; font-weight: 800; line-height: 1.2; margin: 0 0 16px 0; }
.hero-content h1 span { color: var(--primary-color); }
.hero-content p { font-size: 1.2rem; max-width: 500px; margin-bottom: 32px; color: #cbd5e1;}
.hero .login-wrapper { flex: 1; display: flex; justify-content: center; align-items: center; z-index: 2; }


/* --- Login Box Styles --- */
.login-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    width: 100%;
    max-width: 400px;
    color: var(--text-light); /* Cambiado a claro para que contraste con el fondo oscuro */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    z-index: 10;
}
.tabs { display: flex; border-bottom: 1px solid #e2e8f0; }
.tab-link {
    flex: 1; padding: 15px 5px; border: none; background: none; cursor: pointer;
    font-size: 0.9em; font-family: 'Poppins', sans-serif; color: rgba(255, 255, 255, 0.6);
    border-bottom: 3px solid transparent; transition: all 0.3s ease;
}
.tab-link:hover { color: var(--text-light); }
.tab-link.active { color: var(--text-light); border-bottom-color: var(--primary-color); font-weight: 600; }
.tab-content { display: none; margin-top: 30px; }
.input-group { margin-bottom: 20px; }
.input-group input {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 1em;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 169, 157, 0.3);
}
.btn-primary {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, var(--primary-color), #00c7b6);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 169, 157, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 169, 157, 0.4);
}
.forgot-password, .signup-link, .privacy-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7); /* Color más claro y semitransparente */
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.forgot-password:hover, .signup-link:hover {
    color: var(--text-light); /* Se ilumina al pasar el mouse */
}
.privacy-link { margin-top: 25px; }


/* --- Decorative Graphics & Animations --- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.deco-shape {
    position: absolute;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.deco-1 {
    top: 10%; left: 5%; width: 80px;
    animation-delay: 0s;
    animation-duration: 7s;
}
.deco-2 {
    top: 20%; right: 5%; width: 100px;
    animation-delay: 1.5s;
    animation-duration: 8s;
}
.deco-3 {
    bottom: 15%; left: 20%; width: 120px;
    animation-delay: 3s;
    animation-duration: 6s;
}
.deco-4 {
    bottom: 10%; right: 15%; width: 90px;
    animation-delay: 4.5s;
    animation-duration: 9s;
}

/* --- Generic Section Styles --- */
.section {
    padding: 100px 0;
    background-color: var(--background-light);
    color: var(--text-dark);
}
.section-header { text-align: center; font-size: 2.5rem; margin-bottom: 60px; }

/* --- Features Section --- */
.feature-card { display: flex; align-items: center; gap: 40px; margin-bottom: 80px; }
.feature-card:nth-child(even) { flex-direction: row-reverse; }
.feature-text { flex: 1; }
.feature-text h3 { font-size: 1.8rem; color: var(--primary-color); }
.feature-text p { font-size: 1.1rem; line-height: 1.7; }
.feature-image { flex: 1; text-align: center; }
.feature-image img { max-width: 100%; border-radius: 12px; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }

/* --- Tools Grid Section (NUEVO) --- */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.tool-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 16px;
    font-size: 1.2em;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.tool-item span { font-size: 2.5em; display: block; margin-bottom: 15px; }


/* --- WhatsApp Section (NUEVO) --- */
.whatsapp-section {
    background-color: var(--secondary-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 40px;
}
.whatsapp-text { flex: 1; }
.whatsapp-image { flex: 1; text-align: center; }
.whatsapp-image img { max-width: 350px; }

/* --- Footer (NUEVO) --- */
.main-footer {
    background-color: #081a31;
    color: #a9b3c1;
    padding: 30px 0;
    font-size: 0.9em;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-content p { margin: 0; }
.main-footer a { color: var(--text-light); text-decoration: none; font-weight: 500; }
.main-footer a:hover { color: var(--primary-color); }


/* --- Responsive Design --- */
@media (max-width: 900px) {
    .hero { flex-direction: column; text-align: center; }
    .hero-content { margin-bottom: 60px; }
    .hero-content p { margin-left: auto; margin-right: auto; }
    .feature-card, .feature-card:nth-child(even) { flex-direction: column; text-align: center; }
    .whatsapp-section { flex-direction: column; text-align: center; }
}

/* Contenedor exterior (Controla el resplandor) */
.logo-container {
    position: relative;
    margin-bottom: 30px;

    /* --- LÍNEAS NUEVAS/MODIFICADAS --- */
    margin-left: auto;   /* Centra el contenedor horizontalmente */
    margin-right: auto;  /* Centra el contenedor horizontalmente */
    width: 200px;         /* Le damos un ancho fijo (igual al del círculo) */
    height: 200px;        /* Le damos un alto fijo (igual al del círculo) */
}

/* El resplandor suave detrás del círculo de vidrio */
.logo-container::before {
    content: '';
    position: absolute;
    top: -10px; right: -10px; bottom: -10px; left: -10px; /* Lo hacemos un poco más grande */
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

/* El círculo de vidrio (¡Aquí está el control principal!) */
.logo-glass-circle {
    position: relative;
    z-index: 2;
    width: 200px;  /* <-- AJUSTA EL TAMAÑO DEL CÍRCULO DE VIDRIO AQUÍ */
    height: 200px; /* <-- Y AQUÍ */
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.logo-glass-circle:hover {
    transform: scale(1.05);
}

/* La imagen del logo DENTRO del círculo */
.hero-logo-image {
    max-width: 150px; /* <-- AJUSTA EL TAMAÑO DE LA IMAGEN AQUÍ */
    height: auto;
}

