/* Importar tipografía tipo Impact/Condensed parecida a la imagen */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@600;700&family=Roboto+Condensed:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@600;700&family=Roboto+Condensed:wght@400;700&display=swap');

/* Estilos de la sección Hero */
.hero-section {
    min-height: 520px;
    background-image: url('https://admingalleries.clicknic.click/uploads/companies/12/WhatsAppImage2026-07-13at10.19.00AM5_1784056504.jpeg');
    /* Reemplaza por la ruta de tu imagen de pinos/casa */
    background-size: cover;
    background-position: center right;
    font-family: 'Oswald', 'Roboto Condensed', sans-serif;
}

/* Oscurecimiento del fondo para lectura del texto */
.hero-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.2) 100%);
}

/* Tipografía del Título */
.hero-title {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: 0.5px;
    /* Efecto de textura sutil de texto recortado si el navegador lo soporta */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-title-yellow {
    color: #f3a600;
    /* Color amarillo exacto de la imagen */
}

/* Lista de Beneficios */
.hero-features {
    font-size: clamp(0.85rem, 1.5vw, 1.05rem);
    letter-spacing: 0.5px;
    font-family: 'Roboto Condensed', sans-serif;
}

.hero-check-icon {
    color: #f3a600;
    font-size: 1.15rem;
}

/* Botón Verde */
.btn-hero-green {
    background-color: #007c04;
    /* Color verde olivo/bosque */
    color: #ffffff;
    border: 1px solid #084d0a;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: all 0.2s ease-in-out;
}

.btn-hero-green:hover {
    background-color: #084d0a;
    color: #ffffff;
    border-color: #084d0a;
}

/* Botón Delineado */
.btn-hero-outline {
    background-color: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    border: 1.5px solid #ffffff;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: all 0.2s ease-in-out;
}

.btn-hero-outline:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}


/*====================PRODUCTS=======================*/
.products-section {
    background-color: #f6f4ee;
    /* Fondo crema claro idéntico a la imagen */
    font-family: 'Roboto Condensed', sans-serif;
}

/* Encabezado */
.section-title {
    font-family: 'Oswald', sans-serif;
    color: #007c04;
    font-size: 2.2rem;
    letter-spacing: 1px;
}

.title-divider {
    width: 120px;
    height: 2px;
    background-color: #8c967d;
    position: relative;
    margin-top: 10px;
}

.divider-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f6f4ee;
    padding: 0 6px;
    font-size: 0.85rem;
}

/* Estilos de la Tarjeta */
.product-card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12) !important;
}

/* Encabezado de la imagen */
.card-img-header {
    height: 240px;
    overflow: hidden;
}

.card-img-header img {
    height: 100%;
    filter: brightness(0.85);
}

.card-overlay-title {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    z-index: 2;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.card-overlay-title h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.title-white {
    color: #ffffff;
}

.title-yellow {
    color: #f3a600;
}

/* Cuerpo crema de la tarjeta */
.bg-cream {
    background-color: #eae6db;
}

.card-description {
    font-size: 0.95rem;
    line-height: 1.35;
    font-weight: 500;
}

/* Íconos de características */
.feature-icon-box {
    width: 36px;
    height: 36px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: #007c04;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.feature-text {
    font-size: 0.72rem;
    line-height: 1.1;
    display: block;
    font-weight: 700;
    color: #2b3520;
}

/* Pie de tarjeta */
.bg-dark-green {
    background-color: #007c04;
}

.fs-7 {
    font-size: 0.75rem;
}

.price-amount {
    font-family: 'Oswald', sans-serif;
    color: #f3a600;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    margin: 0 4px;
}

/* Botón delineado del pie */
.btn-outline-light-custom {
    border: 1px solid #7d8b70;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.btn-outline-light-custom:hover {
    background-color: #ffffff;
    color: #172412;
    border-color: #ffffff;
}

/*More Info*/
/* Estilos de Contenedor General */
.options-section {
    background-color: #f3f0e8;
    /* Fondo beige claro exacto */
    font-family: 'Roboto Condensed', sans-serif;
    color: #1a1a1a;
}

/* Títulos de Sección */
.section-title {
    font-family: 'Oswald', sans-serif;
    color: #1a2313;
    font-size: 2rem;
    letter-spacing: 0.5px;
}

.title-divider {
    width: 100px;
    height: 1px;
    background-color: #b5bba8;
    position: relative;
}

.divider-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f3f0e8;
    padding: 0 4px;
    font-size: 0.75rem;
}

/* Íconos Circulares con el Verde Personalizado */
.circle-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #007c04;
    /* Verde solicitado */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

/* Purchase Options */
.option-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    color: #1a2313;
}

.option-desc {
    font-size: 0.85rem;
    line-height: 1.2;
}

/* Divisores verticales del bloque de Purchase Options */
@media (min-width: 576px) {
    .divider-left {
        border-left: 1px solid #c9cebe;
    }
}

.vertical-divider {
    width: 1px;
    background-color: #c9cebe;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
}

/* Tarjetas de Materiales */
.material-img-wrapper {
    height: 150px;
}

.material-label {
    background-color: #007c04;
    /* Verde solicitado */
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Tarjetas de Servicios de Entrega */
.service-card {
    border: 1px solid #e2ded2;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08) !important;
}

.service-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    color: #1a2313;
    line-height: 1.1;
}

.service-price-text {
    font-size: 0.85rem;
}

.service-price {
    font-family: 'Oswald', sans-serif;
    color: #013f03;
    /* Verde solicitado */
    font-size: 2rem;
    font-weight: 700;
    vertical-align: middle;
    margin-left: 4px;
}

/*Botones*/
/* Estilos para el nuevo botón de WhatsApp */
.btn-whatsapp {
    background-color: #013f03;
    color: #ffffff;
    border: 1px solid #25d366;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.btn-whatsapp:hover {
    background-color: #1da851;
    color: #ffffff;
    border-color: #1da851;
}

/* Botón delineado ajustado para compartir espacio */
.btn-outline-light-custom {
    border: 1px solid #7d8b70;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.btn-outline-light-custom:hover {
    background-color: #ffffff;
    color: #172412;
    border-color: #ffffff;
}


/* Botón delineado oscuro para el card-body claro */
.btn-outline-dark-custom {
    border: 1px solid #007c04;
    color: #007c04;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.btn-outline-dark-custom:hover {
    background-color: #007c04;
    color: #ffffff;
}

/* Descripción de 4 palabras sobre los botones de pago */
.pay-desc {
    font-size: 0.72rem;
    letter-spacing: 0.3px;
    font-family: 'Roboto Condensed', sans-serif;
}

/* Estilos de los botones de pago en el footer */
.btn-pay-custom {
    background-color: #f3a600;
    /* Color amarillo oro destacado */
    color: #172412;
    border: 1px solid #f3a600;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
}

.btn-pay-custom:hover {
    background-color: #d99400;
    border-color: #d99400;
    color: #000000;
}