@import url('https://fonts.googleapis.com/css?family=Ubuntu:500,700');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;500;600;700&display=swap');
@import "https://unpkg.com/open-props" layer(design.system);

/* ===== ESTILOS BÁSICOS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, sans-serif;
}

body {
    font-family: Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    overflow-x: hidden;
}

/* ===== HEADER Y NAVEGACIÓN INNOVADORA ===== */
.modern-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 20px rgba(0, 206, 207, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid rgba(0, 206, 207, 0.05);
}

.modern-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateX(0px) translateY(0px);
    }

    33% {
        transform: translateX(-8px) translateY(-3px);
    }

    66% {
        transform: translateX(5px) translateY(-5px);
    }
}

.modern-header.scrolled {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(0);
}

@keyframes headerFloat {

    0%,
    100% {
        transform: translateY(0px);
        box-shadow: 0 8px 32px rgba(0, 206, 207, 0.12);
    }

    50% {
        transform: translateY(-1px);
        box-shadow: 0 12px 40px rgba(0, 206, 207, 0.18);
    }
}

.modern-header.scrolled::before {
    opacity: 1;
}

.modern-header.scrolled::after {
    opacity: 1;
}

.modern-header.scrolled .logo {
    transform: scale(0.85);
    filter: brightness(1.1) saturate(1.2) drop-shadow(0 2px 4px rgba(0, 206, 207, 0.2)) drop-shadow(0 0 15px rgba(0, 206, 207, 0.1));
    animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {

    0%,
    100% {
        filter: brightness(1.1) saturate(1.2) drop-shadow(0 2px 4px rgba(0, 206, 207, 0.2)) drop-shadow(0 0 15px rgba(0, 206, 207, 0.1));
    }

    50% {
        filter: brightness(1.15) saturate(1.3) drop-shadow(0 2px 6px rgba(0, 206, 207, 0.25)) drop-shadow(0 0 20px rgba(0, 206, 207, 0.15));
    }
}

.modern-header.scrolled .nav-container {
    height: 70px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
    transition: all 0.3s ease;
}

.modern-header.scrolled .nav-container {
    height: 75px;
}

/* ===== LOGO INNOVADOR ===== */
.logo-container {
    display: flex;
    align-items: center;
    z-index: 1001;
    position: relative;
}

.logo-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 206, 207, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s ease;
    z-index: -1;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.logo-link:hover {
    transform: scale(1.08) translateY(-2px);
}

.logo-link:hover .logo-container::before {
    opacity: 1;
    transform: scale(1.2);
}

.logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 2px 8px rgba(0, 206, 207, 0.1));
}

.modern-header.scrolled .logo {
    height: 45px;
}

/* ===== NAVEGACIÓN DESKTOP ===== */
.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex !important;
    align-items: center !important;
    padding: 10px 15px !important;
    text-decoration: none !important;
    font-family: 'League Spartan', sans-serif !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    border-radius: 20px !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    position: relative !important;
    overflow: hidden !important;
    white-space: nowrap !important;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00cecf 0%, rgba(0, 206, 207, 0.8) 100%);
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    border-radius: 12px;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 206, 207, 0.3);
}

.modern-header.scrolled .nav-link {
    padding: 12px 18px;
    font-size: 13px;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 8px;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* ===== DROPDOWN MENU FIXED - ELIMINANDO DUPLICADOS ===== */
.dropdown {
    position: relative;
}

.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    list-style: none;
    border: 1px solid rgba(0, 206, 207, 0.1);
    backdrop-filter: blur(10px);
    pointer-events: none;
}

/* HACER QUE LOS DROPDOWNS APAREZCAN AL PASAR EL RATÓN */
.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

/* Mantener visible cuando el ratón está sobre el menú */
.dropdown-menu:hover {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

/* Rotar flecha */
.nav-item.dropdown:hover .dropdown-arrow,
.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-link {
    display: block;
    padding: 14px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    margin: 2px 8px;
    position: relative;
    overflow: hidden;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00cecf 0%, rgba(0, 206, 207, 0.8) 100%);
    transition: left 0.3s ease;
    z-index: -1;
    border-radius: 8px;
}

.dropdown-link:hover::before {
    left: 0;
}

.dropdown-link:hover {
    color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 206, 207, 0.3);
}

/* ===== BOTÓN TRABAJEMOS JUNTOS ===== */
.trabajemos-btn {
    background: #8080808f;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(124, 134, 134, 0.3);
    position: relative;
    overflow: hidden;
    animation-delay: 0.2s;
    animation: btnGrowIn 0.6s ease-out forwards;
    transform: scale(0.8);
    opacity: 0;
}

@keyframes btnGrowIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.trabajemos-btn:hover {
    background: linear-gradient(135deg, #009fa0 0%, #00cecf 100%);
    box-shadow: 0 8px 30px rgba(0, 206, 207, 0.5);
    color: white;
    transform: translateY(-3px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
}

.hamburger-line {
    display: block;
    position: absolute;
    left: 8px;
    width: 24px;
    height: 3px;
    background: #00cecf;
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger-line:nth-child(1) {
    top: 12px;
}

.hamburger-line:nth-child(2) {
    top: 18px;
}

.hamburger-line:nth-child(3) {
    top: 24px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg);
    top: 18px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg);
    top: 18px;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1002;
    overflow-y: auto;
    transform: translateX(0);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-logo {
    height: 40px;
    width: auto;
}

.mobile-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #00cecf !important;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    position: relative;
    z-index: 2001;
}

.mobile-menu {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.mobile-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
}

.mobile-link:hover {
    background: #00cecf;
    color: white;
}

.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 200px;
}

.mobile-sublink {
    display: block;
    padding: 15px 25px 15px 40px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.mobile-sublink:hover {
    background: #00cecf;
    color: white;
}

.mobile-cta {
    padding: 20px;
    border-top: 1px solid #eee;
}

.mobile-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px;
    background: #00cecf;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.mobile-cta-button:hover {
    background: #00a5a6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 206, 207, 0.3);
    color: white;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== ANIMACIONES ADICIONALES ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-item {
    animation: fadeIn 0.6s ease forwards;
}

.nav-item:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-item:nth-child(2) {
    animation-delay: 0.2s;
}

.nav-item:nth-child(3) {
    animation-delay: 0.3s;
}

.nav-item:nth-child(4) {
    animation-delay: 0.4s;
}

.nav-item:nth-child(5) {
    animation-delay: 0.5s;
}

/* ===== MEJORAS ADICIONALES ===== */
.modern-header {
    border-bottom: 1px solid rgba(0, 206, 207, 0.1);
}

.nav-link:focus,
.login-btn:focus,
.cta-button:focus {
    outline: 2px solid #00cecf;
    outline-offset: 2px;
}

/* Efecto de brillo en hover */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button {
    position: relative;
    overflow: hidden;
}

/* Menú secundario eliminado - ahora usamos navegación sticky */

/* ===== MAIN CONTENT ===== */
main {
    padding: 20px;
}

/* ===== CARRUSEL MODERNO ===== */
.custom-carousel {
    height: 57vh !important;
    max-height: 57vh !important;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    margin: 20px;
    backdrop-filter: blur(10px);
}

.custom-carousel .carousel-inner {
    height: 100% !important;
}

.custom-carousel .carousel-item {
    height: 57vh !important;
    position: relative;
}

.custom-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 206, 207, 0.1) 0%, rgba(124, 134, 134, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
    border-radius: 20px;
}

.carousel-item img {
    width: 100% !important;
    height: 57vh !important;
    border-radius: 20px;
    transition: transform 0.6s ease;
    object-fit: cover !important;
    object-position: center !important;
}

.carousel-item.active img {
    transform: scale(1.02);
}

.carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    margin: 0 5px !important;
    padding: 0 !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    opacity: 0.7 !important;
    cursor: pointer !important;
    text-indent: 0 !important;
    box-sizing: border-box !important;
}

.carousel-indicators button.active {
    width: 30px !important;
    height: 10px !important;
    border-radius: 5px !important;
    background-color: #00cecf !important;
    border-color: #00cecf !important;
    opacity: 1 !important;
    box-shadow: 0 0 12px rgba(0, 206, 207, 0.6) !important;
    transform: none !important;
}

.carousel-indicators button:hover {
    background-color: rgba(0, 206, 207, 0.7) !important;
    border-color: rgba(0, 206, 207, 0.9) !important;
    transform: scale(1.2) !important;
    opacity: 1 !important;
}

.carousel-control-prev,
.carousel-control-next {
    width: auto !important;
    height: auto !important;
    background: none !important;
    border: none !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    transition: all 0.3s ease !important;
    z-index: 20 !important;
    opacity: 0.7 !important;
}

.carousel-control-prev {
    left: 20px !important;
}

.carousel-control-next {
    right: 20px !important;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1 !important;
    transform: translateY(-50%) scale(1.2) !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px !important;
    height: 40px !important;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5)) !important;
    background-size: 100% 100% !important;
}

.carousel-control-prev:focus,
.carousel-control-next:focus {
    opacity: 1 !important;
}

.carousel-caption {
    position: absolute;
    right: 50px;
    bottom: 80px;
    z-index: 10;
    animation: fadeInUp 1s ease 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== BANNER OVERLAY TEXT ===== */
.carousel-item {
    position: relative;
}

.banner-overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    padding: 60px 100px;
    z-index: 5;
    pointer-events: none;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.banner-overlay-text span {
    display: inline-block;
    background: none;
    color: #fff;
    padding: 5px 5px 5px 130px;
    border-radius: 10px;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Verdana', sans-serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.4);
    line-height: 1.4;
    max-width: 60%;
    pointer-events: auto;
}

/* === Posiciones Verticales × Horizontales === */
/* Top */
.banner-overlay-text.pos-top-left {
    align-items: flex-start;
    justify-content: flex-start;
}

.banner-overlay-text.pos-top-center {
    align-items: flex-start;
    justify-content: center;
}

.banner-overlay-text.pos-top-right {
    align-items: flex-start;
    justify-content: flex-end;
}

/* Center */
.banner-overlay-text.pos-center-left {
    align-items: center;
    justify-content: flex-start;
}

.banner-overlay-text.pos-center-center {
    align-items: center;
    justify-content: center;
}

.banner-overlay-text.pos-center-right {
    align-items: center;
    justify-content: flex-end;
}

/* Bottom */
.banner-overlay-text.pos-bottom-left {
    align-items: flex-end;
    justify-content: flex-start;
}

.banner-overlay-text.pos-bottom-center {
    align-items: flex-end;
    justify-content: center;
}

.banner-overlay-text.pos-bottom-right {
    align-items: flex-end;
    justify-content: flex-end;
}

/* Center positions: text-align center */
.banner-overlay-text.pos-top-center span,
.banner-overlay-text.pos-center-center span,
.banner-overlay-text.pos-bottom-center span {
    text-align: center;
}

/* Right positions: text-align right */
.banner-overlay-text.pos-top-right span,
.banner-overlay-text.pos-center-right span,
.banner-overlay-text.pos-bottom-right span {
    text-align: right;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .banner-overlay-text {
        padding: 15px 20px;
    }

    .banner-overlay-text span {
        font-size: 1rem;
        padding: 10px 18px;
        max-width: 75%;
        border-radius: 8px;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .banner-overlay-text {
        padding: 10px 12px;
    }

    .banner-overlay-text span {
        font-size: 0.8rem;
        padding: 8px 14px;
        max-width: 85%;
        border-radius: 6px;
    }
}

/* ===== RESPONSIVE CAROUSEL ===== */
/* Tablet */
@media (max-width: 768px) {
    .custom-carousel {
        height: 45vh !important;
        max-height: 45vh !important;
        margin: 15px 10px !important;
        border-radius: 15px;
    }

    .custom-carousel .carousel-item {
        height: 45vh !important;
    }

    .carousel-item img {
        height: 45vh !important;
        border-radius: 15px;
    }

    .carousel-control-prev {
        left: 15px !important;
    }

    .carousel-control-next {
        right: 15px !important;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 35px !important;
        height: 35px !important;
    }

    .carousel-caption {
        right: 30px;
        bottom: 50px;
        font-size: 0.9rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .custom-carousel {
        height: 35vh !important;
        max-height: 35vh !important;
        margin: 10px 5px !important;
        border-radius: 12px;
    }

    .custom-carousel .carousel-item {
        height: 35vh !important;
    }

    .carousel-item img {
        height: 35vh !important;
        border-radius: 12px;
    }

    .carousel-control-prev {
        left: 10px !important;
    }

    .carousel-control-next {
        right: 10px !important;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 30px !important;
        height: 30px !important;
    }

    .carousel-indicators {
        bottom: 10px !important;
    }

    .carousel-indicators button {
        width: 8px !important;
        height: 8px !important;
        margin: 0 3px !important;
    }

    .carousel-indicators button.active {
        width: 24px !important;
        height: 8px !important;
        border-radius: 4px !important;
        transform: none !important;
    }

    .carousel-indicators button:hover {
        transform: scale(1.15) !important;
    }

    .carousel-caption {
        right: 20px;
        bottom: 30px;
        font-size: 0.8rem;
    }

    .carousel-caption h5 {
        font-size: 1rem !important;
        margin-bottom: 0.3rem !important;
    }

    .carousel-caption p {
        font-size: 0.8rem !important;
        margin-bottom: 0 !important;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .custom-carousel {
        height: 30vh !important;
        max-height: 30vh !important;
        margin: 8px 3px !important;
        border-radius: 10px;
    }

    .custom-carousel .carousel-item {
        height: 30vh !important;
    }

    .carousel-item img {
        height: 30vh !important;
        border-radius: 10px;
    }

    .carousel-control-prev {
        left: 8px !important;
    }

    .carousel-control-next {
        right: 8px !important;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 25px !important;
        height: 25px !important;
    }

    .carousel-indicators button {
        width: 6px !important;
        height: 6px !important;
        margin: 0 2px !important;
    }

    .carousel-indicators button.active {
        width: 20px !important;
        height: 6px !important;
        border-radius: 3px !important;
        transform: none !important;
    }

    .carousel-caption {
        right: 15px;
        bottom: 20px;
        font-size: 0.7rem;
    }

    .carousel-caption h5 {
        font-size: 0.9rem !important;
    }

    .carousel-caption p {
        font-size: 0.7rem !important;
    }
}

/* ===== BOTÓN DEL BANNER ===== */
.carousel-caption .btn {
    border: none !important;
    padding: 16px 32px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    color: white !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease !important;
    box-shadow: 0 8px 25px rgba(0, 206, 207, 0.4) !important;
    backdrop-filter: blur(10px);
    min-width: 250px !important;
    width: auto !important;
}

.carousel-caption .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.carousel-caption .btn:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 15px 40px rgba(0, 206, 207, 0.6) !important;
    background: linear-gradient(135deg, #00a5a6 0%, #5a6969 100%) !important;
    color: white !important;
}

.carousel-caption .btn:hover::before {
    left: 100%;
}

.carousel-caption .btn:active {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 10px 30px rgba(0, 206, 207, 0.5) !important;
}

/* Responsivo para el botón del banner */
@media (max-width: 768px) {
    .carousel-caption .btn {
        font-size: 14px !important;
        padding: 12px 24px !important;
        min-width: 200px !important;
    }

    .carousel-caption {
        right: 20px;
        bottom: 40px;
        left: 20px;
        text-align: center;
    }
}

/* ===== TÍTULOS ===== */
.ser {
    font-weight: bold;
    text-align: center;
    font-family: Verdana, sans-serif;
    text-decoration: none;
}

.ser a {
    text-decoration: none;
    color: #00cecf;
}

.ser a:hover {
    color: #ffffff;
}

.ser1 {
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}

/* ===== SECCIÓN DE BENEFICIOS ===== */
.benefits-section {
    padding: 4rem 2rem;
    /*background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);*/
    margin: 2rem 0;
}

.benefits-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.benefit-item {
    text-align: center;
    max-width: 300px;
    flex: 1;
    min-width: 250px;
}

.benefit-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00cecf 0%, #7C8686 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(0, 206, 207, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-circle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-circle:hover::before {
    opacity: 1;
}

.benefit-circle:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 206, 207, 0.4);
}

.benefit-circle i {
    font-size: 2.5rem;
    color: white;
    z-index: 1;
    position: relative;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    font-family: Verdana, sans-serif;
    line-height: 1.3;
}

.benefit-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-family: Verdana, sans-serif;
    text-align: center;
}

