/* imagen cabecera */
.header-marisqueo-section {
    height: 50vh;
    background-image: url('../imagenes/barcos-Noia.jpg');
    background-size: cover;
    background-position: center;
}

/* cupos */
.cupos-section {
    background-color: var(--color-fondo);
    color: var(--color-texto);
    width: 100%;
}

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

.cupos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    justify-items: center;
}

.cupo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 220px;
}

.especie-name {
    font-family: var(--fuente-destacados);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-top: 10px;
    margin-bottom: 12px;
    line-height: 1.2;
    color: var(--color-texto);
    text-transform: uppercase;
}

.kg-info {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
    width: 80%;
}

.kg-info p {
    font-family: var(--fuente-principal);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 2px 0;
    text-transform: lowercase;
}

.kg-info p span {
    color: #ffffff;
    font-weight: 700;
    margin-right: 3px;
}

.circle-container {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 3px solid var(--color-texto);
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
    background-color: var(--color-fondo);
}

.circle-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cupo-card:nth-child(1) .especie-name {
    text-transform: uppercase;
}

/* BERBERECHO */
.cupo-card:nth-child(2) .especie-name {
    text-transform: lowercase;
}

/* xapónica */
.cupo-card:nth-child(3) .especie-name {
    text-transform: lowercase;
}

/* babosa */
.cupo-card:nth-child(4) .especie-name {
    text-transform: capitalize;
}

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

    .circle-container {
        width: 160px;
        height: 160px;
    }
}

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

/* Cotizaciones */
.cotizacions-section {
    background-color: var(--color-texto);
    color: #081c33;
    margin: 60px 0;
    padding: 60px 70px;
}

.cotizacions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.cotizacion-card {
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: center;
}

.cotizacion-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #eee;
    flex-shrink: 0;
}

.cotizacion-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cotizacion-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    flex: 0 1 auto;
    min-width: 200px;
}

.cotizacion-info h3 {
    font-family: var(--fuente-destacados);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 10px;
    margin-left: 0;
    padding-left: 0;
    white-space: nowrap;
}

.cotizacion-info ul {
    list-style: none;
    font-family: var(--fuente-principal);
    padding: 0;
    margin: 0;
}

.cotizacion-info li {
    font-size: 1rem;
    margin: 5px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 180px;
    margin-bottom: 5px;
}

.arrow::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}

.arrow.up::before {
    border-bottom: 10px solid var(--color-tarjeta-cyan);
}

.arrow.down::before {
    border-top: 10px solid var(--color-rojo);
}

/* Noticia last */
.marisqueo-video-section {
    align-items: center;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.text-content-video h2 {
    font-family: var(--fuente-destacados);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.text-content-video p {
    font-family: var(--fuente-principal);
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 900px) {
    .header-marisqueo-section {
        height: 35vh;
    }

    .cotizacions-grid {
        gap: 20px;
    }

    .cotizacions-section {
        padding: 40px 10px;
    }

    .cotizacion-circle {
        width: 140px;
        height: 140px;
    }

    .cotizacion-info h3,
    .cotizacion-info li {
        font-size: 0.9rem;
    }
}

@media (max-width: 550px) {
    .cotizacion-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .cotizacion-circle {
        width: 150px;
        height: 150px;
        margin-bottom: 10px;
    }

    .cotizacion-info {
        align-items: center;
        width: 100%;
    }

    .cotizacion-info ul {
        display: inline-block;
        width: auto;
    }

    .cotizacion-info li {
        justify-content: space-between;
        min-width: 180px;
    }
}