/* --- TOP BAR --- */
.top-bar-premium {
    background: var(--primary);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.top-bar-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
}

.top-social {
    position: absolute;
    right: 20px;
    display: flex;
    gap: 1.2rem;
}

.top-social a {
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
}

.top-social a:hover {
    transform: scale(1.15);
}

/* --- HEADER PREMIUM --- */
.sticky-nav {
    height: 120px !important;
    display: flex;
    align-items: center;
    background: white !important;
    border-bottom: 8px solid white !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    padding: 0 !important;
    z-index: 1000;
}

.nav-container-premium {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-nav .logo {
    height: auto !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
}

.sticky-nav .logo img {
    height: 95px !important;
    width: auto !important;
    max-height: none !important;
    transition: var(--transition);
}

.sticky-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
}

.sticky-nav .nav-links li {
    position: relative;
    padding: 1rem 0;
}

.sticky-nav .nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Dropdown Submenu */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--secondary);
    font-family: 'Fredoka', sans-serif;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 260px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
    border: 1px solid #f1f5f9;
}

.sticky-nav .nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--secondary) !important;
    font-size: 0.85rem !important;
    /* Letra más pequeña */
    font-weight: 500 !important;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: #FFF9F5;
    color: var(--primary) !important;
    padding-left: 1.8rem;
}

.sticky-nav .nav-links a.active,
.sticky-nav .nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.btn-cursos-premium {
    background: var(--camila-pink);
    color: white !important;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(254, 118, 174, 0.2);
    transition: var(--transition);
}

.btn-cursos-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 170, 28, 0.3);
    background: #f39c12;
}

.btn-login-premium {
    background: transparent;
    color: var(--secondary) !important;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1.5px solid var(--primary);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-login-premium:hover {
    background: #FFF5F0;
    color: var(--primary) !important;
}

/* WhatsApp Header Button */
.btn-whatsapp-header {
    width: 45px;
    height: 45px;
    background-color: #25D366;
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-header:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background-color: #20BA5A;
}

/* --- SERVICE DETAIL PAGE (SPLIT SCREEN) --- */
.service-detail-section {
    padding: 80px 5% 40px;
    background-color: #fdfdfb;
}

.service-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-areas: "info image";
    gap: 0 5rem;
    align-items: start;
}

.service-title {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    font-weight: 800;
    line-height: 1.1;
    font-family: 'Outfit', sans-serif;
}

.service-info-col {
    grid-area: info;
}