.benefit-description strong {
    color: #00cecf;
    font-weight: 600;
}

/* Responsive para beneficios */
@media (max-width: 768px) {
    .benefits-container {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
    }

    .benefit-item {
        max-width: 100%;
    }

    .benefits-section {
        padding: 3rem 1rem;
    }
}

/* ===== CONTENEDORES DE COLORES ===== */
.click-message {
    text-align: center;
    font-family: Verdana, sans-serif;
    color: #7c8686;
    font-size: 14px;
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #ffffff1c;
    position: relative;
    top: -10px;
    transition: top 0.3s ease;
}

.color-containers {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
}

.color-containers a {
    font-family: Verdana, sans-serif;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.container {
    margin-top: 2%;
    height: 220px;
    padding: 25px;
    text-align: center;
    color: white;
    font-size: 110%;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    font-family: Verdana, sans-serif;
    background-size: 45%;
    width: 220px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.container:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 20px;
}

.container:hover::before {
    opacity: 1;
}

.container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    z-index: 0;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.container:hover::after {
    opacity: 1;
}

.container .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    font-size: 18px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.4s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.container:hover .text {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(-5px);
}

/* ===== SECCIÓN DE INFORMACIÓN ===== */
.info-section {
    position: relative;
    margin-top: 2rem;
    overflow: hidden;
    z-index: 0;
    margin: 0px auto 0 auto;
    padding: 0;
    background: none;
    box-shadow: none;
}

.info-section::after {
    animation-direction: reverse;
}

.info-content {
    display: block;
    border: none;
    padding: 3rem;
    margin: 2rem auto;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 206, 207, 0.1);
    max-width: 1200px;
    overflow: hidden;
}

.info-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00cecf 0%, #7C8686 100%);
    border-radius: 25px 25px 0 0;
}

.info-content::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 206, 207, 0.03), transparent);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.info-title {
    font-weight: bold;
    font-family: Verdana, sans-serif;
    color: #000000;
    text-align: center;
}

.info-container {
    font-family: Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.info-image {
    max-width: 15%;
    height: auto;
    margin-top: 20px;
}

.info-image1 {
    max-width: 50%;
    height: auto;
    margin-top: 20px;
}

.info-text {
    color: #666;
    text-align: justify;
    font-size: 1rem;
}

/* ===== CÍRCULOS ===== */
.circles-container {
    display: flex;
    gap: 20px;
}

.circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid #00cecf;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px #007f80;
    transition: transform 0.3s, box-shadow 0.3s;
}

.circle p {
    margin: 0;
    color: #00cecf;
}

.circle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #007f80;
    background-color: #f9f9f9;
}

/* ===== SEPARADOR ===== */
.separador {
    height: 50px;
    width: 100%;
}

/* ===== FIELDSET CONTAINER ===== */
.fieldset-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

@layer demo {
    fieldset {
        border: none;
        display: flex;
        gap: 2rem;
        margin: 0;
        padding: 0;
    }

    fieldset>label {
        --_img: var(--_img);
        border-radius: 1rem;
        cursor: pointer;
        display: block;
        inline-size: 8rem;
        block-size: 8rem;
        padding: 0;
        transition: outline-offset 145ms var(--ease-2);
        aspect-ratio: 1;
    }

    fieldset>label:has(:checked) {
        outline: 3px solid var(--violet-3);
        outline-offset: 3px;
    }

    fieldset>label>input {
        opacity: 0;
        inline-size: 100%;
        block-size: 100%;
        margin: 0;
        appearance: none;
        border-radius: inherit;
        background: var(--_img) center/cover;
    }
}

/* ===== STATS STRIP - Compact single-line social proof bar ===== */
.stats-strip {
    background: linear-gradient(135deg, #f0fafa 0%, #e8f7f7 50%, #f0fafa 100%);
    padding: 28px 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 206, 207, 0.15);
    border-bottom: 1px solid rgba(0, 206, 207, 0.15);
}

.stats-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 206, 207, 0.35), transparent);
}

.stats-strip::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 206, 207, 0.35), transparent);
}

.stats-strip-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    gap: 0;
    flex-wrap: nowrap;
}

.stats-strip-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 6px 28px;
    gap: 10px;
    white-space: nowrap;
}

.stats-strip-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #00b3b4;
    font-family: Verdana, sans-serif;
    line-height: 1;
    text-shadow: none;
    flex-shrink: 0;
}

.stats-strip-number .number {
    font-size: inherit;
    color: inherit;
}

.stats-strip-label {
    font-size: 0.78rem;
    color: #5a7070;
    font-family: Verdana, sans-serif;
    margin-top: 0;
    line-height: 1.3;
    font-weight: 500;
    white-space: nowrap;
}

.stats-strip-divider {
    width: 1px;
    height: 35px;
    background: linear-gradient(to bottom, transparent, rgba(0, 206, 207, 0.3), transparent);
    flex-shrink: 0;
}

/* Stats strip responsive */
@media (max-width: 1100px) {
    .stats-strip-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .stats-strip-item {
        padding: 6px 18px;
    }

    .stats-strip-label {
        white-space: normal;
        max-width: 160px;
    }
}

@media (max-width: 768px) {
    .stats-strip-inner {
        gap: 5px;
    }

    .stats-strip-item {
        padding: 6px 14px;
        gap: 8px;
    }

    .stats-strip-number {
        font-size: 1.5rem;
    }

    .stats-strip-label {
        font-size: 0.72rem;
    }

    .stats-strip-divider {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .stats-strip {
        padding: 20px 10px;
    }

    .stats-strip-inner {
        justify-content: space-around;
    }

    .stats-strip-item {
        padding: 6px 10px;
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }

    .stats-strip-number {
        font-size: 1.3rem;
    }

    .stats-strip-label {
        white-space: normal;
        text-align: center;
        max-width: 100px;
    }

    .stats-strip-divider {
        display: none;
    }
}

/* ===== SLIDER DE PARTNERS ===== */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

.slider5 {
    background: #f0f0f0;
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 960px;
}

.slider5::before,
.slider5::after {
    background: linear-gradient(to right, rgb(241 241 241) 0%, #f0f0f000 100%);
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
}

.slider5::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.slider5::before {
    left: 0;
    top: 0;
}

.slide5-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
    transition: animation-play-state 0.3s ease;
}

.slider5:hover .slide5-track {
    animation-play-state: paused;
}

.slide5 {
    height: 100px;
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    overflow: visible;
    padding: 15px;
    box-sizing: border-box;
}

.slide5 img {
    height: 70px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.slide5:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Responsive para partners */
@media screen and (max-width: 1024px) {
    .slider5 {
        width: 90%;
        max-width: 800px;
        height: 100px;
    }

    .slider5::before,
    .slider5::after {
        height: 100px;
        width: 150px;
    }

    .slide5 {
        height: 100px;
        padding: 12px;
    }

    .slide5 img {
        height: 60px;
        max-width: 180px;
    }
}

@media screen and (max-width: 768px) {
    .slider5 {
        width: 95%;
        height: 100px;
    }

    .slider5::before,
    .slider5::after {
        height: 100px;
        width: 100px;
    }

    .slide5 {
        height: 100px;
        padding: 10px;
    }

    .slide5 img {
        height: 50px;
        max-width: 150px;
    }

    .slide5:hover img {
        transform: scale(1.08);
    }
}

@media screen and (max-width: 480px) {
    .slider5 {
        height: 100px;
    }

    .slider5::before,
    .slider5::after {
        height: 100px;
        width: 80px;
    }

    .slide5 {
        height: 100px;
        width: 200px;
        padding: 8px;
    }

    .slide5 img {
        height: 40px;
        max-width: 120px;
    }

    .slide5:hover img {
        transform: scale(1.05);
    }

    .slide5-track {
        width: calc(200px * 14);
        animation-duration: 35s;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-200px * 7));
        }
    }
}

