/* =====================================================*/
/* Bloque principal MAR DE SABORES: dos columnas */
/* =====================================================*/

.bloque-inicio {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 100vh; 
}

/* Bloque izquierdo: texto y boton */
.inicio-texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end; /* alineado a la derecha */
    padding-right: 60px;
    background: #f9f6f1 !important;
    border-right: 3px solid #f4d58d;
}

/* Título principal */
.titulo-principal {
    font-family: Lato, sans-serif;
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 700;
    font-style: italic;
    color: #000;
    text-align: right;
    line-height: 1.9;
    margin: 0 0 20px 0;
    text-shadow: 2px 1px 3px rgba(0,0,0,0.15);
    letter-spacing: 3px;  
    word-spacing: 5px;
}

/* Botón CTA */
.boton-cta {
    /*background: linear-gradient(180deg, #a97317 0%,#282015 70%);*/
    background: linear-gradient(45deg, #c9b387, #1b1c24);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 12px;
    font-family: Lato, sans-serif;
    font-weight: 400;
    transition: background-color 0.3s ease;
    border: 2px solid rgba(255,255,255,0.25);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    color:#ffffff;
    display: inline-block;
}

.boton-cta:hover {
    background: linear-gradient(145deg, #1b1c24,  #c9b387); /* invertir gradiente suavemente */
    box-shadow: 0 8px 16px rgba(0,0,0,0.25);
    transform: translateY(-2px);
    color:#d4b483;
}

/* Bloque derecho: imagen */
.inicio-imagen {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.imagen-hero {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* Ajuste responsive para móvil */
@media (max-width: 768px) {
    .bloque-inicio {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .inicio-texto {
        align-items: center;
        padding: 20px;
    }

    .titulo-principal {
        text-align: center;
    }

    .boton-cta {
        margin-top: 20px;
    }
}

/*******************/
/* Bloque NOSOTROS */
/*******************/

    .bloque-nosotros {
        width: 100%;      
        margin: 0 auto;     
        padding: 60px 20px;      
        background: linear-gradient(180deg, #c9b387, #1b1c24 70%);
        border-top: 4px solid #f4d58d;
        border-bottom: 4px solid #f4d58d;
    }

    .bloque-nosotros h2 {
        font-size: clamp(32px, 4vw, 50px);
        text-shadow: 2px 1px 3px rgba(0,0,0,0.15);
        color:#f4d58d;
        text-align: center; 
        font-style: italic;
        font-weight: 700;
        letter-spacing: 1px;  
        margin-bottom: 30px;
    }

    .descripcion-empresa li::before {
        content: "•";
        color: #f4d58d;
        font-size: 1.6em;
        margin-right: 8px;
    }

    .descripcion-empresa p,
    .descripcion-empresa ul {
        color: #fff;
        font-family: Lato, sans-serif;
        font-size: clamp(18px,3vw,22px);
        line-height: 1.7;
        font-weight: 400;
        max-width: 1200px;
        text-align: justify;
        margin: 0 auto 2rem auto;   /* centrado y separación */
    }

    .descripcion-empresa li {
         margin-bottom: 1.2rem;       /* espacio entre ítems */
    }

    .descripcion-empresa li b {
        color: #f4d58d;
        font-weight: 700;              
    }

    .subtitulo {
        font-size: clamp(16px, 2vw, 22px);
        font-weight: 300;
        color: #555;
        margin-top: 20px;
        margin-bottom: 80px;
        font-style: normal;
    }

/*******************/
/* Bloque SEPARADOR */
/*******************/

    #separador {
        position: relative;
        height: 250px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        /*background: url("../imagenes/mejillones.jpg") center/cover no-repeat;*/
        background: url("../imagenes/mar2.png") center/cover no-repeat;
        overflow: hidden;   
        border-top: 4px solid #f4d58d;
        border-bottom: 4px solid #f4d58d;
        margin-bottom: 20px;
        z-index: 1;
    }
/*
    #separador::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.7); /* 👈 blanco al 70% */
       /* z-index: 1; /* queda detrás del texto */
 /*   }*/


    .separador-texto {
        position: relative;
        z-index: 2; /* texto por encima de la capa blanca */
        color: white;
     }
            
.separador-texto h2 {
        font-size: clamp(32px, 4vw, 50px);
        color:#4e3b2f;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.15);
        text-align: center; 
        font-style: italic;
        font-weight: 700;
        letter-spacing: 1px;  
        margin-bottom: 30px;

    }
   
.separador-texto p {
        font-size: clamp(16px, 2vw, 22px);
        font-weight: 700;
        color: #000000;
        margin-top: 20px;
        margin-bottom: 40px;
        font-style: normal;
    } 

   