@import url("https://use.typekit.net/vnz5bfp.css");

:root {
    --header-height: 80px;
    --green: #295E4D;
    font-family: "segoe-ui", sans-serif;
}

.hero-slider {
    position: relative;
    width: 100vw;
    height: 600px;
    overflow: hidden;
}

/* SLIDES */
.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

/* CONTENIDO */
.slide-content {
    height: 100%;
    display: flex;
}

.slide-box {
    margin-top: 8%;
    width: 656px;
    height: 200px;
    background: #114635bf;
    opacity: 0.25;
    padding: 30px 40px;
    margin-left: 80px;
    transform: translateX(-100px);
    opacity: 0;
    animation: slideIn 1s ease forwards;
}



.slide.active .slide-box {
    animation: slideIn 1s ease forwards;
}

.slide-box h1 {
    color: #fff;
    font-size: 52px;
    line-height: 1.2;
}

/* ANIMACIÓN TEXTO */
@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* CONTENEDOR DE FLECHAS */
.arrow {
    position: absolute;
    top: 20px;
    right: 20px;

    width: 40px;
    height: 40px;
    color: #295E4D;
    font-size: 20px;
    cursor: pointer;
    margin-right: 2%;
    margin-top: 2%;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: color 0.3s ease, border-color 0.3s ease;
}

/* Separación entre botones */
.arrow-left {
    right: 70px; /* el primero */
}

.arrow-right {
    right: 20px; /* el segundo */
}

/* HOVER AMARILLO */
.arrow:hover {        /* amarillo */
    background-color: #F4A418;
}

/* DOTS */
.dots {
    position: absolute;
    bottom: 60px;
    left: 80px;
    transform: none;
    display: flex;
    gap: 18px;
    align-items: center;
}

/* Dot normal */
.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.4;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

/* Dot activo */
.dot.active {
    opacity: 1;
    background: transparent;
    width: 24px;
    height: 24px;
}

/* SVG solo en el activo */
.dot.active::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/img/Inicio/Runa.svg") center/contain no-repeat;
}

/* Tooltip con emoji */
.dot::after {
    content: attr(data-icon);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s;
}

.dot:hover::after {
    opacity: 1;
}

/* FLECHA ABAJO */
.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 10px);
    }
}

/* ===============================
   ABOUT BLOQUE
================================ */

.about-container {
    position: relative;
    width: 844px; /* 1125 * 0.75 */
    height: 300px; /* 400 * 0.75 */
    display: flex;
    align-items: center;
    margin: 0 auto;
    padding-left: 60px; /* 80 * 0.75 */
    margin-top: 150px; /* 200 * 0.75 */
    margin-bottom: 150px; /* 200 * 0.75 */
}

/* ===============================
   TEXTO IZQUIERDA
================================ */

.about-text {
    width: 516px; /* 688 * 0.75 */
    height: 352px; /* 470 * 0.75 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 21px;
}

.about-tag {
    width: 387px; /* 517 * 0.75 */
    padding: 11px 0; /* 15 * 0.75 */
    font-size: 36px; /* 48 * 0.75 */
    font-weight: 600;
    color: #7a3b16;
    border-bottom: #7a3b16 2px solid; /* 3px * 0.75 */
}

.about-text h2 {
    font-size: 46px; /* 62 * 0.75 */
    line-height: 1.15;
    color: #1f5b46;
    font-weight: 700;
    margin-top: 20px; /* 27 * 0.75 */
    margin-bottom: 0;
}

.about-text p {
    font-size: 16px; /* 21 * 0.75 */
    line-height: 1.6;
    color: #555;
    max-width: 465px; /* 620 * 0.75 */
}

/* ===============================
   ACCIONES
================================ */

.about-actions {
    display: flex;
    align-items: center;
    gap: 30px; /* 40 * 0.75 */
}

.btn-primary {
    position: relative;
    width: 173px; /* 231 * 0.75 */
    height: 38px; /* 50 * 0.75 */
    background: #295E4D;
    color: #ffffff;
    font-size: 16px; /* 22 * 0.75 */
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px; /* 4 * 0.75 */
}

.btn-link {
    font-size: 16px; /* 21 * 0.75 */
    font-weight: 700;
    color: #295E4D;
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
}

.btn-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px; /* -4 * 0.75 */
    width: 100%;
    height: 1px;
    background: #1f5b46;
}

/* ===============================
   IMAGEN DERECHA
================================ */

.about-image {
    width: 552px; /* 736 * 0.75 */
    height: 416px; /* 554 * 0.75 */
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===============================
   GRECA DERECHA
================================ */

.about-greca {
    position: absolute;
    right: -35%;
    top: 50%;
    transform: translateY(-50%);
    height: 416px; /* 554 * 0.75 */
    width: 45px; /* 60 * 0.75 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-greca img {
    width: 36px; /* 58 * 0.75 */
    height: auto;
    object-fit: contain;
    margin: 0;
}

/* ===============================
   BARRA VERDE IZQUIERDA
================================ */

.about-bar {
    position: absolute;
    left: -35%;
    top: 50%;
    transform: translateY(-50%);
    width: 36px; /* 58 * 0.75 */
    height: 600px; /* 957 * 0.75 */
    background: #295E4D;
    z-index: 1;
}

/* ===============================
   Barras inferiores
================================ */

.itemsEyP-container {
    width: 100%;
    overflow: hidden;
}

.BarrasInf,
.BarraMaderaInicio {
    width: 100vw;
    height: auto;
}

.iconosBarra {
    width: 100vw;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ===============================
   CARRUSEL ESPECIES INICIO
================================ */

.especiesInicio {
    height: 620px; /* 827 * 0.75 */
    position: relative;
    width: 100%;
    background: #ffffff;
    display: grid;
    grid-template-columns: 420px 1fr;
    align-items: stretch;
    z-index: 10;
}
.carrusel-item span{
    font-size: 16px;
}
.especies-carrusel {
    width: auto;
    height: 420px;
    position: relative;
    padding: 10%;
    justify-content: center;
}

.carrusel-wrapperInicio {
    width: 668px;
    height: auto;
    margin: 0 auto;
    position: relative;
}


.titulo-especies {
    text-align: center;
    font-size: 24px; 
    margin: 0;
    line-height: 0;
}
/* ===============================
   PANEL DE PRODUCTOS
================================ */
.panel-productos {
    width: 325px; 
    height: 700px; 
    background: #ffffff;
    padding: 45px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    align-items: stretch;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 20;
    position: relative;
    top: -90px; /* -120 * 0.75 */
    margin-left: 45px; /* 60 * 0.75 */
}

.panel-productos h3 {
    font-size: 36px; /* 48 * 0.75 */
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 37px; /* 50 * 0.75 */
}

.productos-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.productos-lista li {
    font-size: 16px; /* 21 * 0.75 */
    margin-bottom: 16px; /* 22 * 0.75 */
    cursor: pointer;
}

.productos-lista li:hover {
    color: #295E4D;
}

.btn-catalogo {
    margin: 45px auto 0; /* 60 * 0.75 */
    width: 165px; /* 220 * 0.75 */
    height: 36px; /* 48 * 0.75 */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #295E4D;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}


