/* Fuentes locales */
@font-face {
    font-family: 'MiFuente';
    src: url('fonts/MiFuente.woff2') format('woff2');
}

body {
    margin: 0;
    font-family: 'MiFuente', sans-serif;
    background-color: #bbe8a6;
    color: #000;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    z-index: 1000;
}

header .logo {
    flex-shrink: 0;
}

header .logo-img {
    max-height: 50px;
}

header nav {
    display: flex;
    align-items: center;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

.hamburger {
    display: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    margin-left: 20px;
}

/* Hero */
.hero {
    margin-top: 70px;
    text-align: center;
    padding: 50px 20px;
}

.hero-logo {
    max-width: 300px;
}

/* Secciones */
.scroll-section {
    padding: 50px 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-section.active {
    opacity: 1;
    transform: translateY(0);
}

.personas, .roles, .tools {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.podcaster-img {
    max-width: 200px;
    display: block;
    margin: 20px auto;
}

button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #444;
}

/* Footer */
footer {
    background-color: #ceacfe;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

/* Selección de texto */
::selection {
    background: #fec03a;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    header nav ul {
        display: none;
        flex-direction: column;
        background-color: rgba(0,0,0,0.9);
        position: absolute;
        right: 20px;
        top: 60px;
        padding: 10px;
        border-radius: 5px;
    }

    header nav ul.show {
        display: flex;
    }

    .hamburger {
      
      /* Bloquear arrastre de imágenes */
img {
    user-drag: none;
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -ms-user-drag: none;
    pointer-events: none;
}
        display: block;
    }

    header .logo {
        text-align: center;
        flex: 1;
    }
}