/* ===== SECCIÓN DE INTEGRACIONES MOODLE ===== */
.integrations-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    font-family: Verdana, sans-serif;
}

@keyframes integrationsScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-220px * 12));
    }
}

.integrations-slider {
    background: #f0f0f0;
    height: 120px;
    margin: 40px auto;
    overflow: hidden;
    position: relative;
    width: 960px;
}

.integrations-slider::before,
.integrations-slider::after {
    background: linear-gradient(to right, rgb(241 241 241) 0%, #f0f0f000 100%);
    content: "";
    height: 120px;
    position: absolute;
    width: 80px;
    z-index: 10;
    pointer-events: none;
}

.integrations-slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.integrations-slider::before {
    left: 0;
    top: 0;
}

.integrations-track {
    animation: integrationsScroll 50s linear infinite;
    display: flex;
    width: calc(220px * 24);
    transition: animation-play-state 0.3s ease;
}

.integrations-slider:hover .integrations-track {
    animation-play-state: paused;
}

.integration-item {
    height: 120px;
    width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: all 0.3s ease;
    overflow: visible;
    box-sizing: border-box;
}

.integration-item img {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.integration-item:hover img {
    transform: scale(1.1);
}

/* Responsive para integraciones */
@media screen and (max-width: 1024px) {
    .integrations-slider {
        width: 90%;
        max-width: 800px;
        height: 110px;
    }

    .integrations-slider::before,
    .integrations-slider::after {
        height: 110px;
        width: 60px;
    }

    .integration-item {
        height: 110px;
        width: 200px;
        padding: 15px;
    }

    .integration-item img {
        height: 50px;
        max-width: 160px;
    }

    .integrations-track {
        width: calc(200px * 24);
        animation-duration: 45s;
    }

    @keyframes integrationsScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-200px * 12));
        }
    }
}

@media screen and (max-width: 768px) {
    .integrations-slider {
        width: 95%;
        height: 100px;
        margin: 30px auto;
    }

    .integrations-slider::before,
    .integrations-slider::after {
        height: 100px;
        width: 50px;
    }

    .integration-item {
        height: 100px;
        width: 180px;
        padding: 10px;
    }

    .integration-item img {
        height: 45px;
        max-width: 140px;
    }

    .integration-item:hover img {
        transform: scale(1.08);
    }

    .integrations-track {
        width: calc(180px * 24);
        animation-duration: 40s;
    }

    @keyframes integrationsScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-180px * 12));
        }
    }

    .integrations-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
}

@media screen and (max-width: 480px) {
    .integrations-slider {
        height: 90px;
    }

    .integrations-slider::before,
    .integrations-slider::after {
        height: 90px;
        width: 40px;
    }

    .integration-item {
        height: 90px;
        width: 160px;
        padding: 8px;
    }

    .integration-item img {
        height: 40px;
        max-width: 120px;
    }

    .integration-item:hover img {
        transform: scale(1.05);
    }

    .integrations-track {
        width: calc(160px * 24);
        animation-duration: 35s;
    }

    @keyframes integrationsScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-160px * 12));
        }
    }

    .integrations-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
    }
}

