@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: "Poppins", sans-serif;
    color: #333;
    line-height: 1.6;
}





.titulo{
    text-align: center;
    background-color: #1e1e24;
    color: #ffffff;
}



/* Contenedor principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sección principal */
.section {
    padding: 60px 0;
    background-color: #e8e9eb;
}

/* Layout de dos columnas */
.two-columns {
    display: flex;
    align-items: center;
    gap: 40px;
    min-height: 500px;
}

/* Columna de texto */
.text-column {
    flex: 1;
    padding-right: 20px;
}

/* Columna de imagen */
.image-column {
    flex: 1;
}

/* Título principal */
.title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.2;
}

/* Descripción */
.description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    text-align: justify;
}

/* Botón de llamada a la acción */
.cta-button {
    display: inline-block;
    background-color: #c4937a;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #b8825f;
    transform: translateY(-2px);
}

/* Contenedor de imagen */
.image-container {
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    
}

.image-container:hover img {
    transform: scale(1.05);
}


.feature-list {
    display: grid;
    gap: 10px;
    margin: 18px 0 20px;
}

.feature-list li {
    position: relative;
    padding: 11px 14px;
    border-left: 4px solid #c4937a;
    border-radius: 0 8px 8px 0;
    background-color: rgba(255, 255, 255, 0.72);
    box-shadow: 0 5px 16px rgba(30, 45, 61, 0.06);
}


/*footer nuevo prueba*/

.footer {
  padding: 22px 0;
  background: #101b28;
  color: rgba(255,255,255,.8);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: .9rem;
}

.footer__inner p {
  margin: 0;
}

.footer__inner a {
  color: #ffd56b;
  font-weight: 700;
  text-decoration: none;
}


/* Coffee Section */
.coffee {
    padding: 80px 0;
    background-color: #f5f5f7;
    position: relative;
}

.coffee-img {
    position: absolute;
    top: -50px;
    right: 0;
    width: 300px;
    z-index: 1;
}

.coffee-content {
    text-align: justify;
    text-align-last: center;
    position: relative;
    z-index: 2;
}

.coffee-content h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;

}

.parrafoqs {
    color: #000000;
}



.coffee-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #CE9678;
}

.txt-p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.coffee-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.coffee-1 {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #000000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    flex: 1;
    margin: 0 10px;
    text-align: justify;
}