.service-info-col h2 {
    font-family: 'Outfit', sans-serif;
    color: var(--camila-pink);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.service-description-block {
    margin-bottom: 2.5rem;
}

.intro-box {
    margin-bottom: 3rem;
    border-left: 4px solid var(--camila-pink);
    padding-left: 1.5rem;
}

.service-description-block h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-description-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.service-subtitle {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.service-item-icon {
    width: 50px;
    height: 50px;
    background: #FFF5F0;
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(167, 212, 251, 0.1);
}

/* Download Cards Premium */
.download-card-premium {
    background: white;
    padding: 3rem 2rem;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(167, 212, 251, 0.2);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.download-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(167, 212, 251, 0.35);
    border-color: var(--camila-pink);
}

.download-card-premium .icon-circle {
    width: 70px;
    height: 70px;
    background: #fdf2f7;
    color: var(--camila-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    transition: transform 0.4s ease;
}

.download-card-premium:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
}

.download-card-premium h3 {
    font-family: 'Fredoka', sans-serif;
    color: var(--secondary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.download-card-premium p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-item-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

.service-item-text strong {
    display: block;
    color: var(--secondary);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.service-image-col {
    position: sticky;
    top: 150px;
}

.image-wrapper-premium {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(19, 38, 58, 0.12);
    margin-bottom: 3rem;
}

.image-wrapper-premium img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.image-wrapper-premium:hover img {
    transform: scale(1.03);
}

.service-cta-wrapper {
    text-align: center;
}

.btn-service-cta {
    background: var(--camila-pink);
    color: white !important;
    padding: 1.5rem 3rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    display: block;
    box-shadow: 0 15px 35px rgba(254, 118, 174, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.btn-service-cta:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(254, 118, 174, 0.4);
    background: #e66a9d;
}

.cta-hint {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

/* --- TEAM CTA BLOCK (HOME) --- */
.team-cta-premium {
    padding: 120px 5%;
    background-color: #fff;
}

.team-cta-container {
    max-width: 1300px;
    margin: 0 auto;
}

.team-cta-content {
    display: flex;
    align-items: center;
    gap: 6rem;
    background: #FFF9F5;
    padding: 4rem;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(19, 38, 58, 0.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.02);
}

.team-cta-text {
    flex: 1;
}

.cta-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(167, 212, 251, 0.08);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-cta-text h2 {
    font-size: 3rem;
    color: var(--secondary);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.team-cta-text h2 span {
    color: var(--camila-pink);
}

.team-cta-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.btn-team-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: var(--camila-pink);
    color: white !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-team-cta:hover {
    background: var(--primary);
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(167, 212, 251, 0.3);
}

.team-cta-visual {
    flex: 1;
}

.team-visual-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.team-visual-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.team-visual-wrapper:hover img {
    transform: scale(1.05);
}

/* --- MATERIAL CTA BLOCK (HOME) REDESIGN --- */
.material-cta-premium {
    padding: 100px 5% 150px;
    background: linear-gradient(180deg, #ffffff 0%, #fffbf7 100%);
    position: relative;
    overflow: hidden;
}

.material-cta-premium::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(167, 212, 251, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.material-cta-container {
    max-width: 1300px;
    margin: 0 auto;
}

.material-cta-content {
    display: flex;
    align-items: center;
    gap: 6rem;
    background: white;
    padding: 5rem;
    border-radius: 50px;
    box-shadow: 0 40px 100px rgba(19, 38, 58, 0.08);
    border: 1px solid rgba(167, 212, 251, 0.1);
    position: relative;
    z-index: 1;
}

.cta-tag {
    background: var(--camila-pink);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: 0 8px 20px rgba(254, 118, 174, 0.25);
}

.material-cta-text {
    flex: 1.2;
}

.material-cta-text h2 {
    font-size: 3.8rem;
    color: var(--secondary);
    line-height: 1.05;
    margin-bottom: 2rem;
    font-weight: 800;
}

.material-cta-text h2 span {
    color: var(--camila-pink);
    display: block;
}

.material-cta-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.btn-material-cta {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 3rem;
    background: var(--camila-pink);
    color: white !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(254, 118, 174, 0.3);
}

.btn-material-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 45px rgba(167, 212, 251, 0.4);
}

.material-cta-visual {
    flex: 1;
}

.material-visual-wrapper {
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-8deg);
    /* Efecto 3D sutil */
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.material-visual-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.material-visual-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

.material-visual-wrapper:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .material-cta-content {
        flex-direction: column-reverse;
        text-align: center;
        padding: 3rem;
    }
}

/* --- LANDING REDESIGN PREMIUM --- */
.hero-impact {
    background: linear-gradient(135deg, #FFF9F5 0%, #fff0fe 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
}

.hero-impact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

.hero-impact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-impact-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-areas:
        "title title"
        "text image";
    align-items: center;
    gap: 3rem 5rem;
    /* More gap between title and content */
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
}

.hero-impact-container h1 {
    grid-area: title;
    font-family: 'Fredoka', sans-serif;
    font-size: 3.8rem;
    color: var(--secondary);
    line-height: 1.1;
    margin: 0 auto 2.5rem auto;
    /* Centered with bottom margin */
    font-weight: 700;
    text-align: center;
    max-width: 900px;
    /* Forces 2 lines on desktop */
}

.hero-impact-container h1 span {
    color: var(--camila-pink);
}

.hero-impact-text {
    grid-area: text;
}

.hero-impact-image {
    grid-area: image;
}

/* --- SECTION HEADERS GLOBAL --- */
.section-header-premium {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 5%;
}

.section-header-premium h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 3.5rem !important;
    color: var(--secondary);
    margin-bottom: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.section-header-premium h2 span {
    color: var(--camila-pink);
}

.hero-impact-text {
    flex: 1;
}

/* h1 moved to container level */

.hero-impact-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 650px;
    line-height: 1.8;
}

/* Media Queries for Medium Screens (Laptops) */
@media (max-width: 1366px) {

    .hero-impact,
    .service-detail-section {
        padding: 60px 5%;
    }

    .hero-impact-container,
    .service-detail-container {
        gap: 3rem;
    }

    .hero-impact-container h1,
    .service-title {
        font-size: 3.2rem;
    }

    .hero-impact-text,
    .service-info-col {
        flex: 1.4;
    }

    .hero-impact-image,
    .service-image-col {
        flex: 1;
    }

    .hero-impact-text p {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 1100px) {

    .hero-impact,
    .service-detail-section {
        padding: 50px 5%;
        min-height: auto;
    }

    .hero-impact-container,
    .service-detail-container {
        gap: 2rem;
    }

    .hero-impact-container h1,
    .service-title {
        font-size: 2.5rem;
    }

    .hero-impact-text p {
        font-size: 1.1rem;
    }

    .services-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-impact-image {
    flex: 1;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(19, 38, 58, 0.15);
    transition: transform 0.6s ease;
}

.hero-impact-image img {
    width: 100%;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-impact-image:hover img {
    transform: scale(1.05);
}

/* Subtle Hero Button */
.btn-hero-subtle {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 2.2rem;
    border-radius: 50px;
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-subtle:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(167, 212, 251, 0.2);
}

/* --- SECTION SUBTITLES --- */
.section-subtitle {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Services Grid (Home) */
.services-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 5%;
    max-width: 1400px;
    margin: 4rem auto 0;
}

.service-card-premium {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(254, 118, 174, 0.1);
    border-color: var(--camila-pink);
}

.service-icon-wrapper {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f7ff;
    color: #61b7fd;
    font-size: 3.5rem;
    transition: all 0.4s ease;
}

.service-card-premium:hover .service-icon-wrapper {
    background: #61b7fd;
    color: white;
}

.service-card-content {
    padding: 2.5rem 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
}

.service-card-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.4rem;
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.3;
}

.service-card-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.service-btn {
    margin-top: auto;
    width: 100% !important;
    padding: 0.9rem !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    border-radius: 12px !important;
}

/* Team Grid */
.team-section {
    padding: 100px 10%;
    background: #F8FAFC;
}

.team-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 1.5px solid #E2E8F0;
    background: white;
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-card-full {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(19, 38, 58, 0.03);
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.team-card-full:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(19, 38, 58, 0.12);
}

.team-card-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- TEAM MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 38, 58, 0.4);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    width: 100%;
    max-width: 1100px;
    height: 90vh;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--secondary);
    transition: var(--transition);
}

.modal-close:hover {
    transform: rotate(90deg);
    color: var(--primary);
}

.modal-body {
    display: flex;
    height: 100%;
    overflow: hidden;
}

.modal-image {
    flex: 1;
    background: #FFF9F5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-right: 1px solid #f1f5f9;
}

.modal-image img {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.modal-info-cv {
    flex: 1.4;
    padding: 0;
    overflow-y: auto;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #f8fafc;
}

.modal-info-cv::-webkit-scrollbar {
    width: 8px;
}

.modal-info-cv::-webkit-scrollbar-track {
    background: #f8fafc;
}

.modal-info-cv::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
    border: 2px solid #f8fafc;
}

.modal-info-cv::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.modal-info-cv img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- RESOURCES GRID --- */
.resources-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

/* --- RESOURCE CARDS (VERTICAL PREMIUM) --- */
.resource-card-premium {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #F1F5F9;
}

.resource-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(19, 38, 58, 0.1);
}

.resource-thumb {
    width: 100%;
    padding: 20px;
    background: white;
}

.resource-thumb img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: block;
}

.resource-content {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.resource-content h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
}

.btn-download-full {
    display: block;
    width: 100%;
    background: #FF7A3D;
    /* Naranja del ejemplo */
    color: white !important;
    text-align: center;
    padding: 1.2rem;
    border-radius: 15px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 122, 61, 0.2);
}

.btn-download-full:hover {
    background: #e6692e;
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 122, 61, 0.3);
}

.service-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.service-item-icon {
    width: 45px;
    height: 45px;
    background: #FFF9F5;
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(167, 212, 251, 0.08);
}

.service-item-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.service-item-text strong {
    display: block;
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    /* Espacio reducido entre título y descripción */
}

@media (max-width: 1300px) {
    .services-premium-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .services-premium-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .services-premium-grid {
        grid-template-columns: 1fr !important;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 850px) {
    .modal-body {
        flex-direction: column;
    }

    .modal-image {
        padding: 40px;
    }

    .modal-info-cv {
        padding: 0;
        overflow-y: visible;
    }

    /* Permite que el contenido fluya */
    .modal-content {
        height: auto;
        max-height: 95vh;
        overflow-y: auto;
        /* Habilita scroll para el modal completo en móvil */
        border-radius: 20px;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 1300px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .services-premium-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.2rem;
    }

    .resources-premium-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .nav-container-premium {
        padding: 0 40px;
    }

    .sticky-nav .nav-links {
        gap: 1rem;
    }

    .sticky-nav .nav-links a {
        font-size: 0.85rem;
    }

    .team-cta-content {
        gap: 3rem;
        padding: 3rem;
    }
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-impact-container {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .hero-impact-container h1 {
        font-size: 3.8rem;
    }

    .section-header-premium h2 {
        font-size: 2.8rem !important;
    }

    .services-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .resources-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sticky-nav .nav-links {
        display: none;
    }

    .team-cta-content {
        flex-direction: column;
        text-align: center;
    }

    /* Subpages Fix */
    .service-detail-container {
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "image"
            "info";
        gap: 1.5rem;
        text-align: center;
    }

    .service-info-col {
        display: contents;
    }

    .service-title {
        grid-area: title;
        margin-bottom: 0 !important;
    }

    /* Eliminamos el grid-area: info para que los elementos fluyan naturalmente uno tras otro */
    .service-info-col > *:not(.service-title) {
        /* No grid-area needed here */
    }

    .service-image-col {
        grid-area: image;
    }

    .service-detail-section {
        padding-top: 100px !important;
        padding-bottom: 40px !important;
    }

    .perks-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .service-title,
    .service-info-col h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
        text-align: center;
    }

    .service-info-col h1 span {
        display: block;
    }

    .service-info-col {
        padding-right: 0;
    }

    .intro-box {
        margin-bottom: 2rem !important;
        padding-left: 1rem !important;
        text-align: center;
        border-left: none !important;
        border-top: 3px solid var(--camila-pink);
        padding-top: 1.5rem;
        margin-top: 1rem;
    }

    .intro-box h3 {
        font-size: 1.4rem !important;
        margin-bottom: 1rem !important;
    }

    .intro-box p {
        font-size: 1rem !important;
    }

    .service-info-col h2 {
        font-family: 'Outfit', sans-serif;
        color: var(--camila-pink);
        font-size: 1.8rem !important;
        text-align: center;
        margin-bottom: 1.5rem !important;
        font-weight: 800;
    }

    .service-list {
        text-align: left;
        gap: 1.5rem !important;
    }

    .service-item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 1.2rem !important;
        margin-bottom: 2.5rem !important;
    }

    .service-item-text strong {
        font-size: 1.15rem !important;
    }

    .service-image-col {
        position: static;
    }

    .image-wrapper-premium {
        margin-bottom: 2rem;
    }

    .service-cta-card {
        padding: 1.5rem !important;
    }

    /* Downloads Mobile Fix */
    .downloads-section {
        padding: 40px 0 !important;
    }

    .downloads-section .section-header h2 {
        font-size: 2rem !important;
    }

    .download-card-premium {
        padding: 2rem 1.5rem !important;
    }

    .download-card-premium .icon-circle {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }

    .download-card-premium h3 {
        font-size: 1.2rem !important;
    }

    .downloads-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 10px !important;
    }

    .section-header p {
        padding: 0 15px !important;
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-impact {
        padding-top: 120px;
    }

    .services-premium-grid {
        grid-template-columns: 1fr;
    }

    .resources-premium-grid {
        grid-template-columns: 1fr;
    }

    .top-bar-premium {
        display: none;
    }

    .sticky-nav {
        height: 90px !important;
    }

    .sticky-nav .logo img {
        height: 60px !important;
    }

    .nav-actions {
        gap: 0.8rem;
    }

    .btn-cursos-premium {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .btn-whatsapp-header {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }



    /* Text Adjustments for Mobile */
    .section-main-title {
        font-size: 2.2rem;
    }

    .team-filters {
        gap: 0.6rem;
        margin-bottom: 2.5rem;
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .service-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .service-subtitle {
        font-size: 1.5rem;
        margin: 1.5rem 0 1rem;
    }

    .service-description-block p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }

    .service-item {
        margin-bottom: 1rem;
    }

    .service-item-text {
        line-height: 1.4;
    }

    .service-item-text strong {
        margin-bottom: 0.2rem;
    }

    .service-detail-section {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .resources-section {
        padding: 20px 5% !important;
    }

    .btn-service-cta {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
        width: auto;
        display: inline-flex;
        margin: 0 auto;
    }

    .service-cta-wrapper {
        text-align: center;
    }
}

/* --- MOBILE NAVIGATION DRAWER --- */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1100;
}

@media (max-width: 992px) {
    .nav-container-premium {
        position: relative;
    }

    .mobile-nav-toggle {
        display: block;
        order: 3;
    }

    .sticky-nav .nav-links {
        display: none;
    }

    /* Centrar Acceder exactamente entre Logo y Sandwich */
    .nav-actions {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .nav-actions .btn-login-premium {
        position: static;
        transform: none;
        margin: 0 auto;
        /* Centrado perfecto entre logo y sandwich */
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .nav-actions .btn-cursos-premium,
    .nav-actions .btn-whatsapp-header {
        display: none !important;
    }
}

/* --- SOCIAL FEED SECTION --- */
.social-feed-premium {
    padding: 80px 5%;
    background-color: #fdfdfb;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1300px;
    margin: 3rem auto;
}

.social-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    aspect-ratio: 1 / 1;
    transition: var(--transition);
    display: block;
}

.social-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.social-item:hover img {
    transform: scale(1.08);
}

.social-overlay {
    position: absolute;
    inset: 0;
    background: rgba(19, 38, 58, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: white;
    font-size: 2rem;
}

.social-item:hover .social-overlay {
    opacity: 1;
}

.social-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn-social-outline {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    border: none;
    cursor: pointer;
}

.btn-social-dark {
    background: var(--secondary);
    color: white !important;
}

.btn-social-dark:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
}

.btn-social-insta {
    background: var(--camila-pink);
    color: white !important;
    box-shadow: 0 10px 20px rgba(254, 118, 174, 0.2);
}

.btn-social-insta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(167, 212, 251, 0.4);
    filter: brightness(1.1);
}

@media (max-width: 992px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .social-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-social-outline {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: white;
    z-index: 2001;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    /* Habilitar scroll */
}

.mobile-menu-overlay.active .mobile-menu-content {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    flex-direction: column;
    /* Cambiado a columna para centrar mejor */
    align-items: center;
    justify-content: center;
    position: relative;
    margin: -2.5rem -2rem 2.5rem;
    padding: 3rem 2rem 1.5rem;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
}

.mobile-menu-header .logo img {
    height: 85px;
    /* Agrandado un 30% aprox */
    display: block;
    margin: 0 auto;
}

.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--secondary);
    cursor: pointer;
    opacity: 0.8;
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.mobile-menu-links>li>a {
    text-decoration: none;
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
}

.mobile-menu-links a:hover {
    color: var(--primary);
}

/* Submenu Mobile (Collapsible) */
.mobile-menu-sublinks {
    list-style: none;
    padding-left: 1.2rem;
    margin-top: 0.5rem;
    display: none;
    /* Oculto por defecto */
    flex-direction: column;
    gap: 1rem;
    border-left: 2px solid #f1f5f9;
}

.mobile-menu-sublinks.active {
    display: flex;
    /* Se muestra al activar */
}

.mobile-menu-sublinks a {
    text-decoration: none;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    color: var(--text-light) !important;
    display: block;
    padding: 0.3rem 0;
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.mobile-menu-footer p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.btn-mobile-whatsapp {
    background: var(--camila-pink);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 20px rgba(254, 118, 174, 0.15);
}

/* --- EXTRA MOBILE OPTIMIZATIONS --- */
@media (max-width: 768px) {

    /* HERO MOBILE FIX - ENSANCHADO */
    .hero-impact {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-impact-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 2rem !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .hero-impact-text {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        order: 2;
        /* Text below image for better mobile hierarchy */
    }

    .hero-impact-container h1 {
        font-size: 2.2rem !important;
        /* Adjusted for better fit */
        line-height: 1.2 !important;
        text-align: center !important;
        margin-bottom: 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        /* Reset for mobile */
    }

    .hero-impact-image {
        width: 100% !important;
        max-width: 340px !important;
        /* Increased from 280px */
        margin: 0 auto !important;
        order: 1;
        /* Image on top */
        border-radius: 40px !important;
        /* Slightly more rounded to match large size */
    }

    .hero-impact-subtitle {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        text-align: center !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-impact-support {
        font-size: 0.9rem !important;
        text-align: center !important;
        margin-bottom: 2rem !important;
    }

    .sticky-nav .logo img {
        height: 68px !important;
        /* Logo +50% */
    }

    /* REDES MOBILE FIX */
    .social-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        margin: 1.5rem auto !important;
    }

    .social-feed-premium {
        padding: 40px 5% !important;
    }

    .social-actions {
        margin-top: 2rem;
        gap: 1rem !important;
    }

    /* Otros ajustes necesarios */
    .section-main-title {
        font-size: 2.2rem !important;
    }
}

@media (max-width: 480px) {
    .social-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-impact-container h1 {
        font-size: 2.4rem !important;
    }
}

/* --- GLOBAL MODAL SYSTEM --- */
.course-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    overflow-y: auto;
    padding: 20px;
}

.course-modal.active {
    display: block !important;
}

.modal-content-fixed {
    background: white;
    max-width: 800px;
    margin: 40px auto;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.modal-header-banner {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.modal-inner-padding {
    padding: 40px;
}

.modal-h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.modal-p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.modal-h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 30px 0 15px;
}

.modal-card-simple {
    background: #f1f5f9;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 20px;
    border-left: 6px solid var(--primary);
}

.modal-bold-title {
    font-weight: 800;
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: block;
}

.modal-footer-price {
    background: var(--camila-bg);
    padding: 30px;
    text-align: center;
    border-top: 1px solid #eee;
}

@media (max-width: 600px) {
    .modal-inner-padding {
        padding: 20px;
    }

    .modal-h2 {
        font-size: 1.6rem;
    }

    .modal-header-banner {
        height: 150px;
    }
}

/* --- COURSE CARDS SYSTEM --- */
.course-card-premium {
    background: white;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.course-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(167, 212, 251, 0.4);
    border-color: var(--camila-pink);
}

.course-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #f1f5f9;
}

.course-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.course-card-premium:hover .course-card-image img {
    transform: scale(1.1);
}

.course-badge-premium {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #82d131;
    color: white;
    padding: 6px 15px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(130, 209, 49, 0.3);
    z-index: 2;
}

.course-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.course-card-title {
    font-family: 'Fredoka', sans-serif;
    color: var(--secondary);
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.course-card-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.course-card-info i {
    color: var(--primary);
}

.btn-course-info {
    margin-top: auto;
    background: var(--camila-pink);
    color: white;
    padding: 0.9rem;
    border-radius: 20px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(254, 118, 174, 0.2);
    cursor: pointer;
}

.course-card-premium:hover .btn-course-info {
    background: #e66a9d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 118, 174, 0.3);
}