/* ================================= */
/*          Reset General            */
/* ================================= */
html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #F9F9F9; /* Blanco hueso */
    color: #003F63; /* Azul oscuro */
}

/* ================================= */
/*         Barra de Navegación       */
/* ================================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F9F9F9; /* Blanco hueso */
    padding: 10px 20px;
    border-bottom: 2px solid #2176C1;
    position: fixed; /* Barra fija */
    top: 0;
    left: 0;
    width: 97%;
    z-index: 1000;
    height: 70px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 93px;
    margin-right: 10px;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.1));
}

.site-name {
    font-size: 20px;
    font-weight: bold;
    color: #003F63;
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu a {
    text-decoration: none;
    color: #003F63;
    font-size: 16px;
    font-weight: bold;
}

.menu a:hover {
    color: #FF6F3C; /* Naranja */
}

.highlight {
    background-color: #FF6F3C;
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 15px;
}

.highlight:hover {
    background-color: #e65b30;
}

/* Menú Hamburguesa */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    background-color: #003F63;
    height: 3px;
    width: 25px;
    margin: 3px 0;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    list-style: none;
    flex-direction: column;
    background-color: #F9F9F9;
    position: absolute;
    top: 70px;
    right: 10px;
    width: 80%;
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.mobile-menu a {
    text-decoration: none;
    color: #003F63;
    font-size: 16px;
    font-weight: bold;
}

.mobile-menu li {
    margin: 10px 0;
}

/* ================================= */
/*           Hero Section            */
/* ================================= */
.hero-section {
    margin-top: 30px;
    padding: 120px 20px 50px;
    text-align: center;
    background-color: #F9F9F9; /* Fondo blanco hueso */
    color: #003F63;
}

.hero-content .logo {
    width: 150px;
    margin-bottom: 20px;
    filter: none; /* Sin sombras innecesarias */
}

.hero-content h1 {
    font-size: 32px;
    color: #003F63;
    margin-bottom: 20px;
}

.hero-buttons {
    margin-top: 20px;
}

.cta-button {
    text-decoration: none;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

.cta-button.primary {
    background-color: #FF6F3C;
}

.cta-button.primary:hover {
    background-color: #e65b30;
}

.cta-button.secondary {
    background-color: #2176C1;
}

.cta-button.secondary:hover {
    background-color: #185493;
}

/* ================================= */
/*           Secciones Extra         */
/* ================================= */
.about{
    padding: 20px;
}

.recent-questions {
    background-color: #F9F9F9;
    padding: 30px 20px;
}

.recent-questions ul {
    list-style-type: none;
    padding: 0;
}

.recent-questions li {
    background-color: white;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.resources {
    padding: 30px 20px;
    text-align: center;
}

.resource-card {
    background-color: #2176C1;
    color: white;
    padding: 15px;
    margin: 10px;
    display: inline-block;
    border-radius: 5px;
}

.video-placeholder {
    width: 100%;
    height: 200px;
    background-color: #88D498;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.benefits {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
    background-color: #F9F9F9;
    border-radius: 8px;
}

.benefits h2 {
    color: #003F63;
    margin-bottom: 20px;
}

.benefits ul {
    list-style: none;
    padding: 0;
}

.benefits li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #003F63;
}

/* ================================= */
/*            Formularios            */
/* ================================= */
.ask-question,
.join-form,
.availability-management {
    margin: 100px auto;
    max-width: 600px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.ask-question h1,
.join-form h2,
.availability-management h1 {
    text-align: center;
    color: #003F63;
    margin-bottom: 20px;
}

.ask-question input,
.ask-question select,
.ask-question textarea,
.join-form input,
.join-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.ask-question button,
.join-form button {
    background-color: #FF6F3C;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    width: 100%;
}

.ask-question button:hover,
.join-form button:hover {
    background-color: #e65b30;
}

/* ================================= */
/*              Footer               */
/* ================================= */
footer {
    background-color: #003F63;
    color: white;
    text-align: center;
    padding: 20px;
}

footer .social-icons a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

/* ================================= */
/*         Responsive Design         */
/* ================================= */
@media (max-width: 768px) {
    .menu {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    #mobile-menu.show {
        display: flex;
    }
}


/* Hero Section */
.hero-section {
    padding: 100px 20px;
    text-align: center;
    background-color: #F9F9F9;
    color: #003F63;
}

.hero-section h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 18px;
}

/* Últimas Noticias y Eventos */
.latest-news, .community-forum, .upcoming-events, .participation-form {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.latest-news h2,
.community-forum h2,
.upcoming-events h2,
.participation-form h2 {
    color: #003F63;
    text-align: center;
    margin-bottom: 20px;
}

.news-card {
    background-color: #FFFFFF;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.news-card h3 {
    color: #2176C1;
}

.news-card p, .news-card span {
    color: #555;
}

/* Foro de la Comunidad */
.community-forum ul {
    list-style: none;
    padding: 0;
}

.community-forum li {
    margin-bottom: 15px;
    padding: 15px;
    background-color: #FFFFFF;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.community-forum a {
    color: #FF6F3C;
    text-decoration: none;
}

.community-forum a:hover {
    text-decoration: underline;
}

/* Próximos Eventos */
.upcoming-events ul {
    list-style: none;
    padding: 0;
}

.upcoming-events li {
    padding: 10px;
    margin-bottom: 10px;
    background-color: #F9F9F9;
    border-radius: 5px;
}

/* Formulario de Participación */
.participation-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.participation-form input,
.participation-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.participation-form button {
    background-color: #FF6F3C;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.participation-form button:hover {
    background-color: #e65b30;
}


/* ================================= */
/*            Hero Section           */
/* ================================= */
.contact-hero {
    background-color: #F9F9F9;
    padding: 80px 20px;
    text-align: center;
    color: #003F63;
}

.contact-hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-hero p {
    font-size: 18px;
    color: #555;
}

/* ================================= */
/*        Formulario de Contacto     */
/* ================================= */
.contact-form {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    text-align: center;
    color: #003F63;
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #003F63;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form button {
    background-color: #FF6F3C;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

.contact-form button:hover {
    background-color: #e65b30;
}

/* ================================= */
/*      Información de Contacto      */
/* ================================= */
.contact-info {
    text-align: center;
    padding: 20px;
    background-color: #F9F9F9;
    color: #003F63;
    border-radius: 8px;
}

.contact-info h2 {
    margin-bottom: 10px;
}

.contact-info a {
    color: #2176C1;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* ================================= */
/*        Frase Inspiradora          */
/* ================================= */
.quote-section {
    text-align: center;
    margin: 40px 20px;
    padding: 20px;
    background-color: #2176C1;
    color: white;
    border-radius: 8px;
}

.quote-section blockquote {
    font-size: 20px;
    font-style: italic;
    margin: 0;
}

.quote-section strong {
    display: block;
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}


/* Hero Section */
.meet-hero {
    background-color: #2176C1; /* Azul del logo */
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.meet-hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.meet-hero p {
    font-size: 18px;
}

/* Sección de Conexión */
.connection-section {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.buttons-container {
    margin-bottom: 20px;
}

.connection-section a {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    width: 80%;
    text-align: center;
}

.connection-section a.primary {
    background-color: #FF6F3C;
}

.connection-section a.secondary {
    background-color: #2176C1;
}

.link-section {
    text-align: left;
    margin-top: 20px;
}

.link-section label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #003F63;
}

.link-section input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
}

.link-section button {
    width: 100%;
    padding: 10px;
    background-color: #FF6F3C;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.link-section button:hover {
    background-color: #e65b30;
}

/* Instrucciones */
.instructions-section {
    margin: 40px auto;
    max-width: 800px;
    padding: 20px;
    background-color: #F9F9F9;
    border-radius: 8px;
    text-align: left;
}

.instructions-section ol {
    line-height: 1.8;
    color: #555;
}

.instructions-section li strong {
    color: #2176C1;
}


/* Chat Section */
.chat-section {
    margin: 40px auto;
    max-width: 600px;
    padding: 20px;
    background-color: #F9F9F9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.chat-section h2 {
    text-align: center;
    color: #003F63;
    margin-bottom: 10px;
}

.chat-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-box {
    height: 300px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    overflow-y: auto;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.chat-input {
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.chat-input button {
    padding: 10px 20px;
    background-color: #FF6F3C;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.chat-input button:hover {
    background-color: #e65b30;
}

/* Enlace a Experiencia 60+ */
.experiencia60-link {
    margin: 40px auto;
    max-width: 800px;
}

.experience-card {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    color: #003F63;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.experience-card img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}

.experience-description {
    padding: 20px;
    text-align: left;
}

.experience-description h3 {
    margin: 0 0 10px;
    font-size: 1.5rem;
    color: #003F63;
}

.experience-description p {
    margin: 0;
    font-size: 1rem;
    color: #555;
}


/* Submenú desplegable */
.menu .submenu {
    position: relative;
}

.menu .submenu .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 200px;
}

.menu .submenu .dropdown li {
    display: block;
    margin: 0;
}

.menu .submenu .dropdown a {
    display: block;
    padding: 10px 15px;
    color: #003F63;
    text-decoration: none;
    transition: background-color 0.3s;
}

.menu .submenu .dropdown a:hover {
    background-color: #FF6F3C;
    color: white;
}

/* Mostrar el submenú al pasar el ratón */
.menu .submenu:hover .dropdown {
    display: block;
}

/* Submenú en el menú móvil */
.mobile-menu li ul.dropdown {
    display: none;
    padding-left: 10px;
}

.mobile-menu li:hover ul.dropdown {
    display: block;
}

.menu li a::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background-size: contain;
    vertical-align: middle;
}
.menu li:nth-child(2) a::before {
    background-image: url('img/icon-acerca-de.png');
}
.menu li:nth-child(3) a::before {
    background-image: url('img/icon-proyectos.png');
}
.menu li:nth-child(4) a::before {
    background-image: url('img/icon-eventos.png');
}
.menu li:nth-child(6) a::before {
    background-image: url('img/icon-faqs.png');
}


.mobile-menu a {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
}

.mobile-menu a:hover {
    background-color: #FF6F3C;
    color: white;
}

.pillars ul, .projects ul {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.pillars li, .projects li {
    margin-bottom: 15px;
    font-size: 16px;
    color: #003F63;
}

.pillars li strong, .projects li strong {
    font-weight: bold;
    color: #2176C1; /* Azul para destacar */
}
.cta-button.primary {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    text-align: center;
    color: white;
    background-color: #FF6F3C;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button.primary:hover {
    background-color: #e65b30;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px;
        margin-top: 60px;
    }

    .cta-button.primary {
        width: 100%; /* Botón ocupa todo el ancho en móvil */
        text-align: center;
    }
}

/* Estilo para la cabecera principal */
.hero-section h1 {
    font-size: 2.5rem;
    color: #003F63;
    text-align: center;
    background: linear-gradient(90deg, #2176C1, #FF6F3C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.hero-section p {
    text-align: center;
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Tarjetas de proyectos */
.project-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.project-card h3 {
    color: #2176C1;
    margin-bottom: 10px;
}

.project-card p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Botones */
.cta-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button.primary {
    background-color: #FF6F3C;
}

.cta-button.primary:hover {
    background-color: #e65b30;
}

.cta-button.secondary {
    background-color: #2176C1;
}

.cta-button.secondary:hover {
    background-color: #185493;
}

/* Colaboradores */
.collaborators {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.collaborators img {
    max-width: 100px;
    max-height: 100px;
    border: 2px solid #ddd;
    border-radius: 50%;
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collaborators img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Historias de éxito */
.success-story {
    background-color: #F9F9F9;
    border-left: 5px solid #2176C1;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.success-story h3 {
    color: #003F63;
    margin-bottom: 10px;
}

.success-story p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* Sección de Llamado a la Acción */
.cta {
    text-align: center;
    background-color: #003F63;
    color: #ffffff;
    padding: 40px 20px;
    border-radius: 10px;
    margin: 40px 0;
}

.cta h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-buttons a {
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
}

.hero-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #F9F9F9; /* Fondo neutro */
    color: #003F63; /* Azul oscuro */
    margin-bottom: 40px;
}

.hero-section h1 {
    font-size: 2.5rem;
    color: #2176C1; /* Azul principal */
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 1.2rem;
    color: #555; /* Gris suave */
    line-height: 1.6;
}

.event-list {
    padding: 20px;
    background-color: #FFFFFF; /* Fondo blanco */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.event-item {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #F9F9F9; /* Fondo neutro */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.event-item h3 {
    font-size: 1.5rem;
    color: #2176C1; /* Azul principal */
    margin-bottom: 10px;
}

.event-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 10px;
}

.event-item .cta-button {
    font-size: 1rem;
    padding: 10px 20px;
}

.event-form {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.event-form h2 {
    text-align: center;
    color: #003F63; /* Azul oscuro */
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.event-form p {
    text-align: center;
    color: #555;
    font-size: 1rem;
    margin-bottom: 30px;
}

.event-form label {
    display: block;
    font-size: 1rem;
    color: #003F63;
    font-weight: bold;
    margin-bottom: 5px;
}

.event-form input, .event-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.event-form textarea {
    resize: vertical; /* Permitir solo ajuste vertical */
}

.event-form button {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background-color: #FF6F3C;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.event-form button:hover {
    background-color: #e65b30;
}
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 20px;
    }

    .event-item {
        padding: 15px;
    }

    .event-form {
        padding: 20px;
    }

    .event-form h2 {
        font-size: 1.5rem;
    }

    .event-form button {
        font-size: 1rem;
        padding: 10px;
    }
}

/* Estilo para la sección Hero */
.hero-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #F9F9F9; /* Fondo neutro */
    color: #003F63; /* Azul oscuro */
    margin-bottom: 40px;
}

.hero-section h1 {
    font-size: 2.5rem;
    color: #2176C1; /* Azul principal */
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 1.2rem;
    color: #555; /* Gris suave */
    line-height: 1.6;
}

/* Estilo para la lista de preguntas frecuentes */
.faq-list {
    margin: 20px auto;
    max-width: 800px;
    padding: 20px;
    background-color: #FFFFFF; /* Fondo blanco */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-list h2 {
    color: #003F63; /* Azul oscuro */
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #2176C1; /* Línea decorativa */
    padding-bottom: 10px;
}

.faq-item {
    margin-bottom: 20px;
    padding: 15px;
    border-left: 4px solid #2176C1; /* Línea decorativa */
    background-color: #F9F9F9; /* Fondo neutro */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    background-color: #EAF4FC; /* Azul claro al pasar el ratón */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    font-size: 1.4rem;
    color: #2176C1; /* Azul principal */
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1rem;
    color: #555; /* Gris suave */
    line-height: 1.6;
}

/* Estilo para enlaces dentro de FAQ */
.faq-item a {
    color: #FF6F3C; /* Naranja */
    text-decoration: none;
    font-weight: bold;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Responsividad */
@media (max-width: 768px) {
    .faq-list {
        padding: 15px;
    }

    .faq-item {
        padding: 10px;
    }

    .faq-item h3 {
        font-size: 1.2rem;
    }

    .faq-item p {
        font-size: 0.9rem;
    }
}

/* gd.html */

/* Estilo General de la Sección */
.metodologia-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px 0;
    padding: 20px;
    background-color: #F9F9F9; /* Fondo neutro */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.metodologia-section .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.metodologia-section .content.reverse {
    flex-direction: row-reverse; /* Invertir el orden: Imagen izquierda, texto derecha */
}

.metodologia-section .text {
    flex: 1;
    max-width: 50%;
}

.metodologia-section .image {
    flex: 1;
    max-width: 45%;
    text-align: center;
}

.metodologia-section .image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.metodologia-section .text h2 {
    font-size: 1.8rem;
    color: #003F63;
    margin-bottom: 10px;
}

.metodologia-section .text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.metodologia-section .text ul, .metodologia-section .text ol {
    margin-left: 20px;
}

.metodologia-section .text ul li, .metodologia-section .text ol li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #003F63;
}



.metodologia-section .image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #F9F9F9;
    color: #003F63;
}

.hero-section h1 {
    font-size: 2.5rem;
    color: #2176C1;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

.cta {
    text-align: center;
    padding: 40px 20px;
    background-color: #003F63;
    color: white;
    border-radius: 10px;
    margin-top: 40px;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FF6F3C;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e65b30;
}

@media (max-width: 768px) {
    .metodologia-section .content {
        flex-direction: column;
    }

    .metodologia-section .text, .metodologia-section .image {
        max-width: 100%;
    }

    .cta {
        padding: 20px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .metodologia-section {
        margin: 20px 0;
        padding: 15px;
    }

    .cta {
        margin-top: 20px;
    }
}
@media (max-width: 768px) {
    .cta-button {
        font-size: 1.4rem;
        padding: 12px 24px;
    }
}


/* DGMakers1Moment Styles */
.one-moment {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.content-section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #F9F9F9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    font-size: 1.8rem;
    color: #003F63;
    margin-bottom: 15px;
}

.content-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.content-section ul, .content-section ol {
    margin-left: 20px;
}

.content-section ul li, .content-section ol li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #003F63;
}

blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #003F63;
    margin: 20px 0;
    padding-left: 20px;
    border-left: 4px solid #FF6F3C;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #F9F9F9;
    border-bottom: 2px solid #2176C1;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 70px;
}

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

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu li a {
    text-decoration: none;
    color: #003F63;
    font-size: 16px;
    font-weight: bold;
}

.submenu .dropdown {
    display: none;
    position: absolute;
    background-color: #FFF;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 5px;
}

.submenu:hover .dropdown {
    display: block;
}

.mobile-menu {
    display: none;
}

.hamburger {
    display: none;
}

@media (max-width: 768px) {
    .menu {
        display: none;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
        background-color: #F9F9F9;
        padding: 10px;
        list-style: none;
    }

    .mobile-menu a {
        padding: 10px 0;
        color: #003F63;
        font-weight: bold;
        text-decoration: none;
    }
}

/* General Styles for Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #F9F9F9;
    border-bottom: 2px solid #2176C1;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu li {
    position: relative;
}

.menu li a {
    text-decoration: none;
    color: #003F63;
    font-weight: bold;
}

.submenu .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    border-radius: 5px;
    min-width: 200px;
}

.submenu:hover .dropdown {
    display: block;
}

.dropdown li {
    padding: 10px 20px;
}

.dropdown li a:hover {
    color: #FF6F3C;
}

/* Estilo general para los submenús */
.submenu > a {
    position: relative;
    padding-right: 15px; /* Espacio para la flecha */
}

.submenu > a .arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px; /* Tamaño del ícono de la flecha */
    color: #003F63; /* Azul oscuro */
    transition: transform 0.3s ease; /* Animación */
}

/* Rotar la flecha hacia arriba al abrir el menú */
.submenu:hover > a .arrow {
    transform: translateY(-50%) rotate(180deg);
}

/* Estilo adicional para el menú desplegable */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    border-radius: 5px;
    min-width: 200px;
}

.submenu:hover .dropdown {
    display: block;
}

.dropdown li {
    padding: 10px 20px;
}

.dropdown li a {
    color: #003F63;
    text-decoration: none;
}

.dropdown li a:hover {
    color: #FF6F3C;
}

/* Adaptación para el menú móvil */
.mobile-menu .submenu > a .arrow {
    position: static;
    margin-left: 10px; /* Alinear la flecha en el móvil */
}


/* Estilos para la Tutoría */
.tutoria-container {
    display: flex;
    flex-direction: row;
    height: calc(100vh - 70px); /* Resta la altura del menú */
    margin-top: 70px;
}

/* Zona de Chat */
.chat-section {
    flex: 1;
    background-color: #F9F9F9;
    border-right: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.chat-section h2 {
    font-size: 18px;
    color: #003F63;
    margin-bottom: 10px;
}

.chat-window {
    flex: 1;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 10px;
    background-color: white;
    margin-bottom: 10px;
    border-radius: 5px;
}

.message {
    margin-bottom: 10px;
    font-size: 14px;
}

.username {
    font-weight: bold;
    color: #003F63;
}

.chat-input {
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.chat-input button {
    background-color: #FF6F3C;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.chat-input button:hover {
    background-color: #e65b30;
}

/* Zona de Videoconferencia */
.video-section {
    flex: 1.5;
    background-color: #F9F9F9;
    border-right: 1px solid #ccc;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-section h2 {
    font-size: 18px;
    color: #003F63;
    margin-bottom: 10px;
}

.video-window iframe {
    width: 100%;
    height: calc(100% - 30px); /* Espacio para el título */
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Zona Principal */
.main-section {
    flex: 3;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.main-section h2 {
    font-size: 18px;
    color: #003F63;
    margin-bottom: 10px;
}

.screen-share iframe {
    width: 100%;
    height: calc(100% - 30px);
    border: 1px solid #ccc;
    border-radius: 5px;
}
