/* =========================================
   Variables & Reset
   ========================================= */
:root {
    /* Color Palette - Medical, Clean, Professional & Feminine */
    --primary-color: #a06b86;
    /* Dusty Rose / Mauve */
    --primary-light: #c28fa8;
    --primary-dark: #7a4f65;
    --secondary-color: #fcf5f7;
    /* Very soft blush for backgrounds */
    --accent-color: #d1839e;
    /* Brighter rose for accents */

    --text-primary: #332d30;
    --text-secondary: #6e6468;
    --text-light: #fcf5f7;

    --bg-main: #ffffff;
    --bg-light: #fcf5f7;
    --bg-medium: #ebdce2;
    --bg-dark: #3a2e33;
    /* Dark earthy mauve instead of blue */

    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', serif;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

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

/* =========================================
   Layout & Utilities
   ========================================= */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

@media (max-width: 600px) {
    .section-container {
        padding: 4rem 1.125rem;
    }
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.text-center {
    text-align: center;
}

.section-heading {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.text-center .section-heading::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-description {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background-color: rgba(43, 92, 143, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: rgba(43, 92, 143, 0.05);
    color: var(--primary-dark);
}

/* Animation Classes */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.logo-light .logo-img {
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

@media (max-width: 600px) {
    .hero {
        padding: 6.5rem 1.125rem 2.5rem;
    }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    padding-left: calc((100vw - 1200px) / 2);
}

@media (min-width: 1201px) {
    .hero-content {
        padding-left: calc((100vw - 1200px) / 2);
    }
}

@media (max-width: 1200px) {
    .hero-content {
        padding-left: 2rem;
    }
}

.hero-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.25rem, 4vw, 4rem);
    margin-bottom: 0.5rem;
}

.hero-profession {
    font-size: 2rem;
    color: var(--primary-light);
    font-family: var(--font-sans);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.hero-profession-sm {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    line-height: 1.4;
    margin-bottom: 1rem;
}

.credential-item ul {
    list-style-position: inside;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.hero-phrase {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 993px) {
    .hero-image {
        margin-top: 2rem;
    }
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.profile-img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.abstract-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 10px;
    top: 20px;
    right: -20px;
    z-index: 1;
    opacity: 0.1;
}

.hero-instagram {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 560px;
    background-color: white;
    border: 1px solid rgba(160, 107, 134, 0.15);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    padding: 1.25rem 1.5rem;
}

.hero-instagram-content {
    flex: 1;
}

.hero-instagram-title {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-instagram-title i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.hero-instagram-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0;
}

.hero-instagram-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.55rem 1.4rem;
    font-size: 0.875rem;
    white-space: nowrap;
}

.btn-instagram i {
    font-size: 1rem;
}

.hero-instagram-handle {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-color);
}

@media (max-width: 992px) {
    .hero-instagram {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        margin: 2rem auto 0;
        padding: 1.25rem;
    }

    .hero-instagram-title {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-instagram .btn-instagram {
        width: auto;
    }
}

/* =========================================
   About Section
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

.credentials {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.credential-item {
    display: flex;
    gap: 1rem;
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
}

.credential-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(56, 178, 172, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-card {
    background-color: var(--primary-color);
    color: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: var(--primary-dark);
}

.stat-number {
    font-family: var(--font-sans);
    font-size: 3rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin: 0;
}

/* =========================================
   Services Section
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary-color);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* =========================================
   Pricing Section
   ========================================= */
.table-container {
    overflow-x: auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    margin-top: 2rem;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pricing-table th,
.pricing-table td {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.pricing-table tbody tr {
    transition: var(--transition);
}

.pricing-table tbody tr:hover {
    background-color: var(--bg-light);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.text-right {
    text-align: right;
}

/* =========================================
   Procedures Section
   ========================================= */
.procedures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.procedure-card {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.procedure-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--accent-color);
}

.procedure-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.procedure-list {
    list-style-type: none;
    margin-top: 1rem;
}

.procedure-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.procedure-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 0.875rem;
}

.procedure-list li strong {
    color: var(--primary-dark);
}

/* =========================================
   Blog & Education Section
   ========================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-hero-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-hero-section {
    background-color: var(--bg-light);
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.blog-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.blog-hero-grid .hero-image {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.blog-hero-grid .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
}

@media (min-width: 900px) {
    .blog-hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    .blog-hero-block {
        grid-template-columns: 1.3fr 1fr;
        align-items: center;
    }
}

.featured-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.08);
}

.featured-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.featured-content {
    padding: 2rem;
}

.featured-content .badge {
    margin-bottom: 1rem;
}

.featured-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.featured-excerpt {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.featured-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.featured-footer .btn {
    margin-top: 0.5rem;
}

.blog-meta {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.blog-meta span + span {
    margin-left: 1rem;
}

.blog-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-content {
    padding: 1.75rem;
}

.blog-content h3 {
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.blog-content p {
    color: var(--text-secondary);
}

.blog-card-author {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.9rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.resource-card {
    background-color: white;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.resource-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
}

.resource-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.blog-resources {
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .blog-hero-block {
        grid-template-columns: 1fr;
    }
}

.read-more {
    font-weight: 600;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(4px);
}

/* =========================================
   Search Box Focus
   ========================================= */
.search-box-container input:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(160, 107, 134, 0.2) !important;
}

/* =========================================
   Category Filters (blog.html)
   ========================================= */
.filter-btn {
    padding: 0.5rem 1.25rem;
    background-color: white;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-sans);
}

.filter-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary-dark);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

/* =========================================
   No Results (mensaje cuando no hay artículos)
   ========================================= */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
    background-color: white;
    border-radius: 8px;
    border: 1px dashed rgba(0,0,0,0.2);
}

/* =========================================
   Event Card (Horizontal)
   ========================================= */
.event-card-link {
    grid-column: 1 / -1;
    text-decoration: none;
    display: block;
}

.event-card {
    display: flex;
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.event-card-image {
    width: 35%;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    min-height: 300px;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.event-card:hover .event-card-image img {
    transform: scale(1.05);
}

.event-card-body {
    width: 65%;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: var(--bg-light);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.event-card-title {
    font-size: 1.4rem;
    line-height: 1.35;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.event-card-location {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.event-card-conferences {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.event-card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.event-card-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.event-card-stats span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.event-card-stats span i {
    color: var(--accent-color);
    font-size: 0.95rem;
}

.event-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    width: fit-content;
    font-family: var(--font-sans);
}

.event-card:hover .event-card-btn {
    background-color: var(--primary-dark);
}

.event-card-btn i {
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.event-card:hover .event-card-btn i {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .event-card-image {
        width: 30%;
        min-height: 250px;
    }
    .event-card-body {
        width: 70%;
        padding: 1.5rem 1.75rem;
    }
    .event-card-title {
        font-size: 1.2rem;
    }
    .event-card-stats {
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .event-card {
        flex-direction: column;
    }
    .event-card-image {
        width: 100%;
        height: 220px;
        min-height: auto;
        position: relative;
    }
    .event-card-image img {
        position: static;
    }
    .event-card-body {
        width: 100%;
        padding: 1.25rem;
    }
}

/* =========================================
   Blog Tabs
   ========================================= */
.blog-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 2px solid var(--bg-medium);
    padding-bottom: 0;
}

.tab-btn {
    padding: 0.75rem 2rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: -2px;
}

.tab-btn:hover {
    color: var(--primary-dark);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--accent-color);
    font-weight: 600;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: tabFadeIn 0.4s ease;
}

@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   Video Grid & Cards
   ========================================= */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.video-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.video-card:hover .video-card-image img {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 2;
}

.video-play-btn i {
    margin-left: 3px;
}

.video-card:hover .video-play-btn {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card-body {
    padding: 1.5rem;
}

.video-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.video-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.video-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.video-card-body p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* =========================================
   Video Modal
   ========================================= */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: modalOverlayFade 0.3s ease;
}

@keyframes modalOverlayFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.video-modal-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    z-index: 2;
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 1.75rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 0.25rem;
    z-index: 3;
}

.video-modal-close:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.video-modal-player {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    background-color: #000;
}

.video-modal-player video {
    width: 100%;
    display: block;
    max-height: 80vh;
}

/* =========================================
   Timeline Section
   ========================================= */
.timeline {
    position: relative;
    padding: 0;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent-color), var(--primary-color));
    border-radius: 10px;
}

.timeline-item {
    position: relative;
    padding-left: 65px;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: 10px;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: white;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.timeline-icon i {
    color: var(--accent-color);
    font-size: 16px;
}

.timeline-content {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
}

.timeline-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.timeline-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.timeline-date i {
    color: var(--accent-color);
}

/* Certificate Cards */
.certificates-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--primary-dark);
    margin: 1.5rem 0 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(0,0,0,0.1);
}

.certificates-title i {
    color: var(--accent-color);
}

.cert-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.cert-card {
    background-color: white;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cert-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.cert-card-top {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-medium) 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.cert-icon {
    width: 44px;
    height: 52px;
    background-color: var(--accent-color);
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(209, 131, 158, 0.4);
}

.cert-icon i {
    color: white;
    font-size: 24px;
}

.cert-info {
    flex: 1;
}

.cert-info h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
    line-height: 1.3;
}

.cert-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

.cert-card-btn {
    padding: 0.6rem 1rem;
    background: none;
    border: none;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-family: var(--font-sans);
}

.cert-card-btn:hover {
    background-color: var(--bg-light);
    color: var(--primary-dark);
}

.cert-card-btn i {
    font-size: 0.8rem;
}

/* Override gallery grid inside timeline for 3 per row */
.timeline-content .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
    gap: 1rem;
}

.timeline-content .gallery-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
}