/* ===== FOOTER MODERNO ===== */
.footer-section {
    background: linear-gradient(135deg, #e8ecee 0%, #dce2e5 50%, #e8ecee 100%);
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 206, 207, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 206, 207, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.container5 {
    max-width: 1170px;
    margin: auto;
    padding: 0 15px;
}

.footer-cta {
    border-bottom: 1px solid rgba(0, 206, 207, 0.4);
}

.single-cta i {
    color: #00cecf;
    font-size: 30px;
    float: left;
    margin-top: 8px;
}

.cta-text {
    padding-left: 15px;
    display: inline-block;
}

.cta-text h4 {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

.cta-text span {
    color: #000;
    font-size: 15px;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-logo {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.footer-logo img {
    max-width: 200px;
    transition: all 0.5s ease;
    position: relative;
}

.footer-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../imagenes/logo_b1.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.footer-logo:hover::before {
    opacity: 1;
}

.footer-logo:hover img {
    opacity: 0;
}

.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #000;
    line-height: 28px;
}

.footer-text p a {
    color: #00cecf;
    text-decoration: none;
    font-weight: 600;
}

.footer-text p a:hover {
    color: #009e9e;
    text-decoration: underline;
}

.footer-social-icon span {
    color: #000;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: Verdana, sans-serif;
    margin-bottom: 20px;
}

/* === Redes sociales - Solo logo con colores de marca === */
.footer-social-icon .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0 8px 8px 0;
    border-radius: 12px;
    background: transparent;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(.4, 1.4, .6, 1.1), background 0.3s ease;
    transform: scale(1);
}

.footer-social-icon .social-icon i {
    font-size: 1.65rem;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
    height: auto;
    width: auto;
    background: none !important;
    border-radius: 0;
}

.footer-social-icon .social-icon:hover {
    transform: scale(1.25);
    background: rgba(255, 255, 255, 0.6);
}

/* Todos los iconos por defecto = #00cecf */
.footer-social-icon .social-icon i {
    color: #00cecf !important;
}

/* WhatsApp - Verde en hover */
.footer-social-icon .social-whatsapp:hover i {
    color: #25D366 !important;
}

/* Facebook - Azul en hover */
.footer-social-icon .social-facebook:hover i {
    color: #1877F2 !important;
}

/* Instagram - Rosa en hover */
.footer-social-icon .social-instagram:hover i {
    color: #E4405F !important;
}

/* YouTube - Rojo en hover */
.footer-social-icon .social-youtube:hover i {
    color: #FF0000 !important;
}

/* Twitter - Azul en hover */
.footer-social-icon .social-twitter:hover i {
    color: #1DA1F2 !important;
}

/* TikTok - Rosa en hover */
.footer-social-icon .social-tiktok:hover i {
    color: #FE2C55 !important;
}

.footer-widget-heading h3 {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: #00cecf;
}

.footer-widget ul li {
    display: block;
    float: left;
    width: 50%;
    margin-bottom: 12px;
}

.footer-widget ul li a:hover {
    color: #00cecf;
}

.footer-widget ul li a {
    color: #000;
    text-transform: capitalize;
    text-decoration: none;
    transition: color 0.2s ease;
}

.subscribe-form {
    position: relative;
    overflow: hidden;
}

.subscribe-form input {
    width: 100%;
    padding: 10px 27px;
    background: #f1f1f0;
    border: 1px solid #f1f1f0;
    color: #333;
}

.subscribe-form button {
    position: absolute;
    right: 0;
    background: #00cecf;
    padding: 13px 20px;
    border: 1px solid #00cecf;
    top: 0;
}

.subscribe-form button i {
    color: #fff;
    font-size: 22px;
    transform: rotate(-6deg);
}

.copyright-area {
    background: #00cecf;
    padding: 25px 0;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

.copyright-text p a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.copyright-text p a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

.footer-menu li:hover a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-menu li a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
}

/* ===== USER ACTIONS - RESTAURADOS ===== */
.user-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.login-dropdown {
    position: relative;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #7C8686;
    border-radius: 8px;
    color: #7C8686;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 600;
}

.login-btn:hover {
    background: #7C8686;
    color: white;
    box-shadow: 0 5px 15px rgba(124, 134, 134, 0.3);
    scale: 1.05;
}

.login-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.login-dropdown:hover .login-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.login-link {
    display: block;
    padding: 12px 24px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.login-link:hover {
    background: #7C8686;
    color: white;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #00cecf 0%, #009fa0 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 206, 207, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #009fa0 0%, #00cecf 100%);
    box-shadow: 0 8px 30px rgba(0, 206, 207, 0.5);
    color: white;
    transform: translateY(-3px);
}

.modern-header.scrolled .cta-button {
    padding: 10px 20px;
    font-size: 12px;
}

/* ===== EFECTO DE BRILLO PARA CTA BUTTON ===== */
.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.cta-button:hover::after {
    left: 100%;
}

/* Por defecto, ocultar menú hamburguesa y menú móvil en escritorio */
.mobile-menu-toggle {
    display: none;
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2000;
    background: none;
    border: none;
}

.mobile-nav {
    display: none;
}

.mobile-nav.active {
    display: block;
    right: 0;
}

/* Mostrar menú hamburguesa solo en pantallas pequeñas */
@media screen and (max-width: 1024px) {

    .desktop-nav,
    .user-actions {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        position: absolute !important;
        top: 24px !important;
        right: 24px !important;
        z-index: 2000 !important;
        background: none !important;
        border: none !important;
    }

    .nav-container {
        position: relative !important;
    }

    .mobile-nav {
        display: none !important;
    }

    .mobile-nav.active {
        display: block !important;
        right: 0;
    }
}

/* Corrige el botón de cerrar del menú móvil */
.mobile-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #00cecf !important;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    position: relative;
    z-index: 2001;
}

/* Carrusel responsivo para móvil: alto automático según imagen */
@media (max-width: 768px) {

    .custom-carousel,
    .custom-carousel .carousel-inner,
    .custom-carousel .carousel-item {
        height: auto !important;
        min-height: unset;
        max-height: unset;
    }

    .custom-carousel .carousel-item img {
        object-fit: contain !important;
        width: 100%;
        height: auto !important;
        display: block;
        background: #fff;
    }
}

/* Opcional: para tablets */
@media (max-width: 1024px) and (min-width: 769px) {

    .custom-carousel,
    .custom-carousel .carousel-inner,
    .custom-carousel .carousel-item,
    .custom-carousel .carousel-item img {
        height: 350px !important;
    }

    .custom-carousel .carousel-item img {
        object-fit: contain !important;
        width: 100%;
        height: 100% !important;
    }
}

/* SOLO reducir tamaño del botón en móvil (más pequeño) */
@media (max-width: 576px) {
    .trabajemos-btn {
        padding: 2px 8px !important;
        font-size: 9px !important;
        border-radius: 18px !important;
        margin-top: 18px !important;
    }
}

/* === Especialidades - Cards limpias y modernas === */
.especialidades-section {
    max-width: 1100px;
    margin: 60px auto 40px auto;
    padding: 0 16px;
}

.especialidad-titulo {
    text-align: center;
    font-size: 2.1rem;
    font-weight: 700;
    color: #00cecf;
    margin-bottom: 36px;
    letter-spacing: 0.5px;
}

.especialidades-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.especialidad-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 206, 207, 0.09);
    border: 1px solid #e6e6e6;
    width: 210px;
    min-width: 180px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 18px 22px 18px;
    transition: transform 0.22s cubic-bezier(.4, 1.4, .6, 1.1), box-shadow 0.22s;
    position: relative;
    overflow: hidden;
}

.especialidad-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px rgba(0, 206, 207, 0.16);
}

.especialidad-img img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0, 206, 207, 0.07);
    background: #f8f8f8;
}

.especialidad-nombre {
    font-size: 1.08rem;
    font-weight: 700;
    color: #00cecf;
    margin-bottom: 10px;
    display: block;
    text-align: center;
    letter-spacing: 0.2px;
}

.especialidad-desc {
    font-size: 0.98rem;
    color: #444;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 0;
    font-family: 'Open Sans', Verdana, sans-serif;
}

/* Responsive para especialidades */
@media (max-width: 900px) {
    .especialidades-grid {
        gap: 18px;
    }

    .especialidad-card {
        width: 45vw;
        min-width: 140px;
        max-width: 220px;
        padding: 22px 10px 18px 10px;
    }
}

@media (max-width: 600px) {
    .especialidades-grid {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .especialidad-card {
        width: 95vw;
        max-width: 340px;
    }
}



/* mision y vision */

/*Mision y vision*/

* {
    box-sizing: border-box;
}

.mision-vision {
    margin: 5%;
    grid-column-gap: 5%;
    display: flex;
}

.blog-card {
    display: flex;
    flex-direction: column;
    margin: 1rem auto;
    box-shadow: 0 3px 7px -1px hsl(180, 56%, 76%);
    margin-bottom: 1.6%;
    background: #fff;
    line-height: 1.4;
    font-family: sans-serif;
    border-radius: 5px;
    overflow: hidden;
    z-index: 0;
}

.blog-card a {
    color: inherit;
    text-decoration: none;
}

.blog-card a:hover {
    color: #00cecf;
}

.blog-card:hover .photo {
    transform: scale(1.3) rotate(3deg);
}

.meta {
    position: relative;
    z-index: 0;
    height: 200px;
}

.photo {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    transition: transform .2s;
}

.details,
.details ul {
    margin: auto;
    padding: 0;
    list-style: none;
}

.details {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100%;
    margin: auto;
    transition: left .2s;
    background: hsla(180, 56%, 76%, 0.342);
    color: #000000;
    padding: 10px;
    width: 100%;
    font-size: .9rem;
}

.details ul li {
    display: inline-block;
}

.details .author:before {
    font-family: FontAwesome;
    margin-right: 10px;
    content: "\f007";
}

.details .date:before {
    font-family: FontAwesome;
    margin-right: 10px;
    content: "\f133";
}

.details .tags ul:before {
    font-family: FontAwesome;
    content: "\f02b";
    margin-right: 10px;
}

.details .tags li {
    margin-right: 2px;
}

.details .tags li:first-child {
    margin-left: -4px;
}

.description {
    padding: 1rem;
    background: #fff;
    position: relative;
    z-index: 1;
}

.description h1,
.description h2 {
    font-family: Poppins, sans-serif;
}

.description h1 {
    line-height: 1;
    margin: 0;
    font-size: 1.7rem;
}

.description h2 {
    font-size: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    color: #a2a2a2;
    margin-top: 5px;
}

.read-more {
    text-align: right;
}

.read-more a {
    color: #00cecf;
    display: inline-block;
    position: relative;
}

.read-more a:after {
    content: "\f061";
    font-family: FontAwesome;
    margin-left: -10px;
    opacity: 0;
    vertical-align: middle;
    transition: margin .3s, opacity .3s;
}

.read-more a:hover:after {
    margin-left: 5px;
    opacity: 1;
}

.blog-card p {
    position: relative;
    margin: 1rem 0 0;
}

.blog-card p:first-of-type {
    margin-top: 1.25rem;
}

.blog-card p:first-of-type:before {
    content: "";
    position: absolute;
    height: 5px;
    background: #00cecf;
    width: 35px;
    top: -0.75rem;
    border-radius: 3px;
}

.blog-card:hover .details {
    left: 0%;
}

.text-bg-dark {

    margin-block: 3%;
    margin-top: 3%;
}

@media (min-width: 640px) {
    .blog-card {
        flex-direction: row;
        max-width: 700px;
    }

    .meta {
        flex-basis: 40%;
        height: auto;
    }

    .description {
        flex-basis: 60%;
    }

    .description:before {
        transform: skewX(-3deg);
        content: "";
        background: #fff;
        width: 30px;
        position: absolute;
        left: -10px;
        top: 0;
        bottom: 0;
        z-index: -1;
    }

    .blog-card.alt {
        flex-direction: row-reverse;
    }

    .blog-card.alt .description:before {
        left: inherit;
        right: -10px;
        transform: skew(3deg);
    }

    .blog-card.alt .details {
        padding-left: 25px;
    }
}

/* ===== SEO PILL BADGES ===== */
/* ===== SECTION CONTEXT SUBTITLES (SEO h3) ===== */
.section-context {
    font-size: 0.95rem;
    font-weight: 400;
    color: #8a9a9a;
    text-align: center;
    font-family: 'Open Sans', Verdana, sans-serif;
    margin: -5px 0 5px;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

.stats-strip-heading {
    font-size: 0.8rem;
    font-weight: 500;
    color: #7a9090;
    text-align: center;
    margin: 0 0 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: Verdana, sans-serif;
}

.seo-pill-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 15px;
    margin-bottom: 10px;
    list-style: none;
    padding: 0;
}

.seo-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 206, 207, 0.08);
    color: #00a8a9;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-family: Verdana, sans-serif;
    font-weight: 600;
    border: 1px solid rgba(0, 206, 207, 0.2);
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.seo-pill:hover {
    background: rgba(0, 206, 207, 0.15);
    border-color: rgba(0, 206, 207, 0.4);
    transform: translateY(-1px);
}

