:root {
    --accent-color: #F5F5F5;
    --gold-color: #BC955C;
    --gray-color: #777;
    --light-text: #fff;
    --primary-color: #691C32;
    --secondary-color: #10312B;
    --text-color: #333;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-image: none;
    color: var(--text-color);
    line-height: 1.6;
    padding: 0;
}

body::after {
    display: none;
}

.main-container {
    background-color: #fff;
    border: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    margin: 0 auto;
    max-width: 100%;
    padding-bottom: 50px;
    padding-top: 50px;
    position: relative;
}

body,
.main-container {
    background-color: #fff !important;
    color: var(--text-color)!important;
}

.main-container::before {
    background-image: url('./assets/images/franja.jpg');
    background-position: center;
    background-repeat: repeat-x;
    background-size: auto 100%;
    content: "";
    height: 50px;
    left: 0;
    position: absolute;
    top: 25px;
    width: 100%;
}

.main-container::after {
    background-image: url('./assets/images/franja.jpg');
    background-position: center;
    background-repeat: repeat-x;
    background-size: auto 100%;
    bottom: 0;
    content: "";
    height: 50px;
    left: 0;
    position: absolute;
    width: 100%;
}

header {
    background-color: #fff;
    padding: 25px 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

.logo-svg-container {
    align-items: center;
    background-color: #fff;
    display: flex;
    justify-content: center;
    margin: 0 auto 20px;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
}

.header-flex-container {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 100%;
    padding: 0 20px;
}

.woman-logo-container {
    align-items: center;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    flex: 0 0 33%;
    justify-content: center;
    padding-right: 20px;
}

.woman-logo-img {
    background: transparent;
    border: none;
    box-shadow: none;
    filter: drop-shadow(0 0 0 transparent);
    height: auto;
    max-width: 100%;
    mix-blend-mode: multiply;
}

.header-text {
    flex: 0 0 67%;
    text-align: left;
}

.header-text h1,
.header-text h2 {
    color: var(--primary-color);
}

.logo-img {
    height: auto;
    margin-bottom: 15px;
    width: 480px;
    padding-top: 15px;
}

.header-text h1 {
    margin-bottom: 5px;
}

.header-text h2 {
    font-weight: normal;
}

.info-bar {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 5px 0;
    text-align: center;
}

.info-bar a {
    color: var(--light-text);
    text-decoration: none;
}

nav {
    background-color: var(--gold-color);
    padding: 10px 0;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--light-text);
    font-weight: bold;
    padding: 5px 10px;
    text-decoration: none;
    transition: all .3s ease;
}

nav ul li a:hover {
    background-color: var(--primary-color);
    border-radius: 4px;
}

.hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    height: 400px;
    overflow: hidden;
    padding: 0;
    position: relative;
}

/* Efecto de alas de águila estilizadas */
.hero::before {
    background-image: radial-gradient(ellipse at 25% 50%, rgba(188, 149, 92, 0.2)0%, rgba(188, 149, 92, 0)60%), radial-gradient(ellipse at 75% 50%, rgba(188, 149, 92, 0.2)0%, rgba(188, 149, 92, 0)60%), repeating-linear-gradient(45deg, rgba(188, 149, 92, 0.05)0px, rgba(188, 149, 92, 0.05)2px, transparent 2px, transparent 4px), repeating-linear-gradient(-45deg, rgba(188, 149, 92, 0.05)0px, rgba(188, 149, 92, 0.05)2px, transparent 2px, transparent 4px);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.hero-container {
    display: flex;
    height: 100%;
    position: relative;
    width: 100%;
    z-index: 2;
}

.hero-image {
    background-image: url('./assets/images/gob_woman.jpg');
    background-position: center;
    background-size: cover;
    flex: 1;
}

.hero-content {
    align-items: center;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
    text-align: center;
}

.hero-content h2 {
    /* Usando el color dorado correcto */
    margin-bottom: 15px;
    color: var(--gold-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    color: var(--text-color);
    margin-bottom: 20px;
}

.btn {
    /* Usando el color primario (guinda) */
    color: var(--light-text);
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    display: inline-block;
    font-weight: bold;
    padding: 12px 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.section-title {
    color: var(--secondary-color);
    font-weight: 700;
    margin: 40px 0 30px;
    text-align: center;
}

.features {
    background-color: var(--accent-color);
    padding: 60px 20px;
    text-align: center;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
}

.feature-card {
    background-color: var(--light-text);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    flex: 1 1 300px;
    overflow: hidden;
    transition: transform .3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.feature-content {
    padding: 20px;
}

.feature-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.announcements {
    margin: 0 auto;
    max-width: 1200px;
    padding: 60px 20px;
}

.announcements-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.announcement {
    background-color: #f9f9f9;
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 5px 5px 0;
    flex: 1 1 300px;
    padding: 15px;
}

.announcement h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.announcement-date {
    color: #777;
    margin-bottom: 10px;
}

.mission-vision {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 60px 20px;
    text-align: center;
}

.mission-vision-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
}

.mission-box,
.vision-box {
    background-color: rgba(255, 255, 255, .1);
    border-radius: 10px;
    flex: 1 1 400px;
    padding: 30px;
}

.mission-box h3,
.vision-box h3 {
    color: var(--gold-color);
    margin-bottom: 20px;
}

.programs {
    background-color: var(--accent-color);
    padding: 60px 20px;
    text-align: center;
}

.programs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
}

.program-card {
    background-color: var(--light-text);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    flex: 1 1 200px;
    overflow: hidden;
    transition: transform .3s ease;
}

.program-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, .2);
    transform: translateY(-10px);
}

