/* ===== RESET & VARIABLES ===== */
:root {
    --color-primary: #000000;
    --color-secondary: #F5F5DC;
    --color-accent: #FFFFFF;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #FFFFFF;
    --color-bg-dark: #1a1a1a;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: -100px;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: top 0.4s ease;
}

.navbar.visible {
    top: 0;
}

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

.logo-container {
    flex: 0 0 60px;
}

.nav-logo {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-accent);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1555244162-803834f70033?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    filter: blur(8px) brightness(0.4);
    transform: scale(1.1);
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.2);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    color: var(--color-accent);
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-accent);
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-accent);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--color-accent);
    margin-top: 10px;
}

/* ===== ABOUT / SOBRE NOSOTROS SECTION ===== */
.about-section {
    padding: 6rem 0;
    background: var(--color-bg);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-placeholder {
    font-size: 1.3rem;
    color: var(--color-text-light);
    font-style: italic;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    border-radius: 15px;
    border: 2px dashed #ddd;
}

/* ===== SERVICES SECTION - 4 PILARES ===== */
.services-section {
    padding: 6rem 0;
    background: var(--color-bg);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-top: -2rem;
    margin-bottom: 4rem;
}

/* Pilares de servicio */
.service-pillar {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
    padding: 2rem;
    background: var(--color-bg);
    border-radius: 20px;
    transition: var(--transition);
}

.service-pillar:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

/* Alternar dirección */
.pillar-left {
    flex-direction: row;
}

.pillar-right {
    flex-direction: row-reverse;
}

/* Contenido del pilar */
.pillar-content {
    flex: 1;
    padding: 2rem;
}

.pillar-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.pillar-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.pillar-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.pillar-content strong {
    color: var(--color-primary);
}

/* Imagen del pilar */
.pillar-image {
    flex: 1;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.pillar-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-pillar:hover .pillar-image img {
    transform: scale(1.05);
}

/* Responsive para pilares */
@media (max-width: 900px) {
    .service-pillar {
        flex-direction: column !important;
        text-align: center;
    }

    .pillar-image {
        max-width: 100%;
    }

    .pillar-content {
        padding: 1rem;
    }
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--color-primary);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-primary);
}

.subsection-title {
    font-family: 'Playfair Display', Georgia, serif;
    text-align: center;
    font-size: 2rem;
    margin: 4rem 0 2rem;
    color: var(--color-primary);
}

/* Event Banners */
.event-banners {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.event-banner {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
}

.event-banner:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.banner-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-banner:hover .banner-image img {
    transform: scale(1.1);
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    transition: var(--transition);
}

.event-banner:hover .banner-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    color: white;
    z-index: 2;
    transform: translateY(0);
    transition: var(--transition);
}

.banner-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.banner-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
}

/* Event Types Grid */
.event-types {
    margin-top: 5rem;
}

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

.event-type-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

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

.type-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.event-type-card h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    margin: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    color: white;
    font-size: 1.3rem;
    text-align: center;
}

/* ===== MENU SECTION ===== */
.menu-section {
    padding: 6rem 0;
    background: var(--color-secondary);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.menu-tab {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    cursor: pointer;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--color-primary);
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2.5rem;
}

