/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #f8fafc;
}

/* Header Styles */
header {
    background: rgb(39, 39, 39);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo img {
    max-width: 140px;
    height: auto;
    display: block;
}

/* Header Container */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #fff;
    margin: 6px 0;
    transition: all 0.3s ease;
}

#menu-toggle:checked + .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

#menu-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
}

#menu-toggle:checked + .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Navigation Menu */
.menu-horizontal {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    padding: 0;
    justify-content: flex-end;
}

.menu-horizontal li {
    position: relative;
}

.menu-horizontal a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.menu-horizontal a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #facc15;
}

/* Dropdown Menu */
.menu-vertical {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgb(39, 39, 39);
    min-width: 180px;
    list-style: none;
    padding: 0.5rem 0;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.menu-horizontal li:hover .menu-vertical {
    display: block;
}

.menu-vertical li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.menu-vertical li a:hover {
    background-color: #333333;
}

/* Main Section */
main {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.entrevistas {
    text-align: center;
}

.entrevistas h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #facc15;
    letter-spacing: -0.025em;
}

.entrevistas p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #475569;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Slides Grid */
.entrevistas .slide-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    padding: 2rem 0;
}

.slide {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 440px;
    margin: 0 auto;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.slide a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #1a1a1a;
    height: 100%;
}

.slide img {
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: cover;
    border-bottom: 2px solid #facc15;
    transition: filter 0.3s ease;
}

.slide:hover img {
    filter: brightness(1.1) drop-shadow(0 0 10px #facc15);
}

.slide h3 {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    text-align: center;
    color: #1a1a1a;
    transition: color 0.3s ease;
    margin-top: 0.5rem;
}

.slide p {
    font-size: 0.9rem;
    padding: 0 1rem 1rem;
    text-align: center;
    color: #475569;
    line-height: 1.4;
    flex-grow: 1;
}

.slide a:hover h3 {
    color: #facc15;
}

.slide a:hover p {
    color: #1a1a1a;
}

/* Footer */
.footer {
    background: rgb(39, 39, 39);
    color: #fff;
    padding: 3rem 1.5rem;
    text-align: center;
}

.social-icon {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-icon .icon {
    color: #fff;
    font-size: 1.8rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon .icon:hover {
    color: #facc15;
    transform: scale(1.2);
}

.menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.menu-elem a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu-elem a:hover {
    color: #facc15;
}

.text {
    font-size: 0.95rem;
    color: #cbd5e1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .entrevistas .slide-container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 40px;
    }

    .entrevistas h1 {
        font-size: 2.4rem;
    }

    .entrevistas p {
        font-size: 1rem;
    }

    .slide {
        max-width: 380px;
    }

    .slide h3 {
        font-size: 0.95rem;
    }

    .slide p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .hamburger {
        display: block;
    }

    .menu-horizontal {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgb(39, 39, 39);
        padding: 1.5rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        justify-content: flex-start;
    }

    #menu-toggle:checked + .hamburger + .menu-horizontal {
        display: flex;
    }

    .menu-horizontal li {
        margin: 0.75rem 0;
    }

    .menu-vertical {
        position: static;
        background-color: rgb(39, 39, 39);
        margin-top: 0.75rem;
        border-radius: 6px;
    }

    .entrevistas h1 {
        font-size: 2rem;
    }

    .entrevistas p {
        font-size: 0.95rem;
    }

    .entrevistas .slide-container {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 30px;
    }

    .slide {
        max-width: 320px;
        margin-bottom: 2rem;
    }

    .slide h3 {
        font-size: 0.9rem;
    }

    .slide p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        max-width: 120px;
    }

    .entrevistas .slide-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
        padding: 1rem;
    }

    .slide {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .entrevistas h1 {
        font-size: 1.8rem;
    }

    .slide h3 {
        font-size: 0.85rem;
    }

    .slide p {
        font-size: 0.75rem;
        padding: 0 0.75rem 0.75rem;
    }

    .social-icon .icon {
        font-size: 1.5rem;
    }

    .menu {
        flex-wrap: wrap;
        gap: 1rem;
    }
}