.coffee-1:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.coffee-1 img {
    width: 40%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.coffee-1 h3 {
    color: #323337;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.coffee-1 p {
    font-size: 1rem;
    color: #000000;
    margin: 0 0 15px 0;
}


/* =====================================================
   SECCIÓN DE TRES COLUMNAS - CAPACITACIONES
   Basada en la referencia visual del index/style
   ===================================================== */

.capacitaciones-cards {
    width: 100%;
    padding: 70px 0;
    background-color: #f5f5f7;
}

.capacitaciones-cards__content {
    width: 100%;
}

.capacitaciones-cards__title {
    margin-bottom: 35px;
    text-align: center;
    font-size: 2.4rem;
    line-height: 1.2;
    color: #222;
}

.capacitaciones-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.capacitacion-card {
    min-width: 0;
    min-height: 560px;
    padding: 28px 30px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;

    background-color: #f8f9fa;
    border: 1px solid #111;
    border-radius: 10px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.capacitacion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.capacitacion-card img {
    display: block;
    width: 42%;
    max-width: 170px;
    height: 155px;
    margin: 0 auto 18px;
    object-fit: contain;
}

.capacitacion-card h3 {
    margin-bottom: 18px;
    text-align: center;
    font-size: 1.65rem;
    line-height: 1.2;
    color: #2b2b2b;
}

.capacitacion-card p {
    width: 100%;
    margin: 0;
    text-align: justify;
    text-align-last: center;
    font-size: 1rem;
    line-height: 1.6;
    color: #111;
}

.capacitacion-card .valores-lista {
    text-align: center;
    text-align-last: center;
    line-height: 1.65;
}


/* =====================================================
   TABLETS
   ===================================================== */

@media (max-width: 1024px) {

    .capacitaciones-cards {
        padding: 55px 0;
    }

    .capacitaciones-cards__grid {
        gap: 16px;
    }

    .capacitacion-card {
        min-height: 520px;
        padding: 24px 22px 28px;
    }

    .capacitacion-card img {
        max-width: 145px;
        height: 135px;
    }

    .capacitacion-card h3 {
        font-size: 1.5rem;
    }

    .capacitacion-card p {
        font-size: 0.95rem;
    }
}


/* =====================================================
   TABLETS PEQUEÑAS Y CELULARES
   ===================================================== */

@media (max-width: 768px) {

    .capacitaciones-cards {
        padding: 45px 0;
    }

    .capacitaciones-cards__title {
        margin-bottom: 28px;
        font-size: 2rem;
    }

    .capacitaciones-cards__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .capacitacion-card {
        width: 100%;
        min-height: auto;
        padding: 28px 24px;
    }

    .capacitacion-card img {
        width: 34%;
        max-width: 150px;
        height: 135px;
    }

    .capacitacion-card p {
        max-width: 620px;
        margin: 0 auto;
    }
}


/* =====================================================
   CELULARES
   ===================================================== */

@media (max-width: 480px) {

    .capacitaciones-cards {
        padding: 35px 0;
    }

    .capacitaciones-cards__content {
        padding-left: 12px;
        padding-right: 12px;
    }

    .capacitaciones-cards__title {
        font-size: 1.7rem;
        margin-bottom: 24px;
    }

    .capacitacion-card {
        padding: 22px 18px 24px;
        border-radius: 9px;
    }

    .capacitacion-card img {
        width: 42%;
        max-width: 125px;
        height: 110px;
        margin-bottom: 14px;
    }

    .capacitacion-card h3 {
        font-size: 1.35rem;
        margin-bottom: 14px;
    }

    .capacitacion-card p {
        font-size: 0.92rem;
        line-height: 1.55;
    }
}


/* =====================================================
   CELULARES MUY PEQUEÑOS
   ===================================================== */

@media (max-width: 360px) {

    .capacitaciones-cards__content {
        padding-left: 8px;
        padding-right: 8px;
    }

    .capacitacion-card {
        padding: 20px 14px 22px;
    }

    .capacitacion-card p {
        font-size: 0.86rem;
    }
}


/* =====================================================
   MENÚ PRINCIPAL RGIL SSOMA - NO FIJO
   ===================================================== */

.menu.container {
    position: relative;
    width: 100%;
    max-width: none;
    height: 80px;
    margin: 0;
    padding: 0 60px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background-color: #121212;
    z-index: 1000;
}

.menu .logo {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
}

.menu .logo img {
    display: block;
    width: auto;
    height: 60px;
    max-height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.menu .logo img:hover {
    transform: scale(1.08);
}

.menu .navbar {
    display: flex;
    align-items: center;
    height: 100%;
}

.menu .navbar ul {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu .navbar ul li {
    margin: 0;
    padding: 0;
}

.menu .navbar ul li a {
    position: relative;
    display: flex;
    align-items: center;
    height: 80px;
    padding: 0 12px;

    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 700;

    color: #ffffff;
    text-decoration: none;

    transition: color 0.3s ease, transform 0.3s ease;
}

.menu .navbar ul li a:hover {
    color: #ffffff;
    background-color: transparent;
    transform: translateY(-1px);
}

.menu .navbar ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 18px;
    width: 0;
    height: 2px;
    background-color: #d3a06f;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.menu .navbar ul li a:hover::after {
    width: calc(100% - 24px);
}

#menu {
    display: none;
}

.menu-label {
    display: none;
    cursor: pointer;
}

.menu-icono {
    display: none;
    width: 28px;
    height: 28px;
    filter: invert(1);
}


/* =====================================================
   IMAGEN PRINCIPAL RESPONSIVE
   ===================================================== */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.text-column,
.image-column {
    min-width: 0;
}

.product-image-container {
    width: 100%;
    height: auto !important;
    overflow: hidden;
    border-radius: 10px;
    background: transparent;
}

.product-image-container img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto !important;
    object-fit: contain !important;
    object-position: center;
    border-radius: 10px;
}

.product-image-container:hover img {
    transform: scale(1.02);
}


/* =====================================================
   TABLETS
   ===================================================== */

@media (max-width: 1024px) {

    .menu.container {
        padding: 0 28px;
    }

    .menu .navbar ul {
        gap: 16px;
    }

    .menu .navbar ul li a {
        padding: 0 8px;
        font-size: 15px;
    }

    .section {
        padding: 48px 0;
    }

    .two-columns {
        gap: 28px;
        min-height: auto;
    }

    .title {
        font-size: 2.1rem;
    }
}


/* =====================================================
   TABLETS PEQUEÑAS Y CELULARES
   ===================================================== */

@media (max-width: 768px) {

    .menu.container {
        position: relative;
        height: 70px;
        padding: 0 20px;
    }

    .menu .logo img {
        height: 54px;
        max-height: 54px;
    }

    .menu-label {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-icono {
        display: block;
        width: 28px;
        height: auto;
    }

    .menu .navbar {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        height: auto;
        display: none;
        background-color: #121212;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
        z-index: 9999;
    }

    .menu .navbar ul {
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 10px 0;
    }

    .menu .navbar ul li {
        width: 100%;
    }

    .menu .navbar ul li a {
        width: 100%;
        height: auto;
        display: block;
        padding: 15px 25px;
        text-align: center;
        font-size: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .menu .navbar ul li:last-child a {
        border-bottom: none;
    }

    .menu .navbar ul li a::after {
        display: none;
    }

    .menu .navbar ul li a:hover {
        background-color: rgba(255, 255, 255, 0.06);
        transform: none;
    }

    #menu:checked ~ .navbar {
        display: block;
    }

    .section {
        padding: 36px 0;
    }

    .section > .container {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .two-columns {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
        min-height: auto;
    }

    .text-column {
        width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .image-column {
        width: 100%;
        max-width: 100%;
    }

    .title {
        font-size: 1.85rem;
        text-align: center;
    }

    .feature-list {
        width: 100%;
        text-align: left;
    }

    .cta-button {
        margin: 0 auto;
    }

    .product-image-container {
        width: 100%;
        max-width: 680px;
        margin: 0 auto;
        height: auto !important;
    }

    .product-image-container img {
        width: 100%;
        max-width: 100%;
        height: auto !important;
        object-fit: contain !important;
    }

    .product-image-container:hover img {
        transform: none;
    }
}


/* =====================================================
   CELULARES
   ===================================================== */

@media (max-width: 480px) {

    .menu.container {
        height: 65px;
        padding: 0 15px;
    }

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

    .menu .navbar {
        top: 65px;
    }

    .menu-icono {
        width: 25px;
    }

    .menu .navbar ul li a {
        padding: 14px 20px;
        font-size: 14px;
    }

    .section {
        padding: 28px 0;
    }

    .section > .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .two-columns {
        gap: 20px;
    }

    .title {
        font-size: 1.55rem;
        margin-bottom: 16px;
    }

    .feature-list {
        gap: 6px;
        margin: 10px 0 18px;
    }

    .feature-list li {
        padding: 7px 8px;
        font-size: 0.86rem;
        line-height: 1.4;
    }

    .cta-button {
        padding: 11px 22px;
        font-size: 0.82rem;
    }

    .product-image-container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .product-image-container img {
        width: 100%;
        height: auto !important;
        object-fit: contain !important;
    }
}

@media (max-width: 360px) {

    .section > .container {
        padding-left: 8px;
        padding-right: 8px;
    }

    .title {
        font-size: 1.35rem;
    }

    .feature-list li {
        font-size: 0.8rem;
    }
}