.seo-pill i {
    font-size: 0.85rem;
}

/* ===== CTA BUTTONS ===== */
.cta-primary-btn {
    background: linear-gradient(135deg, #00cecf 0%, #00a8a9 100%);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    font-family: 'Verdana', sans-serif;
    box-shadow: 0 6px 20px rgba(0, 206, 207, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 206, 207, 0.4);
    color: white;
}

.cta-secondary-btn {
    background: #333;
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    font-family: 'Verdana', sans-serif;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-secondary-btn:hover {
    background: #222;
    transform: translateY(-3px);
    color: white;
}

/* ===== SPECIALTIES SECTION - Differentiated horizontal cards ===== */
.specialties-section {
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.specialties-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: #888;
    font-family: Verdana, sans-serif;
    margin-top: 10px;
    margin-bottom: 40px;
    line-height: 1.5;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.specialty-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.specialty-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #00cecf, #7C8686);
    border-radius: 16px 0 0 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.specialty-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 206, 207, 0.15);
    border-color: rgba(0, 206, 207, 0.2);
}

.specialty-card:hover::before {
    opacity: 1;
}

.specialty-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 206, 207, 0.1) 0%, rgba(0, 206, 207, 0.05) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.specialty-card:hover .specialty-card-icon {
    background: linear-gradient(135deg, #00cecf 0%, #00a8a9 100%);
}

.specialty-card-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: filter 0.3s ease;
}



.specialty-card-content {
    flex: 1;
    min-width: 0;
}

.specialty-card-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #333;
    font-family: Verdana, sans-serif;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.specialty-card-content p {
    font-size: 0.88rem;
    color: #777;
    font-family: Verdana, sans-serif;
    margin: 0;
    line-height: 1.5;
}

.specialty-card-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.specialty-card:hover .specialty-card-arrow {
    color: #00cecf;
    background: rgba(0, 206, 207, 0.08);
    transform: translateX(3px);
}

/* Specialties responsive */
@media (max-width: 768px) {
    .specialties-grid {
        grid-template-columns: 1fr;
    }

    .specialty-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .specialties-section {
        margin-bottom: 40px;
    }

    .specialty-card-icon {
        width: 48px;
        height: 48px;
    }

    .specialty-card-icon img {
        width: 26px;
        height: 26px;
    }

    .specialty-card-content h3 {
        font-size: 0.95rem;
    }

    .specialty-card-content p {
        font-size: 0.82rem;
    }

    .specialty-card-arrow {
        display: none;
    }
}

/* ===== SPECIALTY CARD LINK WRAPPER ===== */
.specialty-card-link,
.specialty-card-link:hover,
.specialty-card-link:focus,
.specialty-card-link:active,
.specialty-card-link:visited {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
    outline: none;
}

.specialty-card-link .specialty-card {
    cursor: pointer !important;
}

.specialty-card-link .specialty-card * {
    cursor: pointer !important;
}

.specialty-card-link .specialty-card-content h3,
.specialty-card-link .specialty-card-content p {
    text-decoration: none !important;
    color: inherit;
}

/* ===== SPECIALTY DETAIL PAGE ===== */

/* Hero */
.specialty-hero {
    padding: 100px 20px 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.specialty-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 26, 46, 0.82) 0%, rgba(26, 45, 69, 0.75) 40%, rgba(13, 48, 64, 0.80) 100%);
    z-index: 0;
}

.specialty-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 206, 207, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.specialty-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 206, 207, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.specialty-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.specialty-hero-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(0, 206, 207, 0.15) 0%, rgba(0, 206, 207, 0.05) 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    border: 1px solid rgba(0, 206, 207, 0.2);
    backdrop-filter: blur(10px);
}

.specialty-hero-icon-wrapper img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.specialty-hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 14px;
    font-family: Verdana, sans-serif;
    letter-spacing: -0.5px;
}

.specialty-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: Verdana, sans-serif;
    margin: 0;
    line-height: 1.6;
}

.specialty-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 1;
}

.specialty-hero-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* Detail Section */
.specialty-detail-section {
    background: #f8fcfc;
    padding: 60px 20px 80px;
}

.specialty-detail-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

/* Main Content */
.specialty-detail-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.specialty-detail-body {
    padding: 48px 40px;
}

.specialty-content-placeholder {
    text-align: center;
    padding: 30px 0;
}

.placeholder-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 206, 207, 0.12) 0%, rgba(0, 206, 207, 0.04) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.placeholder-icon i {
    font-size: 2rem;
    color: #00cecf;
}

.specialty-content-placeholder h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 16px;
    font-family: Verdana, sans-serif;
}

.specialty-content-placeholder p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    font-family: Verdana, sans-serif;
    margin: 0 0 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.placeholder-description {
    background: rgba(0, 206, 207, 0.05);
    border-left: 4px solid #00cecf;
    padding: 16px 20px;
    border-radius: 0 10px 10px 0;
    text-align: left;
    font-style: italic;
    color: #555 !important;
}

.specialty-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00cecf 0%, #00a8a9 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: Verdana, sans-serif;
    margin-top: 24px;
    box-shadow: 0 4px 16px rgba(0, 206, 207, 0.25);
    transition: all 0.3s ease;
}

.specialty-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 206, 207, 0.35);
    color: white;
}

/* Sidebar */
.specialty-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.specialty-sidebar-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 28px 24px;
}

.specialty-sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    font-family: Verdana, sans-serif;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.specialty-sidebar-title i {
    color: #00cecf;
}

.specialty-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.specialty-sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #555;
    transition: all 0.3s ease;
    font-family: Verdana, sans-serif;
    font-size: 0.88rem;
}

.specialty-sidebar-link:hover {
    background: rgba(0, 206, 207, 0.06);
    color: #00a8a9;
}