@media (max-width: 992px) {
    .timeline-content .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }
    .timeline-content .gallery-item:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 600px) {
    .timeline-content .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
    .cert-cards {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Gallery Section
   ========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

/* Bento Grid: 6 items */
.gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 2; } /* Tall left */
.gallery-item:nth-child(2) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(5) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(6) { grid-column: span 1; grid-row: span 2; } /* Tall right */

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(160, 107, 134, 0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.gallery-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gallery-modal img {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.gallery-modal-close:hover {
    color: var(--accent-color);
}

.gallery-modal-nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.gallery-modal-btn {
    pointer-events: all;
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    font-size: 30px;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.gallery-modal-btn:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.gallery-modal-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 25px;
}

/* Responsive Gallery */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
    .gallery-item:nth-child(1) { grid-row: span 2; }
    .gallery-item:nth-child(6) { grid-row: span 2; }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
}

/* =========================================
   Footer
   ========================================= */
.footer {
    padding-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-heading {
    color: white;
    font-family: var(--font-sans);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.contact-list,
.footer-links ul {
    list-style: none;
}

.contact-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    align-items: flex-start;
}

.contact-list i {
    color: var(--accent-color);
    margin-top: 0.35rem;
}

.contact-list a {
    color: rgba(255, 255, 255, 0.7);
}

.contact-list a:hover {
    color: white;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    padding-bottom: 2rem;
}

/* =========================================
   Article Pages
   ========================================= */
.article-header {
    padding-top: 10rem;
    padding-bottom: 2rem;
    background-color: var(--secondary-color);
}

.article-header .section-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.article-header .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.article-header .article-meta {
    color: var(--text-secondary);
}

.article-header .article-meta i {
    margin-right: 8px;
}

.article-header .back-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.article-header .back-link:hover {
    color: var(--primary-color);
}

.article-content {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.article-content .lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

.article-content .cover-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
}

.article-content ul,
.article-content ol {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.article-content .highlight-box {
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 3rem 0;
    border-radius: 0 8px 8px 0;
}

.article-content .highlight-box p {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--primary-dark);
}

.article-content .article-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin: 4rem 0;
}

.article-content .author-box {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 8px;
}

.article-content .author-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.article-content .author-box h4 {
    margin-bottom: 0.25rem;
}

.article-content .author-box p {
    margin: 0;
    font-size: 0.9rem;
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    z-index: 1000;
    width: 0%;
    transition: width 0.1s ease;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 16 / 9;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-box {
    background: linear-gradient(135deg, rgba(160, 107, 134, 0.1), rgba(210, 131, 158, 0.1));
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    text-align: center;
    font-size: 1.05rem;
}

.key-points {
    background: var(--secondary-color);
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 0 8px 8px 0;
}

.key-points h3 {
    margin-top: 0;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.key-points ul {
    margin-left: 1.5rem;
    margin-bottom: 0;
}

.key-points li {
    margin-bottom: 0.75rem;
}

.article-footer {
    margin-top: 0;
    padding-top: 3rem;
}

.article-footer .section-container a {
    color: var(--accent-color);
}

.warning-box {
    background: rgba(251, 146, 60, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

/* =========================================
   Blog-specific Styles
   ========================================= */
.blog-header {
    padding-top: 10rem;
    padding-bottom: 4rem;
    background-color: var(--secondary-color);
}

.blog-header .section-container {
    padding: 0 2rem;
}

.blog-header .hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blog-hero-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.blog-portal {
    padding-top: 3rem;
    padding-bottom: 5rem;
}

.blog-controls {
    margin-bottom: 4rem;
}

.search-box-container {
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
}

.search-box-container i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.search-box-container input {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.1);
    font-size: 1rem;
    font-family: var(--font-sans);
    box-shadow: var(--shadow-sm);
    outline: none;
    transition: var(--transition);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

/* =========================================
   Blog Image Video (artículos)
   ========================================= */
.blog-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================================
   Utility Classes
   ========================================= */
.mt-3 {
    margin-top: 3rem;
}

.mb-0 {
    margin-bottom: 0;
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
    }

    .hero-content {
        padding-left: 0;
        margin-bottom: 3rem;
    }

    .hero-phrase {
        border-left: none;
        border-bottom: 4px solid var(--accent-color);
        padding-left: 0;
        padding-bottom: 1rem;
        display: inline-block;
    }

    .hero-actions {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.4s;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        left: 0;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .section-heading {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .hero-profession {
        font-size: 1.15rem;
    }

    .hero-phrase {
        font-size: 1rem;
    }

    .hero-actions {
        gap: 0.75rem;
    }

    .hero-instagram {
        padding: 1rem;
    }

    .hero-instagram .btn-instagram {
        width: 100%;
    }

    .credential-item {
        flex-direction: column;
    }

    .service-card,
    .procedure-card {
        padding: 1.75rem 1.25rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

/* =========================================
   Research Card
   ========================================= */
.research-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    border: 1px solid rgba(160, 107, 134, 0.15);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-md);
}

.research-card-header {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.research-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.research-icon i {
    color: white;
    font-size: 24px;
}

.research-card-header h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 0.4rem;
}

.research-card-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.research-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.research-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #A6CE39;
    color: white;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    width: fit-content;
    font-family: var(--font-sans);
}

.research-btn:hover {
    background-color: #8FB832;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(166, 206, 57, 0.35);
}

.research-btn i {
    font-size: 1.1rem;
}

.research-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.research-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.research-meta span i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .research-card-header {
        flex-direction: column;
    }
    .research-btn {
        width: 100%;
        justify-content: center;
    }
    .research-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* =========================================
   Hero Play Button (blog.html)
   ========================================= */
.hero-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.75rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.hero-play-btn:hover {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.08);
}