/* POPPINS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Poppins', sans-serif;
}

body {
    text-align: justify;
    background: #f7f7f7;
}

/* TOP BAR */
#top-bar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1280px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 20px;
    z-index: 999;

    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);

    border-radius: 0 0 20px 20px;
}

#logo-mini {
    width: 120px;
}

/* Botones */
#btn-contacto,
#btn-menu {
    background: #b44728;
    padding: 10px 25px;
    border-radius: 20px;
    color: white;
    text-decoration: none;
    margin-left: 15px;
}

#btn-contacto:hover,
#btn-menu:hover {
    background: #8c341d;
}

/* SECCIÓN */
.editorial-section {
    padding: 40px;
}

.editorial-titulo {
    color: #b44728;
    margin-bottom: 10px;
}

.editorial-intro {
    margin-bottom: 20px;
}

.editorial-imagen-principal {
    width: 100%;
    height: 260px;
    background: #c5c5c5;
    border-radius: 15px;
    margin: 25px 0;
}

.editorial-descripcion {
    max-width: 800px;
    margin: auto;
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* TARJETAS */
.editorial-paquetes {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.editorial-tarjeta {
    background: white;
    width: 280px;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);

    overflow: visible;
    position: relative;
}

/* ICONO */
.editorial-icono {
    width: 110px;
    height: 110px;
    background: #d9d9d9;
    border-radius: 12px;
    margin: auto;
    margin-bottom: 12px;
    overflow: hidden;
}

.editorial-icono img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Botón */
.editorial-btn {
    background: #b44728;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
}

.editorial-btn:hover {
    background: #8c341d;
}


.editorial-contenido {
    background: #efefef;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 14px;
    text-align: left;

    overflow: visible;

    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);

    transition:
        max-height .55s cubic-bezier(.25,1,.5,1),
        opacity .45s ease,
        transform .55s cubic-bezier(.25,1,.5,1),
        padding .3s ease;
}

.editorial-contenido.open {
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
    padding: 12px;
}

/* LISTAS */
.editorial-contenido ul {
    margin-left: 22px;
    padding-left: 18px;
    list-style: disc;
}

.editorial-contenido ul li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Botón ver trabajos */
.editorial-ver-trabajos {
    text-align: center;
    margin-top: 20px;

    /* FIX */
    position: relative;
    z-index: 20;
}

.editorial-btn-trabajos {
    background: #b44728;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;

    /* FIX */
    position: relative;
    z-index: 20;
}

.editorial-btn-trabajos:hover {
    background: #8c341d;
}