.specialty-sidebar-link.active {
    background: linear-gradient(135deg, rgba(0, 206, 207, 0.1) 0%, rgba(0, 206, 207, 0.04) 100%);
    color: #00a8a9;
    font-weight: 700;
    border: 1px solid rgba(0, 206, 207, 0.15);
}

.sidebar-link-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: rgba(0, 206, 207, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-link-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.sidebar-link-text {
    flex: 1;
}

.sidebar-link-arrow {
    font-size: 0.7rem;
    color: #ccc;
    transition: all 0.3s ease;
}

.specialty-sidebar-link:hover .sidebar-link-arrow,
.specialty-sidebar-link.active .sidebar-link-arrow {
    color: #00cecf;
    transform: translateX(2px);
}

/* Sidebar CTA */
.specialty-sidebar-cta {
    text-align: center;
    background: linear-gradient(135deg, #0a1a2e 0%, #1a2d45 100%);
    border: none;
}

.sidebar-cta-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 206, 207, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.sidebar-cta-icon i {
    font-size: 1.5rem;
    color: #00cecf;
}

.specialty-sidebar-cta h4 {
    color: white;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 10px;
    font-family: Verdana, sans-serif;
}

.specialty-sidebar-cta p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0 0 20px;
    font-family: Verdana, sans-serif;
}

.sidebar-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #00cecf 0%, #00a8a9 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: Verdana, sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 206, 207, 0.25);
}

.sidebar-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 206, 207, 0.35);
    color: white;
}

/* Related Specialties */
.specialty-related-section {
    padding: 70px 20px 80px;
    background: white;
    text-align: center;
}

.specialty-related-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 40px;
    font-family: Verdana, sans-serif;
}

.specialty-related-title span {
    color: #00cecf;
}

.specialty-related-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.specialty-related-card {
    background: #f8fcfc;
    border-radius: 18px;
    padding: 36px 28px;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.specialty-related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 206, 207, 0.12);
    border-color: rgba(0, 206, 207, 0.2);
    color: inherit;
}

.related-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 206, 207, 0.12) 0%, rgba(0, 206, 207, 0.04) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.specialty-related-card:hover .related-card-icon {
    background: linear-gradient(135deg, #00cecf 0%, #00a8a9 100%);
}

.related-card-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.specialty-related-card:hover .related-card-icon img {
    filter: brightness(0) invert(1);
}

.specialty-related-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px;
    font-family: Verdana, sans-serif;
}

.specialty-related-card p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.6;
    margin: 0 0 16px;
    font-family: Verdana, sans-serif;
}

.related-card-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: #00cecf;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: Verdana, sans-serif;
    transition: gap 0.3s ease;
}

.specialty-related-card:hover .related-card-link {
    gap: 10px;
}

/* Specialty Detail Page - Responsive */
@media (max-width: 900px) {
    .specialty-detail-container {
        grid-template-columns: 1fr;
    }

    .specialty-sidebar {
        position: static;
    }

    .specialty-hero {
        padding: 80px 20px 60px;
    }

    .specialty-hero-title {
        font-size: 2rem;
    }

    .specialty-related-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .specialty-hero {
        padding: 70px 16px 50px;
    }

    .specialty-hero-title {
        font-size: 1.6rem;
    }

    .specialty-hero-subtitle {
        font-size: 0.95rem;
    }

    .specialty-detail-body {
        padding: 28px 20px;
    }

    .specialty-sidebar-card {
        padding: 20px 16px;
    }
}

/* ===== SPECIALTY CONTENT RENDERED STYLES ===== */
.specialty-content-rendered {
    font-family: Verdana, sans-serif;
    color: #444;
    line-height: 1.8;
}

.specialty-content-rendered h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a2d45;
    margin: 0 0 18px;
    line-height: 1.3;
    border-bottom: 3px solid #00cecf;
    padding-bottom: 12px;
}

.specialty-content-rendered h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin: 36px 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.specialty-content-rendered h3::before {
    content: '';
    width: 4px;
    height: 22px;
    background: linear-gradient(to bottom, #00cecf, #00a8a9);
    border-radius: 2px;
    flex-shrink: 0;
}

.specialty-content-rendered h4 {
    font-size: 1.02rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px;
}

.specialty-content-rendered p {
    font-size: 0.95rem;
    margin: 0 0 16px;
    color: #555;
}

/* Feature Cards Grid */
.content-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 28px 0 36px;
}

.content-feature-item {
    background: linear-gradient(135deg, #f8fcfc 0%, #ffffff 100%);
    border: 1px solid rgba(0, 206, 207, 0.12);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.content-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 206, 207, 0.12);
    border-color: rgba(0, 206, 207, 0.25);
}

.content-feature-item i {
    font-size: 1.8rem;
    color: #00cecf;
    display: block;
    margin-bottom: 14px;
}

.content-feature-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2d45;
    margin: 0 0 10px;
}

.content-feature-item p {
    font-size: 0.88rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Content Lists */
.content-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 28px;
}

.content-list li {
    position: relative;
    padding: 10px 0 10px 32px;
    font-size: 0.93rem;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    line-height: 1.6;
}

.content-list li:last-child {
    border-bottom: none;
}

.content-list li::before {
    content: '\F272';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 10px;
    color: #00cecf;
    font-size: 1rem;
    font-weight: 700;
}

.content-list li strong {
    color: #333;
}

/* Blockquote */
.content-quote {
    background: linear-gradient(135deg, #0a1a2e 0%, #1a2d45 100%);
    border-radius: 16px;
    padding: 32px 36px;
    margin: 36px 0 20px;
    position: relative;
    overflow: hidden;
}

.content-quote::before {
    content: '\201C';
    font-size: 6rem;
    color: rgba(0, 206, 207, 0.15);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.content-quote p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.05rem !important;
    font-style: italic;
    margin: 0 !important;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

/* Content Responsive */
@media (max-width: 768px) {
    .content-features {
        grid-template-columns: 1fr;
    }

    .specialty-content-rendered h2 {
        font-size: 1.3rem;
    }

    .specialty-content-rendered h3 {
        font-size: 1.08rem;
    }

    .content-quote {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .content-feature-item {
        padding: 20px 16px;
    }

    .content-feature-item i {
        font-size: 1.4rem;
    }
}

/* ===== BLOG SHOW PAGE ===== */

/* Hero */
.blog-show-hero {
    padding: 110px 20px 90px;
    position: relative;
    overflow: hidden;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-show-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 26, 46, 0.75) 0%, rgba(10, 26, 46, 0.88) 100%);
    z-index: 0;
}

.blog-show-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.blog-show-category {
    display: inline-block;
    background: rgba(0, 206, 207, 0.2);
    color: #00cecf;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: Verdana, sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 206, 207, 0.3);
    backdrop-filter: blur(8px);
}

.blog-show-hero-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px;
    font-family: Verdana, sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.blog-show-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-show-meta-item {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    font-family: Verdana, sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-show-meta-item i {
    color: #00cecf;
    font-size: 0.85rem;
}

.blog-show-meta-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
}

.blog-show-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 1;
}

.blog-show-hero-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* Detail Section */
.blog-show-detail-section {
    background: #f8fcfc;
    padding: 60px 20px 40px;
}

.blog-show-detail-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

/* Main Content Card */
.blog-show-detail-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.blog-show-detail-body {
    padding: 48px 40px;
}

/* Tags */
.blog-show-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.blog-show-tag {
    background: rgba(0, 206, 207, 0.08);
    color: #00a8a9;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: Verdana, sans-serif;
    border: 1px solid rgba(0, 206, 207, 0.12);
}

/* Blog Content Typography */
.blog-show-content {
    font-family: Verdana, sans-serif;
    color: #444;
    line-height: 1.85;
    font-size: 0.95rem;
}