.program-card img {
    height: 180px;
    object-fit: cover;
    width: 100%;
}

.program-content {
    padding: 20px;
}

.program-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.directory {
    margin: 0 auto;
    max-width: 1200px;
    padding: 60px 20px;
}

.directory-table {
    border-collapse: collapse;
    margin-top: 30px;
    width: 100%;
}

.directory-table th,
.directory-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.directory-table th {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.directory-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.directory-table tr:hover {
    background-color: #e6e6e6;
}

footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
}

.footer-section {
    flex: 1 1 300px;
    text-align: left;
}

.footer-section h3 {
    color: var(--gold-color);
    margin-bottom: 20px;
}

.footer-section p,
.footer-section address {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-links a {
    color: var(--light-text);
    transition: color .3s ease;
}

.social-links a:hover {
    color: var(--gold-color);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 30px;
    padding-top: 20px;
}

.copyright a {
    color: var(--gold-color);
    font-weight: bold;
    text-decoration: none;
    transition: all .3s ease;
}

.copyright a:hover {
    color: white;
    text-shadow: 0 0 3px rgba(255, 255, 255, .5);
}

.accordion {
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    align-items: center;
    background-color: var(--primary-color);
    color: var(--light-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    transition: all .3s ease;
}

.accordion-header:hover {
    background-color: var(--secondary-color);
}

.accordion-header::after {
    content: '\002B';
    font-weight: bold;
}

.accordion-header.active::after {
    content: '\2212';
}

.accordion-content {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.accordion-content-inner {
    padding: 20px;
}

.tab-buttons {
    border-bottom: 1px solid #ddd;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.tab-button {
    background-color: #f1f1f1;
    border: none;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    margin-bottom: -1px;
    margin-right: 2px;
    padding: 10px 20px;
    transition: background-color .3s;
}

.tab-button:hover {
    background-color: #ddd;
}

.tab-button.active {
    background-color: var(--secondary-color);
    border-bottom: none;
    color: white;
}

.tab-content {
    border: 1px solid #ddd;
    border-top: none;
    display: none;
    line-height: 1.6;
    padding: 25px;
}

.tab-content.active {
    display: block;
}

.tab-content h4 {
    border-bottom: 2px solid var(--gold-color);
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    text-align: center;
}

.tab-content p {
    margin-bottom: 15px;
}

.tab-content ul {
    margin-bottom: 20px;
    margin-left: 25px;
}

.tab-content li {
    margin-bottom: 8px;
    padding-left: 5px;
    position: relative;
}

.tab-content p strong {
    color: var(--secondary-color);
    display: inline-block;
    margin-bottom: 5px;
    margin-top: 15px;
}

.tab-content p:has(strong) {
    margin-top: 20px;
}

.tab-content h4+p:has(strong) {
    margin-top: 15px;
}

.social-icon {
    align-items: center;
    background-color: rgba(255, 255, 255, .2);
    border-radius: 50%;
    color: white;
    display: flex;
    height: 40px;
    justify-content: center;
    transition: all .3s ease;
    width: 40px;
}

.social-icon:hover {
    background-color: var(--gold-color);
    transform: translateY(-3px);
}

.directory-table th:nth-child(4),
.directory-table td:nth-child(4) {
    min-width: 150px;
}

.carousel-container {
    background-color: rgba(0, 0, 0, .05);
}

img[data-src]:not([src]) {
    opacity: 0 !important;
}

.carousel-container::before {
    animation: spin 1s infinite linear;
    border: 3px solid #ddd;
    border-radius: 50%;
    border-top-color: var(--primary-color);
    content: "";
    height: 30px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%)rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%)rotate(360deg);
    }
}

.carousel-container img[src]~.carousel-container::before {
    display: none;
}

