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

/* Reseteo Básico y Variables Globales */
:root {
    --primary-color: #0A2342; /* Azul oscuro */
    --secondary-color: #1C3D5A;
    --accent-color: #2CA58D; /* Un turquesa para acentos */
    --text-light: #F8F9FA;
    --text-dark: #343A40;
    --background-light: #FFFFFF;
    --background-grey: #f1f3f5;
    --border-color: #CED4DA;

    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Montserrat', sans-serif; /* Usando Montserrat como principal y fallback */
}



body {
    margin: 0;
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-light);
    font-size: 16px;
}

.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

/* Tamaños base de headings */
h1 { font-size: 2.8rem; line-height: 1.2; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }

section {
    padding: 60px 0;
}

/* --- Global Button Styles --- */
.btn {
    display: inline-block;
    padding: 12px 25px;
    font-family: var(--font-primary);
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    border: 1px solid transparent; /* Base border */
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-light);
    border-color: var(--accent-color);
}
.btn-primary:hover {
    background-color: #238c75;
    color: var(--text-light);
    border-color: #238c75;
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}
.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
    border-color: var(--secondary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-login {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 8px 18px;
}
.btn-login:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* --- Header Styles --- */
.site-header {
    background-color: var(--background-light);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo {
    height: 50px;
    width: auto;
    margin-right: 10px;
}

.site-name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.main-navigation li {
    margin-left: 25px;
}

.main-navigation a {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    padding: 5px 0;
}
.main-navigation a:hover,
.main-navigation a.active {
    color: var(--accent-color);
}

.language-switcher {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}
.language-switcher .flag-icon {
    width: 20px;
    height: auto;
    margin-right: 5px;
    vertical-align: middle;
}
.language-switcher a {
    color: var(--text-dark);
    margin: 0 5px;
    display: inline-flex;
    align-items: center;
}
.language-switcher a.active-lang {
    font-weight: bold;
    color: var(--accent-color);
}
.language-switcher .lang-separator {
    color: var(--border-color);
    margin: 0 3px;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
    padding: 5px;
    line-height: 1;
}

/* --- Hero Section Styles --- */
.hero-section {
    position: relative;
    color: var(--text-light);
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/profesional-exitoso-ia.jpg'); /* TODO: Ensure image exists */
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 35, 66, 0.7);
    z-index: -1;
}

.hero-video-bg { /* Optional video styles */
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-light);
    min-height: 1.2em;
    transition: opacity 0.5s ease-in-out; /* For JS fade effect */
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* --- Animation for Hero Content Entrance --- */
/* Apply initial state (JS handles H1 opacity) */
.hero-content p,
.hero-content .btn {
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInFromBottom {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animation with delays */
.hero-content p {
    animation: fadeInFromBottom 0.8s 0.5s ease-out forwards;
}
.hero-content .btn {
    animation: fadeInFromBottom 0.8s 0.7s ease-out forwards;
}

/* --- Testimonials & CTAs Section Styles --- */
.testimonials-cta-section {
    background-color: var(--background-grey);
    padding: 60px 0;
}

.testimonials-cta-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: var(--primary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background-color: var(--background-light);
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border: 3px solid var(--accent-color);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
    flex-grow: 1;
}

.testimonial-card h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
}

.testimonial-card span {
    font-size: 0.9rem;
    color: #777;
    display: block;
}

.cta-buttons {
    text-align: center;
    margin-top: 30px;
}

.cta-buttons .btn {
    margin: 10px 10px;
}

/* --- Video Promo Section --- */
.video-promo-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.video-promo-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: var(--primary-color);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Evaluation Form Section --- */
.evaluation-form-section {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 60px 0;
}

.evaluation-form-section h2,
.evaluation-form-section p {
    color: var(--text-light);
    text-align: center;
}
.evaluation-form-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}
.evaluation-form-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.evaluation-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--background-light);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Common styles for form fields */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"], /* Added type=tel */
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    height: 48px; /* Consistent height */
    line-height: normal; /* Reset line height */
}
/* Specific height override for textarea */
.form-group textarea {
    height: auto; /* Let rows attribute control height */
    min-height: 100px;
    resize: vertical;
}
/* Specific height for select might be needed if text wraps */
.form-group select {
   /* height: 48px; */ /* Already set above */
   padding: 12px 10px; /* Adjust padding for select */
   background-color: white; /* Ensure background for select */
}


.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 35, 66, 0.1);
    outline: none;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    opacity: 1;
}

.evaluation-form button[type="submit"] {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    /* Inherits .btn .btn-primary */
}

/* --- Style for split phone inputs --- */
.phone-inputs {
    display: flex;
    align-items: stretch; /* Alinea items para que tengan la misma altura */
    gap: 10px; /* Espacio entre select e input */
}

/* Style for the country code dropdown */
.phone-inputs select#phone_prefix {
    /* --- Control de Tamaño --- */
    width: 160px; /* <<<--- Aumentado (prueba este valor, ajusta si es necesario) */
    flex-shrink: 0;

    /* --- Estilos Comunes (asegurar consistencia) --- */
    padding: 12px 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-secondary);
    height: 48px; /* Altura consistente */
    box-sizing: border-box;
    background-color: white;
    line-height: normal;
    appearance: none; /* Quitar estilo nativo para mejor control */
    -webkit-appearance: none;
    -moz-appearance: none;

    /* --- Añadir flecha desplegable personalizada --- */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.6rem center; /* Ajusta posición de flecha */
    background-size: 14px 10px; /* Tamaño de flecha */
    padding-right: 2.5rem; /* Espacio para la flecha */
    cursor: pointer;
}
.phone-inputs select#phone_prefix:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 35, 66, 0.1);
    outline: none;
}

