@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-blue: #003087; 
    --light-blue: #007bff; 
    --dark-text: #212529; 
    --link-red: #cc0000;
}
#hero-section {
    background-image: url('../../../public/imagen/slider/background-slider.png'); 
    background-size: cover;
    background-position: center center;
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
    overflow: hidden; 
}
.display-4 {
    font-family: "Roboto", sans-serif; 
    font-size: 2.8rem; 
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--dark-text); 
    font-weight: 800; 
}
.text-primary-custom {
    color: var(--primary-blue) !important;
}
@media (min-width: 992px) { 
    .display-4 {
        font-size: 3.8rem;
    }
}
.description-text {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 2rem;
}
.lead-badge {
    background-color: transparent; 
    border: none;
    color: var(--dark-text);
    padding: 0; /* Sin padding extra */
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}
.lead-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--link-red);
    border-radius: 50%;
    margin-right: 5px;
}
.btn-primary-custom {
    background-color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    color: #fff;
    font-weight: bold;
    padding: 0.75rem 1.75rem; 
    border-radius: 10px; 
    transition: background-color 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #001f5e;
    border-color: #001f5e;
}
.btn-outline-custom {
    background-color: #fff; 
    border: 2px solid #ccc;
    color: var(--dark-text);
    font-weight: bold;
    padding: 0.75rem 1.75rem;
    border-radius: 10px; 
    transition: all 0.3s ease;
}
.btn-outline-custom:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background-color: #fff;
}
.features-list small {
    color: #495057 !important; 
    font-weight: 600;
}

.features-list .icon-color {
    color: var(--link-red);
    margin-right: 5px;
}
.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1), 
        0 12px 28px rgba(0, 48, 135, 0.15),
        0 40px 100px rgba(0, 0, 0, 0.05);
}

/* Sección de Contadores */
.counter-section {
    background-color: #002e86;
    color: white;
    padding: 60px 20px;
    text-align: center;
}
.counter-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}
.counter-item {
    flex-basis: 25%;
    padding: 0 10px;
}
.number, .unit {
    display: inline-block;
    font-size: 4em; 
    font-weight: 700; 
    line-height: 1;
}
.label {
    font-size: 1.1em;
    font-weight: 400;
    margin-top: 10px;
}
@media (max-width: 768px) {
    .counter-container {
        flex-direction: column;
    }
    .counter-item {
        margin-bottom: 30px;
    }
}

/* --- Estilos Generales de la Sección --- */
.products-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.content-header {
    max-width: 800px;
    margin: 0 auto 40px;
}
.tag {
    color: #cc523c;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 5px;
}
.title {
    color: #212529;
    font-size: 2.5em;
    font-weight: 700;
    margin: 0 0 10px 0;
}
.subtitle {
    color: #6c757d; 
    font-size: 1.1em;
    line-height: 1.6;
}
.product-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%; 
    display: flex;
    flex-direction: column;
}
.image-wrapper {
    background-color: #f7e9d7; 
    padding: 30px;
    border-radius: 8px 8px 0 0;
}
.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px; 
}
.card-content {
    padding: 25px;
    text-align: left;
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-title {
    font-size: 1.3em;
    color: #212529;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
}
.product-description {
    font-size: 0.95em;
    color: #495057;
    line-height: 1.5;
    margin-bottom: 20px;
}
.details-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    display: inline-block;
}
.details-link:hover {
    color: #0056b3;
}
.products-carousel.owl-carousel .owl-stage-outer {
    padding-bottom: 10px;
}
.products-carousel .owl-item {
    padding: 0 10px;
}
.products-carousel {
    margin-left: -10px;
    margin-right: -10px;
}

/* --- Estilos Generales de la Sección --- */
.promise-section {
    padding: 80px 20px;
    background-color: #ffffff; 
    text-align: center;
}
.promise-header {
    max-width: 800px;
    margin: 0 auto 50px;
}
.tag {
    color: #cc523c;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 5px;
}

.title {
    color: #212529;
    font-size: 2.5em;
    font-weight: 700;
    margin: 0;
}

.promise-container {
    display: flex;
    justify-content: center;
    gap: 30px; 
    max-width: 1100px;
    margin: 0 auto;
}

.promise-item {
    flex-basis: 33.33%;
    padding: 0 15px;
    text-align: center;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.blue-bg {
    background-color: #e5f0ff; 
}
.orange-bg {
    background-color: #fff0e5; 
}
.lightblue-bg {
    background-color: #e5f0ff; 
}
.icon-placeholder {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.leaf-icon {
    background-color: #4a90e2; 
}
.wrench-icon {
    background-color: #cc523c; 
}
.clock-icon {
    background-color: #4a90e2; 
}

.item-title {
    font-size: 1.4em;
    font-weight: 600;
    color: #212529;
    margin-top: 0;
    margin-bottom: 10px;
}

.item-description {
    font-size: 1em;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 992px) {
    .promise-container {
        flex-wrap: wrap;
        gap: 40px;
    }
    .promise-item {
        flex-basis: 45%; 
    }
}
@media (max-width: 576px) {
    .promise-container {
        flex-direction: column; 
    }
    .promise-item {
        flex-basis: 100%;
        padding: 0;
    }
}

/* --- Estilos de la Sección Principal --- */
.cta-section {
    background-color: #002e86;
    padding: 80px 20px;
    color: white;
}
.cta-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 40px;
}
.cta-text {
    flex: 1; 
    max-width: 600px;
}
.cta-title {
    font-size: 2.5em;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: #ffffff;
}
.big-title {
    font-size: 3em; 
    color: #bfdbfe;
    margin-bottom: 20px;
}
.cta-subtitle {
    font-size: 1.1em;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.5;
}
.cta-button {
    display: inline-block;
    background-color: white;
    color: #002e86; 
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    border: 2px solid white;
}
.cta-button:hover {
    background-color: #f0f0f0;
}
.cta-form-placeholder {
    flex: 1; 
    background-color: #0040a3; 
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.input-placeholder,
.textarea-placeholder {
    background-color: #0056be;
    border-radius: 4px;
    opacity: 0.8;
}
.input-placeholder {
    height: 45px;
}
.textarea-placeholder {
    height: 120px;
}
.submit-button-placeholder {
    background-color: #cc523c; 
    height: 50px;
    border-radius: 4px;
    margin-top: 10px;
}
@media (max-width: 992px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    .cta-text {
        max-width: 100%;
    }
    .cta-title, .big-title {
        font-size: 2em;
    }
    .big-title {
        font-size: 2.5em;
    }
    .cta-form-placeholder {
        width: 100%;
        padding: 30px;
    }
}
@media (max-width: 576px) {
    .cta-title, .big-title {
        font-size: 1.8em;
    }
    .big-title {
        font-size: 2.2em;
    }
    .cta-section {
        padding: 60px 15px;
    }
}