.blog-show-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a2d45;
    margin: 36px 0 16px;
    line-height: 1.3;
    border-bottom: 3px solid #00cecf;
    padding-bottom: 12px;
}

.blog-show-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #333;
    margin: 30px 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-show-content h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(to bottom, #00cecf, #00a8a9);
    border-radius: 2px;
    flex-shrink: 0;
}

.blog-show-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #333;
    margin: 24px 0 10px;
}

.blog-show-content p {
    margin: 0 0 18px;
    color: #555;
}

.blog-show-content img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    margin: 24px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.blog-show-content ul,
.blog-show-content ol {
    padding-left: 24px;
    margin: 16px 0 24px;
}

.blog-show-content li {
    margin-bottom: 8px;
    color: #555;
}

.blog-show-content strong {
    color: #333;
}

.blog-show-content blockquote {
    background: linear-gradient(135deg, #0a1a2e 0%, #1a2d45 100%);
    border-radius: 16px;
    padding: 28px 32px;
    margin: 28px 0;
    position: relative;
    overflow: hidden;
    border: none;
}

.blog-show-content blockquote::before {
    content: '\201C';
    font-size: 5rem;
    color: rgba(0, 206, 207, 0.15);
    position: absolute;
    top: -8px;
    left: 16px;
    font-family: Georgia, serif;
    line-height: 1;
}

.blog-show-content blockquote p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.blog-show-content a {
    color: #00a8a9;
    text-decoration: underline;
    text-decoration-color: rgba(0, 206, 207, 0.3);
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}

.blog-show-content a:hover {
    color: #00cecf;
    text-decoration-color: #00cecf;
}

.blog-show-content pre {
    background: #1a2d45;
    color: #e0e0e0;
    padding: 20px 24px;
    border-radius: 14px;
    overflow-x: auto;
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 20px 0;
}

.blog-show-content code {
    background: rgba(0, 206, 207, 0.08);
    color: #00a8a9;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.88em;
}

.blog-show-content pre code {
    background: none;
    color: inherit;
    padding: 0;
}

/* Share Section */
.blog-show-share {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 32px;
    margin-top: 36px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-show-share-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: #555;
    font-family: Verdana, sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-show-share-label i {
    color: #00cecf;
}

.blog-show-share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.blog-show-share-btn.facebook {
    background: rgba(24, 119, 242, 0.1);
    color: #1877F2;
}

.blog-show-share-btn.facebook:hover {
    background: #1877F2;
    color: white;
}

.blog-show-share-btn.twitter {
    background: rgba(0, 0, 0, 0.06);
    color: #333;
}

.blog-show-share-btn.twitter:hover {
    background: #000;
    color: white;
}

.blog-show-share-btn.linkedin {
    background: rgba(10, 102, 194, 0.1);
    color: #0A66C2;
}

.blog-show-share-btn.linkedin:hover {
    background: #0A66C2;
    color: white;
}

.blog-show-share-btn.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.blog-show-share-btn.whatsapp:hover {
    background: #25D366;
    color: white;
}

/* Back Button */
.blog-show-back {
    text-align: center;
    margin-top: 28px;
}

.blog-show-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00a8a9;
    font-weight: 700;
    font-size: 0.92rem;
    font-family: Verdana, sans-serif;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.blog-show-back-btn:hover {
    background: rgba(0, 206, 207, 0.06);
    color: #00cecf;
    gap: 12px;
}

/* Sidebar */
.blog-show-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.blog-show-sidebar-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 28px 24px;
}

.blog-show-sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    font-family: Verdana, sans-serif;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-show-sidebar-title i {
    color: #00cecf;
}

.blog-show-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.blog-show-sidebar-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: #555;
    transition: all 0.3s ease;
}

.blog-show-sidebar-link:hover {
    background: rgba(0, 206, 207, 0.05);
    color: #00a8a9;
}

.sidebar-post-thumb {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.sidebar-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post-thumb-placeholder {
    background: rgba(0, 206, 207, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-post-thumb-placeholder i {
    font-size: 1.2rem;
    color: #00cecf;
}

.sidebar-post-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-post-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    font-family: Verdana, sans-serif;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-show-sidebar-link:hover .sidebar-post-title {
    color: #00a8a9;
}

.sidebar-post-date {
    font-size: 0.75rem;
    color: #999;
    font-family: Verdana, sans-serif;
}

/* Sidebar CTA */
.blog-show-sidebar-cta {
    text-align: center;
    background: linear-gradient(135deg, #0a1a2e 0%, #1a2d45 100%);
    border: none;
}

.blog-show-sidebar-cta .sidebar-cta-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 206, 207, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.blog-show-sidebar-cta .sidebar-cta-icon i {
    font-size: 1.5rem;
    color: #00cecf;
}

.blog-show-sidebar-cta h4 {
    color: white;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 10px;
    font-family: Verdana, sans-serif;
}

.blog-show-sidebar-cta p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0 0 20px;
    font-family: Verdana, sans-serif;
}

.blog-show-sidebar-cta .sidebar-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #00cecf 0%, #00a8a9 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: Verdana, sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 206, 207, 0.25);
}

.blog-show-sidebar-cta .sidebar-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 206, 207, 0.35);
    color: white;
}

/* Related Posts Section */
.blog-show-related-section {
    padding: 70px 20px 80px;
    background: white;
    text-align: center;
}

.blog-show-related-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 40px;
    font-family: Verdana, sans-serif;
}

.blog-show-related-title span {
    color: #00cecf;
}

.blog-show-related-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-show-related-card {
    background: #f8fcfc;
    border-radius: 18px;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.blog-show-related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 206, 207, 0.12);
    border-color: rgba(0, 206, 207, 0.2);
    color: inherit;
}

.related-post-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-show-related-card:hover .related-post-image img {
    transform: scale(1.06);
}

.related-post-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 206, 207, 0.1) 0%, rgba(0, 206, 207, 0.04) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-post-image-placeholder i {
    font-size: 2.5rem;
    color: #00cecf;
    opacity: 0.4;
}

.related-post-body {
    padding: 22px 24px 26px;
    text-align: left;
}

.related-post-category {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: #00a8a9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: Verdana, sans-serif;
    margin-bottom: 8px;
}

.blog-show-related-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px;
    font-family: Verdana, sans-serif;
    line-height: 1.4;
}

.blog-show-related-card p {
    font-size: 0.83rem;
    color: #777;
    line-height: 1.6;
    margin: 0 0 14px;
    font-family: Verdana, sans-serif;
}

.related-post-link {
    font-size: 0.83rem;
    font-weight: 700;
    color: #00cecf;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: Verdana, sans-serif;
    transition: gap 0.3s ease;
}

.blog-show-related-card:hover .related-post-link {
    gap: 10px;
}

/* Blog Show Responsive */
@media (max-width: 900px) {
    .blog-show-detail-container {
        grid-template-columns: 1fr;
    }

    .blog-show-sidebar {
        position: static;
    }

    .blog-show-hero {
        padding: 90px 20px 70px;
        min-height: 300px;
    }

    .blog-show-hero-title {
        font-size: 1.8rem;
    }

    .blog-show-related-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .blog-show-hero {
        padding: 80px 16px 60px;
        min-height: 260px;
    }

    .blog-show-hero-title {
        font-size: 1.45rem;
    }

    .blog-show-meta {
        flex-direction: column;
        gap: 6px;
    }

    .blog-show-meta-divider {
        display: none;
    }

    .blog-show-detail-body {
        padding: 28px 20px;
    }

    .blog-show-sidebar-card {
        padding: 20px 16px;
    }

    .blog-show-share {
        flex-wrap: wrap;
    }

    .blog-show-content h2 {
        font-size: 1.25rem;
    }

    .blog-show-content h3 {
        font-size: 1.05rem;
    }
}