/* Make the main phone number input fill remaining space */
.phone-inputs input#phone_number {
    /* --- Flexbox --- */
    flex-grow: 1;   /* Permitir que crezca */
    flex-basis: 0;   /* Base de crecimiento */
    min-width: 0; /* Permitir que encoja si es necesario */

    /* --- Estilos Comunes (asegurar consistencia) --- */
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-secondary);
    height: 48px; /* Altura consistente */
    box-sizing: border-box;
    line-height: normal;
}
.phone-inputs input#phone_number:focus {
     border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 35, 66, 0.1);
    outline: none;
}
/* --- Responsive Styles --- */

/* Header Responsive */
@media (max-width: 992px) {
    .header-container {
        flex-wrap: wrap;
        position: relative;
    }
    .main-navigation {
        display: none;
        width: 100%;
        order: 3;
        margin-top: 15px;
        background-color: var(--background-light);
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 10px 0;
        z-index: 999;
    }
    .main-navigation.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .main-navigation ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .main-navigation li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    .main-navigation li a {
       display: block;
       padding: 12px 15px;
       width: 100%;
       box-sizing: border-box;
    }
    .main-navigation li .btn-login {
       margin: 10px auto;
       display: inline-block;
       width: auto;
       padding: 8px 18px;
    }
    .mobile-nav-toggle {
        display: block;
        order: 2;
    }
    .language-switcher {
        order: 1;
        margin-left: auto;
        margin-right: 15px;
    }
    /* Hero Responsive */
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { font-size: 1.1rem; }
}

/* Further Responsive adjustments */
@media (max-width: 768px) {
    /* Headings */
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    /* Hero */
    .hero-section {
         height: auto;
         min-height: 450px;
         padding: 80px 0;
    }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1rem; }
    .hero-content .btn-lg {
        padding: 12px 30px;
        font-size: 1rem;
    }

    /* Testimonials */
    .testimonials-cta-section h2 { font-size: 1.8rem; }
    .testimonial-card { padding: 25px 20px; }
    .cta-buttons .btn { /* Ensure buttons stack or fit okay */
        display: inline-block;
        margin: 10px 5px;
    }

    /* Video */
    .video-promo-section h2 { font-size: 1.8rem; }
    .video-wrapper { max-width: 100%; border-radius: 4px; }

    /* Form */
    .evaluation-form-section h2 { font-size: 1.8rem; }
    .evaluation-form-section p { font-size: 1rem; }
    .evaluation-form { padding: 30px 20px; }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
   .site-name { /* Optionally hide name */
     /* display: none; */
   }
    .language-switcher { font-size: 0.8rem; margin-right: 10px; }
    .language-switcher .flag-icon { width: 18px; }
    .mobile-nav-toggle { font-size: 1.6rem; }
    .main-navigation li a { padding: 10px 15px; }

    /* Optional: Stack phone inputs on very small screens */
    /*
    .phone-inputs {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    .phone-inputs select#phone_prefix {
        width: 100%;
    }
    .phone-inputs input#phone_number {
         width: 100%;
         min-width: unset; // Reset min-width if stacking
    }
    */
}

/* --- Social Feed Section --- */
.social-feed-section {
    background-color: var(--background-grey); /* Light grey background */
    padding: 60px 0;
}

/* Center heading and paragraph */
.social-feed-section h2,
.social-feed-section p {
    text-align: center;
}
.social-feed-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}
.social-feed-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #555; /* Darker grey for paragraph */
    max-width: 650px; /* Limit width */
    margin-left: auto;
    margin-right: auto;
}

/* Placeholder layout */
.social-feed-placeholder {
    display: flex;
    flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
    justify-content: space-around;
    gap: 30px; /* Space between columns */
}

.feed-column {
    flex: 1; /* Each column tries to take equal space */
    min-width: 280px; /* Minimum width before wrapping */
    background-color: var(--background-light); /* White background */
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
}
.feed-column h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}
.feed-column p { /* Style for the placeholder text */
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
}
/* Button style for small buttons (if not already defined) */
.btn-sm {
    padding: 8px 15px;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
   .social-feed-section h2 { font-size: 1.8rem; }
   .social-feed-section p { font-size: 1rem; }
}

/* --- Footer Styles --- */
/* --- Footer Styles --- */
.site-footer {
    background-color: var(--primary-color); /* Dark blue background */
    color: rgba(255, 255, 255, 0.85); /* Slightly off-white text for footer */
    padding: 60px 0 30px 0; /* Increased top padding, adjusted bottom */
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-content {
    display: grid;
    /* Auto-fit columns, min width 220px for potentially more content */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px; /* Space between columns */
    margin-bottom: 40px; /* Space below the main content columns */
}

.footer-col h4 {
    font-family: var(--font-primary);
    color: var(--text-light); /* White heading */
    margin-bottom: 20px; /* Space below heading */
    font-size: 1.15rem; /* Slightly larger */
    font-weight: 600;
}

.footer-col p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8); /* Consistent paragraph color */
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px; /* Slightly more space between links */
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.8); /* Consistent link color */
    transition: color 0.3s ease, opacity 0.3s ease;
}
.footer-col ul a:hover {
    color: var(--text-light); /* Brighter white on hover */
    opacity: 1;
}