.menu-item {
    display: flex;
    gap: 2rem;
    background: var(--color-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.menu-item-image {
    flex: 0 0 250px;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.15);
}

.menu-item-content {
    flex: 1;
    padding: 1.5rem 1.5rem 1.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-item-content h4 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.menu-item-content p {
    color: var(--color-text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* ===== GALLERY / CAROUSEL ===== */
.gallery-section {
    padding: 6rem 0;
    background: var(--color-primary);
    color: var(--color-accent);
}

.gallery-section .section-title {
    color: var(--color-accent);
}

.gallery-section .section-title::after {
    background: var(--color-accent);
}

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

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.placeholder-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.placeholder-image span {
    font-size: 6rem;
    filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.placeholder-image p {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
    background: var(--color-accent);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.carousel-btn.prev {
    left: 30px;
}

.carousel-btn.next {
    right: 30px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2.5rem;
}

.carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.carousel-dot.active {
    background: var(--color-accent);
    width: 40px;
    border-radius: 8px;
    border-color: var(--color-accent);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 6rem 0;
    background: var(--color-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--color-bg);
    border-radius: 10px;
    transition: var(--transition);
}

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

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    color: var(--color-primary);
    margin-bottom: 0.3rem;
}

.info-item p {
    color: var(--color-text-light);
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--color-bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    padding: 1rem 2rem;
    background: var(--color-primary);
    color: var(--color-accent);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-primary);
    color: var(--color-accent);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    height: 60px;
    width: auto;
}

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

.social-links a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.social-links a:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3rem;
        transition: right 0.3s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-logo {
        width: 150px;
    }

    .event-banner {
        height: 300px;
    }

    .banner-content {
        padding: 2rem;
    }

    .banner-content h3 {
        font-size: 1.8rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    .event-types-grid {
        grid-template-columns: 1fr;
    }

    .menu-tabs {
        gap: 0.5rem;
    }

    .menu-tab {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .menu-items {
        grid-template-columns: 1fr;
    }

    .menu-item {
        flex-direction: column;
        gap: 0;
    }

    .menu-item-image {
        flex: 0 0 200px;
        width: 100%;
    }

    .menu-item-content {
        padding: 1.5rem;
    }

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

    .carousel-container {
        height: 400px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .carousel-btn.prev {
        left: 15px;
    }

    .carousel-btn.next {
        right: 15px;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

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

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .subsection-title {
        font-size: 1.5rem;
    }

    .event-banner {
        height: 250px;
    }

    .banner-content {
        padding: 1.5rem;
    }

    .banner-content h3 {
        font-size: 1.4rem;
    }

    .banner-content p {
        font-size: 0.9rem;
    }

    .menu-item-image {
        flex: 0 0 180px;
    }

    .menu-item-content h4 {
        font-size: 1.2rem;
    }

    .carousel-container {
        height: 300px;
    }

    .placeholder-image span {
        font-size: 3.5rem;
    }

    .placeholder-image p {
        font-size: 1.2rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }
}

/* ===== SERVICE SECTIONS - Cada servicio individual ===== */
.service-section {
    padding: 5rem 0;
    background: var(--color-bg);
}

.service-section.service-alt {
    background: var(--color-secondary);
}

/* Bloque de servicio */
.service-block {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.block-left {
    flex-direction: row;
}

.block-right {
    flex-direction: row-reverse;
}

/* Contenido del servicio */
.service-content {
    flex: 1;
}

/* Header con icono y título juntos */
.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.service-icon {
    font-size: 2.5rem;
}

.service-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.service-tagline {
    font-size: 1.1rem;
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.service-description strong {
    color: var(--color-primary);
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--color-text);
}

/* Imagen del servicio */
.service-image {
    flex: 1;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-block:hover .service-image img {
    transform: scale(1.03);
}

/* Responsive para servicios */
@media (max-width: 900px) {
    .service-block {
        flex-direction: column !important;
        text-align: center;
    }

    .service-image {
        max-width: 100%;
    }
}

/* ===== SHOWCASE SECTION ===== */
.showcase-section {
    padding: 6rem 0;
    background: var(--color-primary);
}

.showcase-section .section-title {
    color: var(--color-accent);
}

.showcase-section .section-title::after {
    background: var(--color-accent);
}

.showcase-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* Grid del showcase */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.showcase-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.showcase-item.showcase-featured {
    grid-column: span 2;
}

.showcase-image {
    width: 100%;
    height: 100%;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: white;
    transition: var(--transition);
}

.showcase-item:hover .showcase-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.showcase-overlay h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.showcase-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive para showcase */
@media (max-width: 900px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-item.showcase-featured {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-item.showcase-featured {
        grid-column: span 1;
    }
}