.social-feed {
    background-color: #f8f9fa;
    padding: 60px 20px;
}

.social-feed-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
}

.tigris-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 20px;
    font-size: 16px;
}

.tigris-section p {
    font-size: 1em !important;
}

.tigris-section .section-title {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 2.5rem !important;
}

.tigris-subtitle {
    color: #6c757d;
    font-size: 1.5rem !important;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: center;
}

.tigris-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.tigris-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    border-radius: 50px;
    color: white;
    font-weight: bold;
    padding: 8px 20px;
    position: absolute;
    right: 20px;
    top: -15px;
    text-transform: uppercase;
    font-size: 0.85rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.tigris-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    overflow: hidden;
}

.tigris-info {
    flex: 1 1 500px;
    padding: 40px;
}

.tigris-volumen {
    color: var(--secondary-color);
    font-size: 1.4rem !important;
    margin-bottom: 5px;
}

.tigris-periodo {
    color: #6c757d;
    font-size: 1.15rem !important;
    margin-bottom: 25px;
}

.tigris-description {
    font-size: 1.25rem !important;
    line-height: 1.8;
    margin-bottom: 18px;
}

.tigris-teaser {
    color: #495057;
    font-size: 1.15rem !important;
    line-height: 1.7;
    margin-bottom: 28px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.tigris-teaser p {
    font-size: 1.25rem !important;
    line-height: 1.6;
}

.teaser-highlight {
    color: var(--primary-color);
    font-size: 1.4rem !important;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.teaser-highlight i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.teaser-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.teaser-list li {
    padding: 15px 0;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
    font-size: 1.2rem !important;
}

.teaser-list li:last-child {
    border-bottom: none;
}

.teaser-list li i {
    color: var(--secondary-color);
    margin-top: 4px;
    font-size: 1.3rem;
    min-width: 25px;
}

.teaser-list li strong {
    color: var(--primary-color);
    font-size: 1.25rem !important;
}

.teaser-closing {
    color: #495057;
    font-style: italic;
    padding: 15px;
    background: rgba(188, 149, 92, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 1.2rem !important;
    line-height: 1.5;
}

.teaser-closing i {
    color: var(--secondary-color);
    font-size: 1.4rem;
}

.tigris-btn {
    background: linear-gradient(135deg, var(--secondary-color), #9a7b4f);
    border: none;
    color: white;
    display: inline-flex;
    font-size: 1.2rem !important;
    padding: 18px 35px;
}

.tigris-btn:hover {
    background: linear-gradient(135deg, #8a6b3f, #8a6b3f);
    transform: translateY(-2px);
}

.tigris-cover {
    flex: 1 1 300px;
    background: linear-gradient(135deg, var(--primary-color), #1a3a5c);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 40px;
}

.tigris-cover-link {
    text-decoration: none;
    color: inherit;
    width: 100%;
    display: block;
}

.tigris-cover-preview {
    background: rgba(255, 255, 255, 0.15);
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    color: white;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    font-size: 5rem;
    padding: 60px;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.tigris-cover-preview:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
}

.tigris-cover-img {
    max-width: 100%;
    max-height: 280px;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    object-fit: contain;
}

.tigris-cover-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tigris-cover-icon i {
    font-size: 4rem;
}

.tigris-cover-icon span {
    font-size: 1.4rem !important;
    margin-top: 15px;
}

.tigris-cover-note {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem !important;
    margin-top: 18px;
    text-align: center;
    font-weight: 500;
}

.tigris-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.tigris-feature {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex: 1 1 280px;
    max-width: 350px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.tigris-feature:hover {
    transform: translateY(-5px);
}

.tigris-feature i {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.tigris-feature h4 {
    color: var(--primary-color);
    font-size: 1.2rem !important;
    margin-bottom: 10px;
}

.tigris-feature p {
    color: #6c757d;
    font-size: 1rem !important;
}

.facebook-feed {
    flex: 1 1 500px;
    min-width: 340px;
}

.facebook-feed h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.fb-page-container {
    min-height: 400px;
    width: 100%;
}

.fb-fallback {
    background: linear-gradient(135deg, #f0f2f5, #e4e6eb);
    border: 2px dashed #ccc;
    border-radius: 15px;
    display: none;
    margin-top: 20px;
    padding: 30px 20px;
    text-align: center;
}

.fb-notice {
    color: #1c1e21;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.fb-notice i {
    color: #1877f2;
    margin-right: 8px;
}

.fb-btn {
    background: linear-gradient(135deg, #1877f2, #166fe5);
    border: none;
    color: white;
    display: inline-flex;
    gap: 10px;
    font-size: 1rem;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.fb-btn:hover {
    background: linear-gradient(135deg, #166fe5, #145dbf);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.social-info {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    display: flex;
    flex: 1 1 400px;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}

.social-info h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.social-info p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-large-icons {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.social-large-icon {
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 8px;
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    min-width: 120px;
    padding: 15px;
    text-decoration: none;
    transition: all .3s ease;
}

.social-large-icon i {
    margin-bottom: 10px;
}

.social-large-icon span {
    font-weight: bold;
}

.social-large-icon:hover {
    background-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(157, 36, 73, .3);
    color: white;
    transform: translateY(-5px);
}

.social-cta {
    background-color: var(--accent-color);
    border-left: 4px solid var(--gold-color);
    border-radius: 10px;
    margin-top: 20px;
    padding: 20px;
    text-align: center;
}

.social-cta strong {
    color: var(--primary-color);
}

.fb-page,
.fb-page iframe,
.fb-page span {
    display: block;
    margin: 0 auto;
    max-width: 500px;
    width: 100% !important;
}

/* Estilos para el menú móvil */
.mobile-menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    display: none;
    flex-direction: column;
    height: 30px;
    justify-content: space-between;
    padding: 0;
    position: absolute;
    right: 20px;
    top: 20px; /* Posicionado en la parte superior */
    width: 30px;
    z-index: 9999; /* Z-index muy alto para asegurar que esté por encima de todo */
}

.mobile-menu-toggle.active {
    box-shadow: 0 10px 7px rgba(0, 0, 0, 0.4);
}

.mobile-menu-toggle .bar {
    background-color: white;
    border-radius: 10px;
    display: block;
    height: 5px;
    transition: all 0.3s ease;
    width: 100%;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px)rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px)rotate(-45deg);
}

.features,
.programs,
.mission-vision,
.social-feed {
    background-color: var(--accent-color)!important;
    color: var(--text-color)!important;
}

.mission-vision {
    background-color: var(--primary-color)!important;
    color: var(--light-text)!important;
}

.tab-content,
.accordion-content {
    background-color: #fff !important;
}

.tab-content p,
.tab-content li {
    color: var(--text-color)!important;
}

a {
    -webkit-text-fill-color: inherit;
}

footer a {
    -webkit-text-fill-color: var(--gold-color);
}

/* Estilos para el botón flotante de WhatsApp */
.whatsapp-float {
    bottom: 30px;
    position: fixed;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button {
    align-items: center;
    background-color: #25D366;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: white;
    display: flex;
    padding: 10px 20px 10px 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-button i {
    font-size: 28px;
    margin-right: 8px;
}

.whatsapp-text {
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
}

/* Estilos para el ícono de TikTok en el footer */
.social-links a i.fab.fa-tiktok {
    font-size: 32px;
    margin-top: 8px;
}

/* Asegurando que el ícono de TikTok tenga el mismo espaciado en el bloque de redes sociales */
.social-large-icon i.fab.fa-tiktok {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Contenedor principal de pestañas con mejor estructura */
.tab-container {
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin-top: 25px;
}

/* Mejora para el contenido de pestañas */
.tab-content {
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    line-height: 1.6;
    padding: 25px 30px;
}

/* Estilo mejorado para los títulos de sección */
.tab-content h4 {
    border-bottom: 2px solid var(--gold-color);
    color: var(--primary-color);
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    text-align: center;
}

/* Mejora para los párrafos */
.tab-content > p {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding: 0 5px;
    text-align: justify;
}

/* Solución para la alineación de viñetas */
.tab-content ul {
    list-style-position: outside;
    margin: 15px 0 25px 0;
    padding-left: 25px;
}

/* Estilos personalizados para viñetas */
.tab-content ul li {
    list-style-type: none;
    margin-bottom: 10px;
    padding-left: 5px;
    position: relative;
    text-align: left;
}

/* Viñeta personalizada */
.tab-content ul li::before {
    color: var(--gold-color);
    content: "•";
    font-size: 1.2rem;
    font-weight: bold;
    left: -18px;
    position: absolute;
    top: -1px;
}

/* Destacado para títulos de módulos */
.tab-content p strong {
    background-color: rgba(16, 49, 43, 0.05);
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 5px 5px 0;
    color: var(--secondary-color);
    display: block;
    font-size: 1.1rem;
    margin-bottom: 10px;
    margin-top: 20px;
    padding: 8px 10px;
}

/* Separadores entre grupos de información */
.tab-content p + ul {
    border-bottom: 1px dashed #e0e0e0;
    margin-bottom: 25px;
    padding-bottom: 20px;
}

/* Último grupo sin borde inferior */
.tab-content p:last-of-type + ul {
    border-bottom: none;
    padding-bottom: 0;
}

/* Estilo para elementos con fuerte énfasis en listas */
.tab-content ul li strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Mejora en las pestañas para mejor visibilidad */
.tab-button {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
    font-weight: 500;
    margin-bottom: -1px;
    margin-right: 2px;
    padding: 12px 20px;
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
}

.tab-button:hover {
    background-color: #e8e8e8;
}

.tab-button.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* Indicador visual para pestañas activas */
.tab-button.active::after {
    background-color: white;
    bottom: -2px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
}

/* Estilos específicos para destacar la carrera de Ciberseguridad con la paleta de colores del gobierno */

/* Estilo para la nueva carrera en el acordeón */
/* Ajustes para pantallas grandes - revertir la transformación de escala que causa desalineación */
.accordion.new-career {
    transform: none; /* Eliminar la transformación de escala que causa desalineación */
    margin-bottom: 15px; /* Usar el mismo margen que los demás acordeones */
    border: none; /* Eliminar borde especial */
    border-radius: 8px; /* Mantener esquinas redondeadas */
    overflow: hidden; /* Mantener overflow hidden como los demás */
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1); /* Usar la misma sombra que los demás */
    position: relative; /* Mantener posición relativa */
    transition: transform 0.3s ease; /* Mantener transición solo para hover */
}

/* Restaurar efectos de hover pero sin desalineación */
.accordion.new-career:hover {
    transform: translateY(-5px); /* Usar translateY en lugar de scale para evitar desalineación */
    box-shadow: 0 5px 15px rgba(159, 34, 65, 0.3); /* Mantener sombra especial en hover */
}

/* Insignia de nueva carrera */
.cyber-header {
    align-items: center;
    background: linear-gradient(135deg, #9F2241, #691C32);
    color: #FFFFFF;
    display: flex;
    padding: 18px 20px;
    position: relative;
}

.cyber-header span {
    background-color: #BC955C;
    border-radius: 4px;
    color: #10312B;
    font-size: 0.8rem;
    font-weight: bold;
    margin-right: 12px;
    padding: 3px 8px;
    text-transform: uppercase;
}

/* Banner destacado para Ciberseguridad */
.cyber-banner {
    align-items: center;
    background: linear-gradient(135deg, #235B4E, #10312B);
    border-radius: 8px;
    color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding: 15px 20px;
    position: relative;
}

.cyber-logo {
    /* Establece un ancho fijo */
    height: 80px !important;
    /* Establece una altura fija */
    max-width: 80px !important;
    /* Limita el ancho máximo */
    object-fit: contain !important;
    /* Mantén el estilo circular */
    background-color: rgba(255, 255, 255, 0.1);
    /* Mantiene la proporción dentro de las dimensiones */
    border-radius: 50%;
    padding: 10px;
    width: 80px !important;
}

/* Ajuste específico para Firefox en dispositivos móviles */
@-moz-document url-prefix() {
    .cyber-logo {
        flex-shrink: 0;
    height: 80px !important;
    width: 80px !important;
    }
}

/* Asegúrate de que el contenedor no permita que la imagen se estire */
.cyber-banner {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cyber-tag {
    background-color: #BC955C;
    border-radius: 4px;
    color: #10312B;
    font-weight: bold;
    padding: 8px 15px;
    text-align: center;
}

/* Destacados de la carrera */
.cyber-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin: 30px 0;
}

.highlight-item {
    background-color: #FFFFFF;
    border-left: 4px solid #9F2241;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex: 1 1 30%;
    min-width: 200px;
    padding: 15px;
    text-align: center;
    transition: transform 0.2s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-item i {
    color: #9F2241;
    font-size: 2rem;
    margin-bottom: 10px;
}

.highlight-item h5 {
    color: #235B4E;
    margin: 10px 0;
}

/* Llamada a la acción */
.cyber-cta {
    background-color: #235B4E;
    border-radius: 8px;
    color: #FFFFFF;
    margin: 30px 0 10px;
    padding: 20px;
    text-align: center;
}

.cyber-cta p:first-child {
    color: #DDC9A3;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Estadísticas del campo laboral */
.cyber-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
    margin: 30px 0;
}

.stat-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 28%;
    min-width: 180px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    color: #9F2241;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-desc {
    color: #545454;
    font-size: 0.9rem;
}

/* Sectores laborales */
.cyber-job-sectors {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 20px 0;
}

.job-sector {
    flex: 1 1 45%;
    min-width: 250px;
}

.job-sector h5 {
    background-color: #691C32;
    border-radius: 4px;
    color: #FFFFFF;
    margin-bottom: 15px;
    padding: 8px 15px;
    text-align: center;
}

.cyber-future {
    background-color: #F9F9F9;
    border-left: 4px solid #BC955C;
    border-radius: 0 5px 5px 0;
    color: #545454;
    font-style: italic;
    margin-top: 30px;
    padding: 15px;
}

/* Mejoras en los tabs para esta sección */
.new-career .tab-button.active {
    background-color: #9F2241;
    border-color: #9F2241;
    color: #FFFFFF;
}

.new-career .tab-content h4 {
    border-bottom: 2px solid #BC955C;
    color: #691C32;
}

.new-career .tab-content p strong {
    color: #235B4E;
}

.new-career .tab-content ul li::before {
    color: #BC955C;
}

/* Mejora para el párrafo introductorio - evitar saltos de línea inadecuados */
.cyber-intro {
    color: #545454;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.cyber-intro strong {
    /* Mantiene "Técnico en Ciberseguridad" en una sola línea */
    color: #9F2241;
    white-space: nowrap;
}

/* Mejora de contraste en la sección de llamada a la acción */
.cyber-cta .cta-title {
    /* Color beige claro para mejor contraste */
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
    color: #DDC9A3;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.cyber-cta .cta-description {
    /* Blanco puro para mejor contraste */
    line-height: 1.5;
    color: #FFFFFF;
    font-size: 1.05rem;
}

/* Corrección específica para la sección de llamada a la acción */

/* Primero, redefinimos por completo la sección cyber-cta */
.cyber-cta {
    background-color: #235B4E;
    border-radius: 8px;
    margin: 30px 0 10px;
    padding: 20px;
    text-align: center;
}

/* Usamos selectores más específicos para el título y evitamos conflictos */
.cyber-cta p.cta-title {
    /* Aumentamos tamaño y forzamos con !important */
    font-weight: bold !important;
    /* Usamos blanco puro para mejor contraste */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5)!important;
    color: #FFFFFF !important;
    font-size: 1.4rem !important;
    margin-bottom: 15px !important;
}

/* También hacemos más específico el selector para la descripción */
.cyber-cta p.cta-description {
    /* Aseguramos color blanco */
    font-size: 1.1rem !important;
    color: #FFFFFF !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
}

/* Alternativa: usar un fondo más claro para la sección CTA */
.cyber-cta-alt {
    /* Fondo beige claro */
    border-radius: 8px;
    background-color: #DDC9A3;
    border: 2px solid #9F2241;
    margin: 30px 0 10px;
    padding: 20px;
    text-align: center;
}

.cyber-cta-alt p.cta-title {
    color: #691C32 !important;
    font-size: 1.8rem !important;
    font-weight: bold !important;
    margin-bottom: 15px !important;
}

.cyber-cta-alt p.cta-description {
    /* Verde oscuro para el texto secundario */
    font-size: 1.1rem !important;
    color: #10312B !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
}

.cyber-intro strong.career-name {
    /* Color guinda para destacar */
    font-weight: bold !important;
    /* Eliminar el borde izquierdo */
    border-radius: 0 !important;
    /* Eliminar el border-radius */
    padding: 0 !important;
    /* Eliminar el fondo */
    border-left: none !important;
    /* Eliminar el padding */
    margin: 0 !important;
    /* Eliminar los márgenes */
    font-size: inherit !important;
    /* Evitar saltos de línea */
    background-color: transparent !important;
    /* Forzar que sea en línea */
    white-space: nowrap !important;
    /* Usar el mismo tamaño de texto que el párrafo */
    color: #9F2241 !important;
    display: inline !important;
}

/* Estilos adicionales para la tarjeta de programa con enlace */
/* Añadir estos estilos al archivo style.css */

/* Asegurar que los enlaces en las tarjetas de programas hereden los colores y eliminen el subrayado */
.program-card a {
    color: inherit;
    text-decoration: none;
    display: block;
    height: 100%;
}

/* Mantener los estilos de hover para la tarjeta incluso con un enlace */
.program-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, .2);
    transform: translateY(-10px);
}

/* Añadir un pequeño indicador visual de que es un enlace */
.program-card a::after {
    content: "↗";
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--gold-color);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Mostrar el indicador al pasar el mouse */
.program-card:hover a::after {
    opacity: 1;
}

/* Asegurar que la tarjeta tenga posición relativa para el indicador */
.program-card {
    position: relative;
}

/* Estilos para contenedores de videos promocionales */
.career-video-container {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f8f8f8;
    padding: 15px;
    border-left: 4px solid #9E1B32;
}

.career-video-container h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.responsive-video {
    position: relative;
    padding-bottom: 56.25%; /* Relación de aspecto 16:9 */
    height: 0;
    overflow: hidden;
    margin-bottom: 10px;
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

/* Estilos específicos para destacar la carrera de Programación */
.prog-header {
    background: linear-gradient(135deg, var(--primary-color), var(--gold-color));
    color: #FFFFFF;
    display: flex;
    padding: 18px 20px;
    position: relative;
}

.prog-banner {
    align-items: center;
    background: linear-gradient(135deg, #2C3E50, #1A5276);
    border-radius: 8px;
    color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding: 15px 20px;
    position: relative;
}

/* Mejora para el párrafo introductorio - evitar saltos de línea inadecuados */
.prog-intro {
    color: #2C3E50;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.prog-intro strong.career-name {
    color: #2980B9;
    font-weight: bold !important;
    border-radius: 0 !important;
    padding: 0 !important;
    border-left: none !important;
    margin: 0 !important;
    font-size: inherit !important;
    background-color: transparent !important;
    white-space: nowrap !important;
    color: #2980B9 !important;
    display: inline !important;
}

/* Destacados de la carrera */
.prog-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin: 30px 0;
}

.prog-career .highlight-item {
    background-color: #FFFFFF;
    border-left: 4px solid #2980B9;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex: 1 1 30%;
    min-width: 200px;
    padding: 15px;
    text-align: center;
    transition: transform 0.2s ease;
}

.prog-career .highlight-item:hover {
    transform: translateY(-5px);
}

.prog-career .highlight-item i {
    color: #2980B9;
    font-size: 2rem;
    margin-bottom: 10px;
}

.prog-career .highlight-item h5 {
    color: #2C3E50;
    margin: 10px 0;
}

/* Llamada a la acción */
.prog-cta {
    background-color: #2C3E50;
    border-radius: 8px;
    color: #FFFFFF;
    margin: 30px 0 10px;
    padding: 20px;
    text-align: center;
}

.prog-cta p.cta-title {
    font-weight: bold !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5)!important;
    color: #FFFFFF !important;
    font-size: 1.4rem !important;
    margin-bottom: 15px !important;
}

.prog-cta p.cta-description {
    font-size: 1.1rem !important;
    color: #FFFFFF !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
}

/* Mejoras en los tabs para esta sección */
.prog-career .tab-button.active {
    background-color: #2980B9;
    border-color: #2980B9;
    color: #FFFFFF;
}

.prog-career .tab-content h4 {
    border-bottom: 2px solid #3498DB;
    color: #2C3E50;
}

.prog-career .tab-content p strong {
    color: #2980B9;
}

.prog-career .tab-content ul li::before {
    color: #3498DB;
}

/* Mantener el efecto hover igual que los demás acordeones */
.prog-header:hover {
    background: var(--secondary-color) !important;
}

/* Mantener el efecto hover igual que los demás acordeones para Ciberseguridad */
.cyber-header:hover {
    background: var(--secondary-color) !important;
}

/* Estilos para los recursos académicos de cada carrera */
.career-resources {
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-top: 25px;
    padding: 20px;
    text-align: center;
    border-left: 4px solid var(--gold-color);
}

.career-resources h5 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resource-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.resource-btn {
    background-color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    color: var(--light-text);
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 200px;
    justify-content: center;
}

.resource-btn:hover {
    background-color: var(--gold-color);
    border-color: var(--gold-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.resource-btn i {
    font-size: 1.1rem;
}

/* Responsive para botones de recursos */
@media (max-width: 768px) {
    .resource-buttons {
        flex-direction: column;
        align-items: center;
    }

    .resource-btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .career-resources {
        padding: 15px;
    }

    .career-resources h5 {
        font-size: 1.1rem;
    }

    .resource-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Estilos para la sección de Agenda de Actividades */
.agenda-section {
    margin: 0 auto;
    max-width: 1200px;
    padding: 60px 20px;
}

.agenda-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.agenda-preview {
    flex: 1 1 400px;
    position: relative;
}

.agenda-image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease;
    max-width: 800px;
    margin: 0 auto;
    background-color: #f8f9fa;
}

.agenda-image-container:hover {
    transform: translateY(-5px);
}

.agenda-preview-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    min-height: 109px;
    object-fit: contain;
}

.agenda-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(16, 49, 43, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.agenda-image-container:hover .agenda-overlay {
    opacity: 1;
}

.agenda-overlay i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--gold-color);
}

.agenda-overlay span {
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
}

.agenda-info {
    flex: 1 1 500px;
}

.agenda-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.agenda-info > p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--text-color);
    text-align: center;
}

.agenda-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.agenda-highlights li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--gold-color);
    transition: background-color 0.3s ease;
}

.agenda-highlights li:hover {
    background-color: #e9ecef;
}

.agenda-highlights li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    min-width: 20px;
}

.agenda-highlights li strong {
    color: var(--primary-color);
}

.agenda-cta {
    text-align: center;
    margin-top: 30px;
}

.agenda-btn {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--light-text);
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.agenda-btn:hover {
    background-color: var(--gold-color);
    border-color: var(--gold-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(105, 28, 50, 0.3);
}

.agenda-btn i {
    font-size: 1.2rem;
}

.agenda-note {
    font-style: italic;
    color: var(--gray-color);
    font-size: 0.95rem;
    margin: 0;
}

/* Hacer la imagen clickeable para abrir el PDF */
.agenda-image-container {
    cursor: pointer;
}

/* Estilos para la sección de video promocional */
.promotional-video {
    background-color: #f9f9f9;
    padding: 80px 20px;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.promotional-video .section-title {
    margin-bottom: 40px;
}

.responsive-iframe-container {
    position: relative;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.responsive-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

/* Estilos para la sección de ubicación */
.location-section {
    background-color: #fff;
    padding: 80px 20px;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.location-info {
    flex: 1;
    min-width: 300px;
}

.location-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: bold;
}

.location-info address {
    font-style: normal;
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

.location-info address i {
    color: var(--gold-color);
    margin-right: 10px;
    width: 20px;
}

.location-details {
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.location-details i {
    color: var(--gold-color);
    margin-right: 10px;
    width: 20px;
}

.map-container {
    flex: 1;
    min-width: 400px;
}

.responsive-map {
    position: relative;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.responsive-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

/* Estilos para el enlace DGETI */
.dgeti-link {
    color: var(--gold-color);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.dgeti-link:hover {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    text-shadow: 0 2px 4px rgba(105, 28, 50, 0.3);
}

/* Estilos para el mensaje de bienvenida */
.welcome-message {
    padding: 40px 20px;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFF5D6 100%);
    margin: 20px 0;
    position: relative;
    overflow: hidden;
    font-size: 16px !important;
}

.welcome-message .welcome-container p {
    font-size: 1.15rem !important;
}

.welcome-message .message-group p {
    font-size: 1.15rem !important;
    line-height: 1.7 !important;
}

.welcome-message h2,
.welcome-message h3,
.welcome-message h4 {
    font-size: inherit !important;
}

.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    position: relative;
}

.welcome-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--gold-color);
}

.welcome-logo {
    text-align: left;
}

.cbtis-title {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: bold;
    margin: 0;
}

.cbtis-title .number {
    color: var(--gold-color);
}

.slogan {
    font-size: 1.1rem;
    color: var(--gray-color);
    font-style: italic;
    margin-top: 5px;
}

.welcome-icons {
    display: flex;
    gap: 15px;
}

.cube-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.cube-icon:hover {
    transform: rotate(0deg) scale(1.1);
}

.cube-a {
    background: linear-gradient(135deg, #87CEEB, #6BB6D6);
    color: white;
}

.cube-6 {
    background: linear-gradient(135deg, #FFD700, #FFC700);
    color: white;
}

.cube-b {
    background: linear-gradient(135deg, #DDA0DD, #D8BFD8);
    color: white;
}

.welcome-content {
    position: relative;
}

.welcome-title {
    font-size: 2.3rem !important;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.welcome-intro {
    font-size: 1.35rem !important;
    color: var(--text-color);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 35px;
    padding: 0 10%;
}

.welcome-messages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.message-group {
    background: linear-gradient(135deg, #F8F9FA, #FFFFFF);
    border-left: 4px solid var(--gold-color);
    padding: 25px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.message-group h3 {
    color: var(--secondary-color);
    font-size: 1.35rem !important;
    margin-bottom: 12px;
}

.message-group p {
    color: var(--text-color);
    font-size: 1.15rem !important;
    line-height: 1.7;
}

.message-group:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.message-group h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.message-group h3 i {
    color: var(--gold-color);
    font-size: 1.2rem;
}

.message-group p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
}

.welcome-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px dashed var(--gold-color);
}

.welcome-closing {
    font-size: 1.4rem !important;
    color: var(--text-color);
    margin-bottom: 18px;
}

.welcome-sign {
    font-size: 1.7rem !important;
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.welcome-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.decoration-item {
    position: absolute;
    opacity: 0.1;
    font-size: 2rem;
    color: var(--gold-color);
    animation: float 6s ease-in-out infinite;
}

.decoration-item.pencil {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.decoration-item.books {
    bottom: 15%;
    left: 3%;
    animation-delay: 1s;
}

.decoration-item.globe {
    top: 20%;
    left: 8%;
    animation-delay: 2s;
}

.decoration-item.atom {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

.decoration-item.board {
    top: 50%;
    right: 2%;
    width: 100px;
    height: 60px;
    background: #2F4F4F;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation-delay: 4s;
}

.board-text,
.board-formula {
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}