/* Social Icons in Footer */
.social-icons {
    margin-top: 20px; /* More space above icons */
}
.social-icons a {
    margin-right: 18px; /* More space between icons */
    display: inline-block;
    opacity: 0.8; /* Start slightly more transparent */
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.social-icons a:hover {
    opacity: 1;
    transform: translateY(-2px); /* Slight lift on hover */
}
.social-icons img {
    width: 32px;  /* Tamaño que ajustaste */
    height: 32px; /* Tamaño que ajustaste */
    filter: brightness(0) invert(1); /* White icons */
}
.social-icons a:last-child {
    margin-right: 0;
}

/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--secondary-color); /* Separator line */
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75); /* Slightly lighter text */
}
.footer-bottom p {
    margin: 10px 0; /* Vertical space */
}
.confidentiality-notice {
    font-size: 0.8rem;
    margin-bottom: 15px;
    max-width: 700px; /* Limit width for readability */
    margin-left: auto;
    margin-right: auto;
}
.confidentiality-notice a {
    color: var(--accent-color);
    text-decoration: underline;
}
.confidentiality-notice a:hover {
    color: var(--text-light);
}

/* --- Responsive Footer --- */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr; /* Stack columns */
        text-align: center;
    }
    .footer-col {
        margin-bottom: 20px; /* Add space between stacked columns */
    }
    .footer-col:last-child {
        margin-bottom: 0;
    }
    .footer-col .social-icons { /* Center icons */
        justify-content: center;
        display: flex;
    }
    .footer-col ul { /* Center list block */
       display: inline-block;
       text-align: left; /* Keep link text left-aligned */
    }
}


/* --- WhatsApp Chat Button --- */

.whatsapp-chat-button {
    position: fixed; /* Keep it fixed relative to viewport */
    bottom: 40px; /* Distance from bottom */
    right: 40px; /* Distance from right */
    background-color: #25D366; /* Official WhatsApp Green */
    color: white; /* Fallback if image fails or for font icons */
    width: 60px;  /* Button size */
    height: 60px; /* Button size */
    border-radius: 50%; /* Circular shape */
    display: flex; /* Center the icon inside */
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.25); /* Slightly more pronounced shadow */
    z-index: 999; /* Ensure it's above most other content */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
    text-decoration: none; /* Remove underline if any from 'a' tag */
}
.whatsapp-chat-button img {
    width: 32px; /* Size of the WhatsApp icon image */
    height: 32px; /* Size of the WhatsApp icon image */
    /* No filter needed if using the correct color SVG/PNG */
}
.whatsapp-chat-button:hover {
    transform: scale(1.1); /* Slightly larger on hover */
    box-shadow: 0 8px 20px rgba(0,0,0,0.3); /* Enhanced shadow on hover */
}

/* Ensure it's visible over other elements if necessary */
/* body > .whatsapp-chat-button { z-index: 1000; } /* More specific z-index if needed */






/* --- Social Feed Section --- */
.social-feed-section {
    background-color: var(--background-grey); /* Light grey background */
    padding: 60px 0;
}

/* Center heading and paragraph */
.social-feed-section h2,
.social-feed-section p {
    text-align: center;
}
.social-feed-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary-color); /* Ensure heading color */
}
.social-feed-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #555; /* Darker grey for paragraph */
    max-width: 650px; /* Limit width for better readability */
    margin-left: auto;
    margin-right: auto;
}

/* Placeholder layout */
.social-feed-placeholder {
    display: flex;
    flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
    justify-content: space-around; /* Distribute space around columns */
    gap: 30px; /* Space between columns */
}

.feed-column {
    flex: 1; /* Each column tries to take equal space */
    min-width: 280px; /* Minimum width before wrapping/stacking */
    background-color: var(--background-light); /* White background for columns */
    padding: 30px 25px; /* Padding inside columns */
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06); /* Slightly more pronounced shadow */
    text-align: center;
    display: flex; /* Use flex to better control button position */
    flex-direction: column;
    justify-content: space-between; /* Push button to bottom if content varies */
}
.feed-column h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.6rem; /* Slightly larger heading for columns */
}
.feed-column p { /* Style for the placeholder text */
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
    flex-grow: 1; /* Allow paragraph to take up space */
}
/* Button style for small buttons (if not already defined elsewhere) */
/* Ensure .btn-sm and .btn-outline are defined or add their styles */
.btn-sm {
    padding: 8px 15px;
    font-size: 0.85rem;
    /* Add other .btn properties if needed, like font-family, border-radius etc. */
    /* or ensure it inherits from a global .btn */
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* --- Responsive adjustments for Social Feed --- */
@media (max-width: 768px) {
   .social-feed-section h2 { font-size: 1.8rem; }
   .social-feed-section p { font-size: 1rem; }
   /* Grid already handles stacking, but you can adjust padding for columns if needed */
   .feed-column {
       padding: 25px 20px;
   }
}

/* === About Us Page Specific Styles (nosotros.html) === */

/* General Page Hero (can be reused on other subpages) */
.page-hero {
    background-size: cover;
    background-position: center center;
    color: var(--text-light);
    padding: 100px 0; /* Adjust padding as needed */
    text-align: center;
    position: relative; /* For overlay */
}
.page-hero::before { /* Dark overlay for text readability */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 35, 66, 0.65); /* Adjust opacity as needed */
    z-index: 1;
}
.page-hero .container {
    position: relative; /* Ensure content is above overlay */
    z-index: 2;
}
.page-hero h1 {
    font-size: 3rem; /* Adjust size */
    color: var(--text-light);
    margin-bottom: 15px;
}
.page-hero p {
    font-size: 1.25rem; /* Adjust size */
    max-width: 750px;
    margin: 0 auto;
    opacity: 0.9;
    color: var(--text-light); /* Ensure paragraph is also light */
}

/* General Section Padding (can be reused) */
.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}
.section-padding-grey {
    background-color: var(--background-grey);
    padding-top: 80px;
    padding-bottom: 80px;
}
.section-title.text-center { /* For centered section titles */
    text-align: center;
    margin-bottom: 50px; /* Space below title */
    font-size: 2.2rem; /* Consistent section title size */
}


/* Company Info Section (Misión, Visión, Valores) */
.company-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px; /* If no section title, reduce top margin */
}

.info-card {
    background-color: var(--background-light);
    padding: 35px 30px; /* More padding */
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: left; /* Default to left for content */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.info-card-icon {
    width: 50px; /* Adjust as needed */
    height: 50px;
    margin-bottom: 20px;
    /* For SVGs, you could apply color via CSS filter or fill property */
    /* filter: invert(37%) sepia(98%) saturate(1239%) hue-rotate(147deg) brightness(92%) contrast(97%); (Example turquoise) */
}
.info-card h2 {
    font-size: 1.6rem; /* Card title size */
    margin-bottom: 15px;
    color: var(--primary-color);
}
.info-card p, .info-card ul {
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.85; /* Slightly less opacity for body text */
    line-height: 1.7;
}
.info-card ul {
    list-style: disc; /* Or use custom icons */
    padding-left: 20px; /* Indent list */
    margin-top: 15px; /* Space above list if it follows a paragraph */
}
.info-card ul li {
    margin-bottom: 8px;
}
.info-card ul li strong {
    font-weight: 600; /* Make strong text bolder */
    color: var(--secondary-color); /* Darker color for emphasis */
}

/* Trajectory Section */
.trajectory-section h2 { /* Uses .section-title already */
   /* No extra styles needed if using .section-title */
}
.trajectory-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns by default */
    gap: 50px; /* More gap */
    align-items: center;
}
.trajectory-text p {
    margin-bottom: 20px; /* More space between paragraphs */
    line-height: 1.8; /* More line height for readability */
    font-size: 1.05rem; /* Slightly larger text */
}
.trajectory-text .btn { /* Button if added */
    margin-top: 20px;
}
.trajectory-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    width: 100%; /* Ensure image is responsive within its column */
}

/* Responsive for Trajectory & Info Cards */
@media (max-width: 992px) {
    .page-hero h1 { font-size: 2.5rem; }
    .page-hero p { font-size: 1.1rem; }

    .trajectory-content {
        grid-template-columns: 1fr; /* Stack on tablets */
    }
    .trajectory-image {
        margin-top: 30px; /* Space above image when stacked */
        order: -1; /* Optional: Put image first when stacked */
        max-width: 500px; /* Limit image width when stacked */
        margin-left: auto;
        margin-right: auto;
    }
    .trajectory-text {
        text-align: left; /* Keep text left-aligned or center if preferred */
    }
}
@media (max-width: 768px) {
    .section-title.text-center { font-size: 1.8rem; margin-bottom: 30px;}
    .info-card h2 {font-size: 1.4rem;}
    .info-card { padding: 25px 20px; }

    .company-info-grid { /* Already stacks due to auto-fit */
        gap: 20px;
    }
}

/* === Services Page Specific Styles (servicios.html) === */

/* Page Hero for Services (uses general .page-hero styles from nosotros.html) */
/* No new styles needed if you're happy with the existing .page-hero */

/* Services Overview Section */
.services-overview-section .lead-paragraph { /* Para el párrafo introductorio */
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

/* Pricing Table Section */
.pricing-table-section {
    /* background-color: var(--background-grey); /* Ya aplicado con .section-padding-grey */
}
.pricing-table-section .section-title {
    /* text-align: center; margin-bottom: 50px; /* Ya aplicado con .text-center */
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch; /* Hace que todas las tarjetas intenten tener la misma altura */
    margin-top: 20px;
}

.pricing-plan {
    background-color: var(--background-light);
    border-radius: 10px;
    box-shadow: 0 7px 25px rgba(0,0,0,0.08);
    padding: 35px 30px; /* Más padding */
    text-align: center;
    display: flex;
    flex-direction: column; /* Para que el botón CTA se quede abajo */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* Para el tag "Most Popular" */
}
.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

/* Estilo para el plan destacado */
.pricing-plan.plan-featured {
    border: 3px solid var(--accent-color); /* Borde de acento */
    transform: scale(1.03); /* Ligeramente más grande */
    z-index: 1; /* Para que esté por encima de otros planes si se superponen un poco con scale */
}
.pricing-plan.plan-featured:hover {
    transform: scale(1.03) translateY(-10px); /* Mantener scale en hover */
}

.featured-tag {
    position: absolute;
    top: -15px; /* Que sobresalga un poco */
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color); /* Mismo color que el borde del plan destacado */
    color: var(--text-light);
    padding: 6px 18px; /* Padding del tag */
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header {
    margin-bottom: 20px;
}
/* Badges para los Tiers (Reutiliza estilos de consultores.html si los tienes, o define aquí) */
/* Estos son placeholders, necesitarás el CSS de los badges de la página de consultores si ya los creaste */
.plan-tier-badge {
    display: inline-block;
    padding: 8px 20px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem; /* Ajusta tamaño */
    color: var(--text-light);
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
.tier-top-badge { background: linear-gradient(45deg, #6c757d, #495057); } /* Gris oscuro */
.tier-plus-badge { background: linear-gradient(45deg, var(--accent-color), #238c75); } /* Turquesa (como el featured) */
.tier-prime-badge { background: linear-gradient(45deg, #D4AF37, #C0982C); } /* Dorado */


.plan-header h3 { /* Nombre del plan */
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}
.plan-subtitle { /* Descripción corta del plan */
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 0; /* Quitamos margen para que quede pegado al h3 si es corto */
}
.plan-price {
    margin: 20px 0 25px 0; /* Espacio alrededor del precio */
}
.plan-price .price-amount {
    font-size: 3.2rem; /* Precio grande */
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}
.plan-price .price-period {
    font-size: 1rem;
    color: #777;
    margin-left: 5px;
    text-transform: lowercase;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0; /* Espacio debajo de la lista de características */
    text-align: left; /* Características alineadas a la izquierda */
    flex-grow: 1; /* Empuja el botón CTA hacia abajo */
}
.plan-features li {
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start; /* Alinear icono con la primera línea si el texto es largo */
    color: #444; /* Color del texto de las características */
}
.plan-features .feature-icon {
    margin-right: 10px;
    font-size: 1.1rem; /* Tamaño del icono de check/cross */
    width: 20px; /* Ancho fijo para alinear texto */
    line-height: inherit; /* Para mejor alineación vertical */
}
.plan-features .feature-icon.check {
    color: var(--accent-color); /* Verde o color de éxito */
}
.plan-features .feature-icon.cross {
    color: #E74C3C; /* Rojo o color de "no incluido" */
}
.plan-features strong { /* Para destacar partes del texto de la característica */
    font-weight: 600;
    color: var(--text-dark);
}

.plan-cta {
    margin-top: auto; /* Asegura que el botón esté al final de la tarjeta flex */
}
.btn-block { /* Para que el botón ocupe todo el ancho del plan */
    display: block;
    width: 100%;
}

/* Service Details Section */
.service-details-section {
    /* padding: 60px 0;  Ya tiene .section-padding */
}
.service-details-section .section-title {
    /* text-align: center; margin-bottom: 50px; Ya tiene .text-center */
}
.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center; /* Centrar contenido de cada item */
    margin-top: 20px;
}
.service-detail-item {
    padding: 20px 15px; /* Padding dentro de cada item */
}
.service-detail-icon {
    width: 60px; /* Ajustar tamaño de los íconos de servicio */
    height: 60px;
    margin: 0 auto 20px auto; /* Centrar icono y espacio abajo */
    /* Si son SVGs, podrías colorearlos con filter o directamente en el SVG */
    /* filter: invert(37%) sepia(98%) saturate(1239%) hue-rotate(147deg) brightness(92%) contrast(97%); (ejemplo turquesa) */
}
.service-detail-item h4 {
    font-size: 1.25rem; /* Título del detalle de servicio */
    margin-bottom: 10px;
    color: var(--primary-color);
}
.service-detail-item p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive para Tabla de Precios */
@media (max-width: 991px) {
    .pricing-plan.plan-featured {
        transform: scale(1); /* Quitar scale para evitar problemas de layout al apilarse */
    }
     .pricing-plan.plan-featured:hover {
        transform: translateY(-10px); /* Mantener hover de elevación */
    }
}
@media (max-width: 768px) {
    .pricing-table {
        grid-template-columns: 1fr; /* Un solo plan por fila en móviles */
    }
    .pricing-plan {
        margin-bottom: 30px; /* Espacio entre planes apilados */
    }
    .pricing-plan:last-child {
        margin-bottom: 0;
    }
    .plan-price .price-amount { font-size: 2.8rem; } /* Ajustar tamaño de precio */
}

/* === Socios Page Specific Styles (socios.html) === */

/* Puedes usar .page-hero que ya está definido si te gusta como se ve */

.partners-introduction .lead-paragraph {
    font-size: 1.1rem; /* O el tamaño que prefieras */
    color: #555;
    line-height: 1.7;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Ajusta minmax según el tamaño deseado de logos */
    gap: 40px; /* Espacio entre logos */
    align-items: center; /* Centra los logos verticalmente si tienen alturas diferentes */
    margin-top: 30px;
}

.partner-card {
    background-color: var(--background-light); /* O transparent si prefieres solo el logo */
    padding: 20px;
    border-radius: 8px;
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Sombra sutil opcional */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.partner-card a {
    display: block; /* Para que toda la tarjeta sea clickeable si el logo está dentro de un <a> */
}

.partner-logo {
    max-width: 100%; /* Asegura que el logo no se desborde */
    max-height: 80px; /* Limita la altura máxima de los logos para uniformidad, ajusta según necesidad */
    height: auto;
    margin: 0 auto; /* Centra el logo si es más pequeño que el contenedor */
    object-fit: contain; /* Asegura que el logo se vea completo sin distorsión */
}

/* Opcional: Estilos para nombre y descripción si los añades debajo del logo */
.partner-card .partner-name {
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}
.partner-card .partner-description {
    font-size: 0.9rem;
    color: #666;
}

.become-a-partner-cta .btn-lg { /* Si usas btn-lg para el CTA */
    margin-top: 20px;
}


/* === Consultants Page Specific Styles (consultores.html) - REVISED === */

.consultants-intro .lead-paragraph {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

/* Nueva clase para la cuadrícula general de consultores */
.all-consultants-section .section-title {
    margin-bottom: 40px; /* Más espacio antes de la cuadrícula */
}

/* Reutilizamos .consultants-grid pero podemos añadir una clase modificadora para 3 columnas */
.consultants-grid-3-cols {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Ajusta minmax para 3 columnas responsivas */
    gap: 30px;
}
@media (min-width: 992px) { /* Forzamos 3 columnas en pantallas más grandes */
    .consultants-grid-3-cols {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 767px) { /* 2 columnas en tablets pequeñas */
    .consultants-grid-3-cols {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}
@media (max-width: 576px) { /* 1 columna en móviles */
    .consultants-grid-3-cols {
        grid-template-columns: 1fr;
    }
}


/* Estilos de .consultant-card (pueden ser los mismos de antes, con pequeños ajustes) */
.consultant-card {
    background-color: var(--background-light);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    padding: 25px;
    text-align: center; /* El contenido de la tarjeta centrado */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.consultant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.consultant-photo {
    width: 120px; /* Ligeramente más pequeño para que quepa más info */
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border: 3px solid var(--accent-color);
}

.consultant-name {
    font-size: 1.25rem; /* Un poco más pequeño */
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.consultant-role { /* Nuevo campo para el Título/Rol principal */
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
    min-height: 1.8em; /* Para alinear si algunos son más cortos (2 líneas aprox) */
}

.consultant-specialties { /* Nuevo campo para especialidades */
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 10px;
    line-height: 1.5;
    text-align: left; /* Alinear especialidades a la izquierda dentro de la tarjeta */
    padding-left: 10px; /* Pequeña indentación para el texto de especialidades */
}
.consultant-specialties strong {
    display: block; /* Para que "Specialties:" esté en su propia línea si se desea */
    margin-bottom: 3px;
    color: var(--secondary-color);
}


.consultant-bio-short { /* Descripción corta */
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 0; /* Sin margen inferior si no hay botón en la tarjeta pública */
    text-align: left; /* Alinear bio a la izquierda */
    padding-left: 10px; /* Pequeña indentación */
}

.consultants-cta .btn-lg {
    margin-top: 20px;
}



/* === Login Page Specific Styles (login.html) === */

.login-page-main {
    background-color: var(--background-grey); /* Un fondo suave para la página de login */
    min-height: calc(100vh - var(--header-height, 100px) - var(--footer-height-minimal, 80px)); /* Ajusta header/footer height */
    display: flex;
    align-items: center; /* Centrar verticalmente el contenido */
}

.login-section {
    width: 100%;
}

.login-box {
    display: flex;
    background-color: var(--background-light);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden; /* Para que el borde redondeado afecte a los hijos */
    max-width: 900px; /* Ancho máximo de la caja de login */
    margin: 0 auto;
}

.login-image-side {
    flex-basis: 45%;
    /* background-color: var(--primary-color); /* Quita o comenta esto si la imagen cubre todo */
    background-image: url('../images/login-illustration.png'); /* Ruta a tu imagen */
    background-size: cover; /* Escala la imagen para cubrir todo el contenedor, puede recortar partes */
    /* O usa 'contain' si quieres que se vea toda la imagen, puede dejar espacios: */
    /* background-size: contain; */
    /* background-repeat: no-repeat; */
    background-position: center center; /* Centra la imagen */
    display: flex; /* Puedes mantener flex si quieres superponer texto o un overlay */
    align-items: center;
    justify-content: center;
    padding: 40px; /* El padding puede seguir si quieres que el contenido interno respete un margen */
    position: relative; /* Útil si quieres añadir un overlay de color */
}

/* Elimina el <img> del HTML dentro de .login-image-side: */
/* Ya no necesitas esto en el HTML: */
/* <img src="images/login-illustration.svg" alt="AI and professional development illustration" loading="lazy"> */

/* Opcional: Si quieres un overlay de color sobre la imagen de fondo para mejorar la legibilidad del texto (si añades texto encima) o para darle un tinte: */
.login-image-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 35, 66, 0.5); /* Tu --primary-color con opacidad, ajusta el 0.5 */
    z-index: 1; /* Overlay por encima de la imagen de fondo */
}
.login-image-side > * { /* Cualquier contenido directo (como un h2) debe estar por encima del overlay */
    position: relative;
    z-index: 2;
}


.login-form-side {
    flex-basis: 55%; /* Porcentaje del ancho para el formulario */
    padding: 40px 50px; /* Más padding horizontal */
}

.login-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.login-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    text-align: center;
}

.login-form .form-group {
    margin-bottom: 20px;
}
.login-form label { /* Estilos de label heredados de .form-group label, ajustar si es necesario */
    font-weight: 600;
    font-size: 0.9rem;
}
.login-form input[type="email"],
.login-form input[type="password"] {
    /* Estilos heredados de .form-group input, ajustar si es necesario */
    height: 50px; /* Altura consistente */
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-bottom: 25px;
}
.form-options .remember-me {
    display: flex;
    align-items: center;
    color: #555;
    cursor: pointer;
}
.form-options .remember-me input[type="checkbox"] {
    margin-right: 8px;
    /* Estilos personalizados para checkbox si se desea */
}
.form-options .forgot-password-link {
    color: var(--accent-color);
    text-decoration: none;
}
.form-options .forgot-password-link:hover {
    text-decoration: underline;
}

.btn-login-submit.btn-block { /* Para el botón de login principal */
    padding: 15px;
    font-size: 1.1rem;
}

.login-footer-links {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
}
.login-footer-links p {
    color: #555;
    margin-bottom: 0;
}
.login-footer-links a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}
.login-footer-links a:hover {
    text-decoration: underline;
}

/* Para mensajes de error */
.form-error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Footer minimalista opcional */
.footer-minimal .footer-bottom {
    border-top: none; /* Quitar el borde si no hay más contenido en el footer */
    padding-top: 20px;
    padding-bottom: 20px;
}
.footer-minimal .confidentiality-notice {
    font-size: 0.75rem;
}

/* Responsive para la página de login */
@media (max-width: 768px) {
    .login-box {
        flex-direction: column;
        max-width: 450px; /* Caja de login más estrecha en móviles */
    }
.login-image-side {
    flex-basis: 15%; /* O el porcentaje que desees */
    background-image: url('../images/login-illustration.png'); /* ¡ASEGÚRATE QUE LA RUTA Y NOMBRE SEAN CORRECTOS! */
    background-size: cover; /* Esto hace que la imagen cubra todo el div, puede recortar partes para mantener la proporción */
    background-position: center center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    
    /* Las siguientes son opcionales pero pueden ser útiles */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px; /* Si quieres un espacio interno, aunque con 'cover' la imagen podría quedar debajo */
    position: relative; /* Si vas a añadir un overlay de color o texto encima */

    /* QUITA o COMENTA la siguiente línea si la imagen debe reemplazar completamente el color de fondo: */
    /* background-color: var(--primary-color); */
}

/* Opcional: Si quieres un overlay de color semitransparente SOBRE la imagen de fondo */
/* .login-image-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 35, 66, 0.4); /* Ejemplo: tu azul primario con 50% de opacidad */
/*    z-index: 1;
} */

/* Si tienes texto u otro contenido DIRECTO dentro de .login-image-side (además del fondo), asegúrate que esté visible */
/* .login-image-side > * {
    position: relative;
    z-index: 2;
    color: white; /* Ejemplo si el overlay es oscuro */
/* } */


/* === Blog Page Specific Styles (noticias.html)



/* === Blog Page Specific Styles (noticias.html) - CONSOLIDADO Y REVISADO === */

.blog-main-content .blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr; /* 2 tercios para posts, 1 tercio para sidebar */
    gap: 40px;
}

/* Estilo base para todos los resúmenes de post */
.blog-post-summary {
    background-color: var(--background-light);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-post-summary .post-thumbnail-link {
    display: block;
}
.blog-post-summary .post-thumbnail { /* Estilo general de thumbnail */
    width: 100%;
    height: 220px; /* Altura base, se ajustará para featured y secondary */
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.blog-post-summary:hover .post-thumbnail {
    transform: scale(1.03);
}

.blog-post-summary .post-content {
    padding: 25px 30px;
    display: flex; /* Para que el botón "Read More" se pueda empujar abajo */
    flex-direction: column;
    flex-grow: 1; /* Para que el contenido ocupe el espacio */
}

.blog-post-summary .post-title { /* Título base */
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.3; /* Buen line-height para títulos */
}
.blog-post-summary .post-title a {
    color: var(--primary-color);
    text-decoration: none;
}
.blog-post-summary .post-title a:hover {
    color: var(--accent-color);
}

.blog-post-summary .post-meta {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 15px;
}
.blog-post-summary .post-meta a {
    color: #555;
    text-decoration: none;
}
.blog-post-summary .post-meta a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.blog-post-summary .post-excerpt {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1; /* Para que el excerpt ocupe espacio y empuje el botón */
}
.blog-post-summary .btn-sm { /* Para el botón Read More */
    margin-top: auto; /* Empuja el botón al final si el contenido es variable */
    align-self: flex-start; /* Alinea el botón a la izquierda */
}


/* Estilo para el post destacado */
.blog-post-summary.featured-post {
    margin-bottom: 40px; /* Espacio antes de la cuadrícula secundaria */
    /* No necesita display:flex o flex-direction aquí porque ya lo hereda de .blog-post-summary */
}
.featured-post .post-thumbnail {
    height: 350px; /* Imagen más grande para el post destacado */
}
.featured-post .post-title {
    font-size: 2rem; /* Título más grande para el post destacado */
}




/* Contenedor para los artículos secundarios en 2 columnas */
.secondary-posts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Forma explícita de dos columnas de igual fracción */
    gap: 30px;
    border: 3px dashed blue; /* Para ver claramente el contenedor grid */
    padding: 10px; /* Para que el borde no se pegue a los ítems */
}



/* Ajustes para los artículos dentro de .secondary-posts-grid */
.secondary-posts-grid > .blog-post-summary { /* Usando hijo directo y siendo muy específico */
    border: 2px solid green; /* Para ver claramente cada ítem del grid */
    background-color: #e0ffe0; /* Fondo claro para ver el área del ítem */
    min-width: 0; /* Muy importante */
    /* ¡Vamos a quitar temporalmente el flex interno para simplificar al máximo! */
    /* display: flex; */ /* COMENTA ESTO TEMPORALMENTE */
    /* flex-direction: column; */ /* COMENTA ESTO TEMPORALMENTE */
}

.secondary-posts-grid .post-thumbnail {
    height: 100px; /* Imágenes un poco más pequeñas para los artículos secundarios */
}

.post-title-secondary, /* Clase para títulos de posts secundarios */
.secondary-posts-grid .blog-post-summary .post-title { /* Más específico */
    font-size: 1.3rem; /* Títulos más pequeños */
}

.secondary-posts-grid .post-excerpt {
    font-size: 0.9rem; /* Extracto un poco más pequeño */
}


/* Paginación (sin cambios) */
.blog-pagination {
    margin-top: 40px;
    text-align: center;
}
.blog-pagination .page-numbers {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 3px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--primary-color);
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}
.blog-pagination .page-numbers.dots {
    border: none;
    padding: 8px 5px;
}


/* --- Barra Lateral del Blog (Sidebar) --- (sin cambios significativos) */
.blog-sidebar .widget {
    background-color: var(--background-grey);
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 30px;
}
.blog-sidebar .widget:last-child {
    margin-bottom: 0;
}

.blog-sidebar .widget-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.widget-search .search-form {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}
.widget-search .search-form input[type="search"] {
    flex-grow: 1;
    padding: 10px 15px;
    border: none;
    outline: none;
    font-size: 0.9rem;
    height: 44px;
    box-sizing: border-box;
}
.widget-search .search-form .btn-search {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 0 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}
.widget-search .search-form .btn-search:hover {
    background-color: var(--accent-color);
}
.widget-search .search-form .btn-search img {
    width: 18px;
    height: 18px;
    filter: invert(1);
}

.widget-recent-posts ul,
.widget-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.widget-recent-posts li,
.widget-categories li {
    margin-bottom: 10px;
}
.widget-recent-posts li:last-child,
.widget-categories li:last-child {
    margin-bottom: 0;
}
.widget-recent-posts a,
.widget-categories a {
    color: #444;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.widget-recent-posts a:hover,
.widget-categories a:hover {
    color: var(--accent-color);
}
.widget-categories a {
    display: flex;
    justify-content: space-between;
}

.widget-cta p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}
.widget-cta .newsletter-form input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-bottom: 10px;
    box-sizing: border-box;
    height: 44px;
}
.widget-cta .newsletter-form .btn-block {
    font-size: 0.95rem;
    padding: 10px;
}

/* Responsive para el Blog (ajustado para la nueva estructura) */
@media (max-width: 991px) {
    .blog-main-content .blog-layout {
        grid-template-columns: 1fr; /* Apilar en tablets */
    }
    .blog-sidebar {
        margin-top: 40px; /* Espacio cuando la sidebar se apila */
    }
}
@media (max-width: 768px) {
    .secondary-posts-grid { /* En tablets más pequeñas y móviles, una columna para los secundarios */
        grid-template-columns: 1fr;
    }
    .secondary-posts-grid .blog-post-summary {
         margin-bottom: 30px; /* Añadir margen inferior cuando están apilados */
    }
    .secondary-posts-grid .blog-post-summary:last-child {
         margin-bottom: 0;
    }

    .featured-post .post-thumbnail {
        height: 280px;
    }
    .featured-post .post-title {
        font-size: 1.6rem;
    }
    .post-title-secondary,
    .secondary-posts-grid .blog-post-summary .post-title {
        font-size: 1.2rem;
    }
}




.secondary-posts-grid > .blog-post-summary {
    border: 2px solid red !important; /* Solo para ver si se seleccionan */
    width: auto !important; /* Forzar que el ancho sea automático */
    min-width: 0 !important; /* Evitar anchos mínimos problemáticos */
    background-color: lightblue; /* Para ver el área que ocupan */
}

/*
=================================================================
== INTRANET CONSULTOR - SIDEBAR PERSONALIZADO (V3.1 - Calibrado)
=================================================================
*/

/* Contenedor del nombre de usuario en el sidebar */
.sidebar-wrapper .sidebar-user-profile {
    padding: 25px 15px; /* Espaciado vertical y horizontal */
    text-align: center; /* CENTRADO, como se solicitó */
    border-bottom: 1px solid #e9ecef; /* Separador sutil (un gris muy claro) */
}

/* Estilo del nombre del consultor - CALIBRADO CON PRECISIÓN */
.sidebar-wrapper .sidebar-user-profile .user-name {
    /* --- FUENTE Y COLOR (Igual a los módulos de navegación) --- */
    font-family: var(--font-primary); /* Usa la fuente principal 'Montserrat' */
    color: var(--primary-color);     /* #0A2342 - Azul oscuro, igual que los módulos */
    font-weight: 600;                /* Mismo grosor que los títulos de navegación (semi-bold) */
    font-size: 0.9rem;               /* Tamaño de fuente consistente con la navegación */
    text-transform: uppercase;       /* MAYÚSCULAS, como los módulos */
    letter-spacing: 0.5px;           /* Mismo espaciado entre letras para un look profesional */

    /* --- Estructura y Alineación --- */
    display: block;                  /* Ocupa todo el ancho para un centrado correcto */
    line-height: 1.4;                /* Espacio vertical si el nombre ocupa dos líneas */
}```

---

**Análisis de la Solución Definitiva:**

*   **`font-family: var(--font-primary);`**: Usamos la variable global de tu propio CSS para asegurar que use la fuente 'Montserrat'.
*   **`color: var(--primary-color);`**: Aplicamos el color azul oscuro (`#0A2342`) que usas en los títulos y enlaces, que es el que se ve en la captura para "MI DASHBOARD".
*   **`font-weight: 600;`**: Este es el grosor exacto que utilizas en la navegación principal. Es el responsable de darle esa apariencia "semi-bold".
*   **`font-size: 0.9rem;` y `text-transform: uppercase;`**: Calibramos el tamaño y lo ponemos en mayúsculas para que sea un reflejo 1 a 1 de los otros elementos del menú.
*   **`text-align: center;` (en el contenedor)**: Cumple tu requisito de que el nombre esté perfectamente centrado.

Con este bloque de código, la apariencia del nombre del consultor quedará estéticamente perfecta y totalmente integrada con el resto de la interfaz. ¡Misión cumplida