/* =========================================================
   PERLOP
   Hoja de estilos principal
========================================================= */


/* =========================================================
   01. VARIABLES
========================================================= */

:root {

    /* Colores corporativos */
    --primary: #006838;
    --primary-dark: #004f2b;
    --primary-light: #0b7d49;

    --secondary: #8dc63f;
    --secondary-dark: #75aa2f;
    --secondary-light: #a5d45d;

    /* Colores neutros */
    --dark: #17212b;
    --dark-soft: #25313d;

    --text: #3f4852;
    --text-soft: #6b7280;

    --light: #f7f9f8;
    --light-soft: #f1f4f2;

    --white: #ffffff;

    --border: #e5e9e6;

    /* Footer */
    --footer-bg: #0f172a;

    /* Sombras */
    --shadow-sm:
        0 4px 14px rgba(15, 23, 42, .05);

    --shadow-md:
        0 12px 30px rgba(15, 23, 42, .08);

    --shadow-lg:
        0 20px 50px rgba(15, 23, 42, .12);

    /* Bordes */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;

    /* Transiciones */
    --transition:
        all .3s ease;

}


/* =========================================================
   02. RESET GENERAL
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family: 'Manrope', sans-serif;

    color: var(--text);

    background: var(--white);

    font-size: 16px;
    line-height: 1.7;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
textarea,
select {
    font-family: 'Manrope', sans-serif;
}

img {
    display: block;

    max-width: 100%;

    height: auto;
}

a {
    color: inherit;

    text-decoration: none;

    transition: var(--transition);
}

a:hover {
    color: inherit;
}

ul,
ol {
    margin-top: 0;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   03. TIPOGRAFÍA
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;

    color: var(--dark);

    font-family: 'Manrope', sans-serif;

    font-weight: 700;

    line-height: 1.2;
}

h1 {
    font-size: clamp(2.6rem, 5vw, 4.8rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-top: 0;

    color: var(--text-soft);

    line-height: 1.8;
}


/* =========================================================
   04. CONTENEDORES Y SECCIONES
========================================================= */

.container {
    width: 100%;

    max-width: 1240px;
}

section {
    position: relative;
}

.section-padding {
    padding: 50px 0;
}

.section-padding-sm {
    padding: 80px 0;
}

.section-bg {
    background: var(--light);
}


/* =========================================================
   05. TÍTULOS DE SECCIÓN
========================================================= */

.section-heading {
    max-width: 760px;

    margin-bottom: 55px;
}

.section-heading.text-center {
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 14px;

    color: var(--primary);

    font-size: .82rem;

    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}

.section-tag::before {
    content: '';

    display: block;

    width: 28px;
    height: 2px;

    background: var(--secondary);
}

.section-heading.text-center .section-tag {
    justify-content: center;
}

.section-heading.text-center .section-tag::before,
.section-heading.text-center .section-tag::after {
    content: '';

    display: block;

    width: 24px;
    height: 2px;

    background: var(--secondary);
}

.section-heading h2 {
    margin-bottom: 18px;
}

.section-heading p {
    max-width: 680px;

    margin-bottom: 0;

    font-size: 1.05rem;
}

.section-heading.text-center p {
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   06. BOTONES CORPORATIVOS
========================================================= */

.btn-perlop {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding: 12px 24px;

    border: 1px solid transparent;

    border-radius: var(--radius-sm);

    font-size: .94rem;

    font-weight: 600;

    line-height: 1;

    cursor: pointer;

    transition: var(--transition);
}

.btn-perlop i {
    font-size: .9rem;

    transition: transform .3s ease;
}

.btn-perlop:hover i {
    transform: translateX(3px);
}


/* Principal */

.btn-perlop-primary {
    background: var(--primary);

    border-color: var(--primary);

    color: var(--white);
}

.btn-perlop-primary:hover {
    background: var(--primary-light);

    border-color: var(--primary-light);

    color: var(--white);

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0, 104, 56, .18);
}


/* Secundario */

.btn-perlop-secondary {
    background: var(--secondary);

    border-color: var(--secondary);

    color: var(--white);
}

.btn-perlop-secondary:hover {
    background: var(--secondary-dark);

    border-color: var(--secondary-dark);

    color: var(--white);

    transform: translateY(-2px);
}


/* Outline */

.btn-perlop-outline {
    background: transparent;

    border-color: var(--primary);

    color: var(--primary);
}

.btn-perlop-outline:hover {
    background: var(--primary);

    color: var(--white);
}


/* Claro */

.btn-perlop-light {
    background: var(--white);

    border-color: var(--white);

    color: var(--primary);
}

.btn-perlop-light:hover {
    background: var(--primary-light);

    border-color: var(--primary-light);

    color: var(--white);
}


/* =========================================================
   07. TARJETAS BASE
========================================================= */

.perlop-card {
    height: 100%;

    padding: 32px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.perlop-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-md);
}


/* =========================================================
   08. ELEMENTOS AUXILIARES
========================================================= */

.text-primary-perlop {
    color: var(--primary) !important;
}

.text-secondary-perlop {
    color: var(--secondary) !important;
}

.bg-primary-perlop {
    background: var(--primary) !important;
}

.bg-secondary-perlop {
    background: var(--secondary) !important;
}

.rounded-perlop {
    border-radius: var(--radius-lg);
}

.shadow-perlop {
    box-shadow: var(--shadow-md);
}


/* =========================================================
   09. ANIMACIONES BASE
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}

.reveal.show {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   10. ACCESIBILIDAD
========================================================= */

:focus-visible {
    outline: 3px solid rgba(141, 198, 63, .45);

    outline-offset: 3px;
}

::selection {
    background: var(--secondary);

    color: var(--white);
}


/* =========================================================
   11. RESPONSIVE GLOBAL
========================================================= */


/* Laptop / tablet horizontal */

@media (max-width: 1199.98px) {

    .container {
        max-width: 960px;
    }

}


/* Tablet */

@media (max-width: 991.98px) {

    .container {
        max-width: 720px;
    }

    .section-padding {
        padding: 90px 0;
    }

    .section-padding-sm {
        padding: 70px 0;
    }

    .section-heading {
        margin-bottom: 45px;
    }

}


/* Celular horizontal / tablet pequeña */

@media (max-width: 767.98px) {

    body {
        font-size: 15px;
    }

    .section-padding {
        padding: 75px 0;
    }

    .section-padding-sm {
        padding: 60px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading p {
        font-size: 1rem;
    }

    .perlop-card {
        padding: 26px;
    }

}


/* Celular */

@media (max-width: 575.98px) {

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-padding {
        padding: 65px 0;
    }

    .section-padding-sm {
        padding: 55px 0;
    }

    .btn-perlop {
        min-height: 48px;

        padding: 11px 20px;
    }

    .perlop-card {
        padding: 24px 20px;

        border-radius: 12px;
    }

}


/* =========================================================
   12. REDUCCIÓN DE MOVIMIENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;
    }

}

/* =========================================================
   13. HEADER
========================================================= */

.header-area {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: transparent;

    transition:
        background-color .3s ease,
        box-shadow .3s ease;
}


/* =========================================================
   NAVBAR
========================================================= */

.header-area .navbar {
    min-height: 94px;

    padding: 10px 0;

    transition:
        min-height .3s ease,
        padding .3s ease;
}

.header-area .navbar .container {
    display: flex;

    align-items: center;
}


/* =========================================================
   LOGO
========================================================= */

.navbar-brand {
    display: flex;

    align-items: center;

    padding: 0;

    margin-right: 40px;
}

.logo {
    width: auto;

    height: 70px;

    object-fit: contain;

    transition:
        height .3s ease,
        transform .3s ease;
}

.navbar-brand:hover .logo {
    transform: scale(1.02);
}


/* =========================================================
   LINKS
========================================================= */

.navbar-nav {
    gap: 3px;
}

.navbar-nav .nav-link {
    position: relative;

    display: flex;

    align-items: center;

    margin: 0;

    padding: 11px 14px !important;

    color: var(--white) !important;

    border-radius: var(--radius-sm);

    font-size: .9rem;

    font-weight: 600;

    white-space: nowrap;

    transition:
        color .25s ease,
        background-color .25s ease;
}


/* Hover */

.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, .08);

    color: var(--white) !important;
}


/* Línea inferior */

.navbar-nav .nav-link:not(.nav-contact-link)::before {
    content: '';

    position: absolute;

    left: 14px;
    right: 14px;

    bottom: 4px;

    height: 2px;

    background: var(--secondary);

    transform: scaleX(0);

    transform-origin: left;

    transition: transform .25s ease;
}

.navbar-nav .nav-link:not(.nav-contact-link):hover::before {
    transform: scaleX(1);
}


/* =========================================================
   DROPDOWNS
========================================================= */

.navbar .dropdown-menu {
    min-width: 240px;

    margin-top: 0;

    padding: 8px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 12px;

    box-shadow: var(--shadow-lg);
}

.navbar .dropdown-item {
    padding: 11px 14px;

    border-radius: 7px;

    color: var(--dark-soft);

    font-size: .9rem;

    font-weight: 500;

    transition:
        background-color .2s ease,
        color .2s ease,
        padding-left .2s ease;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    padding-left: 18px;

    background: rgba(0, 104, 56, .07);

    color: var(--primary);
}


/* Flecha Bootstrap */

.navbar-nav .dropdown-toggle::after {
    margin-left: 7px;

    vertical-align: middle;

    transition: transform .25s ease;
}

.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}


/* =========================================================
   DROPDOWN - ESCRITORIO
========================================================= */

@media (min-width: 992px) {

    .navbar .dropdown {
        position: relative;
    }

    /*
     * Área invisible entre el enlace y el menú.
     * Evita que el dropdown se cierre al mover el cursor.
     */
    .navbar .dropdown::after {
        content: '';

        position: absolute;

        left: 0;
        top: 100%;

        width: 100%;
        height: 12px;
    }


    .navbar .dropdown-menu {
        display: block;

        top: calc(100% + 8px);

        margin-top: 0;

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transform: translateY(8px);

        transition:
            opacity .2s ease,
            visibility .2s ease,
            transform .2s ease;
    }


    /* Abrir con mouse */

    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: translateY(0);
    }


    /* Mantener abierto mientras el mouse esté en el menú */

    .navbar .dropdown-menu:hover {
        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: translateY(0);
    }


    /* También permitir funcionamiento mediante clic */

    .navbar .dropdown-menu.show {
        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: translateY(0);
    }

}


/* =========================================================
   CONTACTO
========================================================= */

.nav-contact {
    margin-left: 12px;
}

.navbar-nav .nav-contact-link {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 11px 20px !important;

    border: 1px solid rgba(255, 255, 255, .55);

    border-radius: var(--radius-sm);

    color: var(--white) !important;
}

.nav-contact-link i {
    font-size: .82rem;

    transition: transform .25s ease;
}

.nav-contact-link:hover {
    background: var(--primary-light) !important;

    border-color: var(--primary-light);

    transform: translateY(-1px);
}

.nav-contact-link:hover i {
    transform: translate(2px, -2px);
}


/* =========================================================
   HEADER AL HACER SCROLL
========================================================= */

.header-area.scrolled {
    background: rgba(255, 255, 255, .98);

    box-shadow:
        0 1px 0 rgba(15, 23, 42, .05),
        0 8px 30px rgba(15, 23, 42, .07);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);
}

.header-area.scrolled .navbar {
    min-height: 76px;

    padding: 5px 0;
}

.header-area.scrolled .logo {
    height: 56px;
}

.header-area.scrolled .navbar-nav .nav-link { 
    color: var(--dark) !important; 
} 
 
.header-area.scrolled .navbar-nav .nav-link:hover { 
    background: rgba(0, 104, 56, .06); 
    color: var(--primary) !important; 
}


/* CONTACTO */

.header-area.scrolled .navbar-nav .nav-link.nav-contact-link { 
    background: var(--primary); 
    border-color: var(--primary); 
    color: var(--white) !important; 
} 
 
.header-area.scrolled .navbar-nav .nav-link.nav-contact-link:hover { 
    background: var(--primary-dark); 
    border-color: var(--primary-dark); 
    color: var(--white) !important; 
}


/* Mantener también el icono blanco */

.header-area.scrolled .navbar-nav .nav-link.nav-contact-link i {
    color: var(--white);
}


/* =========================================================
   BOTÓN MÓVIL
========================================================= */

.navbar-toggler {
    width: 45px;

    height: 45px;

    padding: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .4);

    border-radius: 9px;

    box-shadow: none !important;
}

.menu-toggle-icon {
    width: 21px;

    display: flex;

    flex-direction: column;

    gap: 5px;
}

.menu-toggle-icon span {
    width: 100%;

    height: 2px;

    display: block;

    background: var(--white);

    border-radius: 10px;

    transition: var(--transition);
}

.header-area.scrolled .navbar-toggler {
    border-color: rgba(0, 104, 56, .20);
}

.header-area.scrolled .menu-toggle-icon span {
    background: var(--primary);
}


/* =========================================================
   HEADER - TABLET
========================================================= */

@media (max-width: 991.98px) {

    .header-area .navbar {
        min-height: 78px;

        padding: 6px 0;
    }

    .logo {
        height: 58px;
    }

    .navbar-collapse {
        margin-top: 7px;

        padding: 16px;

        background: var(--white);

        border-radius: 12px;

        box-shadow: var(--shadow-lg);
    }

    .navbar-nav {
        gap: 2px;

        align-items: stretch !important;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        width: 100%;

        padding: 13px 14px !important;

        color: var(--dark) !important;

        font-size: .94rem;
    }

    .navbar-nav .nav-link:hover {
        background: rgba(0, 104, 56, .06);

        color: var(--primary) !important;
    }

    .navbar-nav .nav-link:not(.nav-contact-link)::before {
        display: none;
    }


    /* Dropdowns */

    .navbar .dropdown-menu {
        margin: 2px 0 8px 13px;

        padding: 5px;

        border: 0;

        border-left: 2px solid var(--secondary);

        border-radius: 0 8px 8px 0;

        box-shadow: none;
    }

    .navbar .dropdown-item {
        padding: 10px 14px;
    }


    /* Contacto */

    .nav-contact {
        margin: 10px 0 0;
    }

    .navbar-nav .nav-contact-link,
    .header-area.scrolled .navbar-nav .nav-contact-link {
        width: 100%;

        background: var(--primary);

        border-color: var(--primary);

        color: var(--white) !important;
    }

}


/* =========================================================
   HEADER - CELULAR
========================================================= */

@media (max-width: 575.98px) {

    .header-area .navbar .container {
        padding-left: 20px;

        padding-right: 20px;
    }

    .logo {
        height: 51px;
    }

    .header-area.scrolled .logo {
        height: 49px;
    }

    .navbar-toggler {
        width: 42px;

        height: 42px;
    }

    .navbar-collapse {
        padding: 12px;

        max-height: calc(100vh - 90px);

        overflow-y: auto;
    }

}

/* =========================================================
   14. FOOTER
========================================================= */

.footer-area {
    position: relative;

    padding: 85px 0 28px;

    background:
        linear-gradient(135deg,
            #0f172a 0%,
            #111d2f 55%,
            #0d1524 100%);

    color: var(--white);

    overflow: hidden;
}


/* Acento decorativo */

.footer-area::before {
    content: '';

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    height: 3px;

    background:
        linear-gradient(90deg,
            var(--primary),
            var(--secondary));
}


/* Halo decorativo */

.footer-area::after {
    content: '';

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    top: -180px;

    border-radius: 50%;

    background: rgba(141, 198, 63, .04);

    pointer-events: none;
}


.footer-area .container {
    position: relative;

    z-index: 2;
}


/* =========================================================
   IDENTIDAD
========================================================= */

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    width: auto;

    height: 82px;

    margin-bottom: 25px;
}

.footer-description {
    max-width: 340px;

    margin-bottom: 24px;

    color: rgba(255, 255, 255, .68);

    font-size: .95rem;

    line-height: 1.8;
}


/* Badge experiencia */

.footer-badge {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 9px 14px;

    border: 1px solid rgba(141, 198, 63, .18);

    border-radius: 8px;

    background: rgba(141, 198, 63, .08);

    color: var(--secondary);

    font-size: .8rem;

    font-weight: 600;
}

.footer-badge i {
    font-size: 1rem;
}


/* =========================================================
   COLUMNAS
========================================================= */

.footer-column h5 {
    position: relative;

    margin-bottom: 25px;

    padding-bottom: 13px;

    color: var(--white);

    font-size: 1rem;

    font-weight: 700;
}

.footer-column h5::after {
    content: '';

    position: absolute;

    left: 0;
    bottom: 0;

    width: 34px;
    height: 2px;

    background: var(--secondary);
}


/* =========================================================
   ENLACES
========================================================= */

.footer-links {
    margin: 0;

    padding: 0;

    list-style: none;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: rgba(255, 255, 255, .68);

    font-size: .92rem;

    transition:
        color .25s ease,
        transform .25s ease;
}

.footer-links a i {
    color: var(--secondary);

    font-size: .65rem;

    transition: transform .25s ease;
}

.footer-links a:hover {
    color: var(--white);

    transform: translateX(4px);
}

.footer-links a:hover i {
    transform: translateX(2px);
}


/* =========================================================
   CONTACTO
========================================================= */

.footer-contact {
    margin: 0;

    padding: 0;

    list-style: none;
}

.footer-contact li {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 14px;

    color: rgba(255, 255, 255, .68);

    font-size: .92rem;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 8px;

    background: rgba(255, 255, 255, .04);

    color: var(--secondary);
}


/* =========================================================
   REDES SOCIALES
========================================================= */

.footer-social {
    display: flex;

    gap: 9px;

    margin-top: 24px;
}

.footer-social a {
    width: 39px;
    height: 39px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 8px;

    background: rgba(255, 255, 255, .04);

    color: rgba(255, 255, 255, .78);

    font-size: .95rem;

    transition:
        background-color .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease;
}

.footer-social a:hover {
    background: var(--primary-light);

    border-color: var(--primary-light);

    color: var(--white);

    transform: translateY(-3px);
}


/* =========================================================
   PARTE INFERIOR
========================================================= */

.footer-divider {
    width: 100%;

    height: 1px;

    margin: 55px 0 24px;

    background: rgba(255, 255, 255, .07);
}

.footer-bottom {
    display: flex;

    align-items: center;
    justify-content: center;
}

.copyright {
    color: rgba(255, 255, 255, .45);

    font-size: .84rem;

    text-align: center;
}


/* =========================================================
   FOOTER - TABLET
========================================================= */

@media (max-width: 991.98px) {

    .footer-area {
        padding: 70px 0 25px;
    }

    .footer-brand {
        max-width: 420px;
    }

    .footer-divider {
        margin-top: 45px;
    }

}


/* =========================================================
   FOOTER - CELULAR
========================================================= */

@media (max-width: 767.98px) {

    .footer-area {
        padding: 60px 0 24px;
    }

    .footer-brand,
    .footer-description {
        max-width: 100%;
    }

    .footer-logo {
        height: 70px;
    }

    .footer-column h5 {
        margin-top: 5px;
    }

    .footer-divider {
        margin: 38px 0 22px;
    }

}


/* =========================================================
   FOOTER - CELULAR PEQUEÑO
========================================================= */

@media (max-width: 575.98px) {

    .footer-area {
        text-align: left;
    }

    .footer-badge {
        align-items: flex-start;

        line-height: 1.45;
    }

    .footer-contact li {
        align-items: flex-start;
    }

    .footer-social {
        margin-top: 20px;
    }

}

/* =========================================================
   15. WHATSAPP FLOTANTE
========================================================= */

.whatsapp-button {
    position: fixed;

    right: 24px;
    bottom: 24px;

    width: 56px;
    height: 56px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25d366;

    color: var(--white);

    font-size: 1.55rem;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .18);

    z-index: 999;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.whatsapp-button:hover {
    color: var(--white);

    transform: translateY(-4px) scale(1.04);

    box-shadow:
        0 14px 35px rgba(0, 0, 0, .22);
}

@media (max-width: 575.98px) {

    .whatsapp-button {
        right: 18px;
        bottom: 18px;

        width: 52px;
        height: 52px;

        font-size: 1.4rem;
    }

}

/* =========================================================
   16. HOME - HERO
========================================================= */

.hero-section {
    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    background-image:
        url('../images/banner2.png');

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    color: var(--white);

    overflow: hidden;
}


/* Overlay */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(8, 18, 14, .76) 0%,
            rgba(8, 18, 14, .52) 42%,
            rgba(8, 18, 14, .16) 75%,
            rgba(8, 18, 14, .08) 100%);
}


/* Acento verde inferior */

.hero-section::after {
    content: '';

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(90deg,
            var(--primary) 0%,
            var(--secondary) 55%,
            transparent 100%);
}


/* Contenido */

.hero-section .container {
    position: relative;

    z-index: 2;
}

.hero-row {
    min-height: 100vh;

    padding-top: 110px;

    padding-bottom: 120px;
}

.hero-content {
    max-width: 760px;
}


/* =========================================================
   BOTONES HERO
========================================================= */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 380px;

    flex-wrap: wrap;
}


.hero-btn-primary {
    min-height: 54px;

    padding: 14px 25px;

    background: var(--primary);

    border: 1px solid var(--primary);

    color: var(--white);

    box-shadow:
        0 10px 30px rgba(0, 104, 56, .22);
}

.hero-btn-primary:hover {
    background: var(--primary-light);

    border-color: var(--primary-light);

    color: var(--white);

    transform: translateY(-2px);
}


.hero-btn-secondary {
    min-height: 54px;

    padding: 14px 25px;

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .40);

    color: var(--white);

    backdrop-filter: blur(8px);

    -webkit-backdrop-filter: blur(8px);
}

.hero-btn-secondary:hover {
    background: var(--white);

    border-color: var(--white);

    color: var(--primary);

    transform: translateY(-2px);
}


/* =========================================================
   INDICADOR INFERIOR
========================================================= */

.hero-scroll-indicator {
    position: absolute;

    left: 50%;
    bottom: 32px;

    z-index: 3;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 5px;

    color: rgba(255, 255, 255, .82);

    transform: translateX(-50%);
}

.hero-scroll-indicator span {
    font-size: .72rem;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.hero-scroll-indicator i {
    font-size: 1rem;

    animation: heroArrow 1.8s ease-in-out infinite;
}


@keyframes heroArrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }

}


/* =========================================================
   HERO - LAPTOP
========================================================= */

@media (max-width: 1199.98px) {

    .hero-buttons {
        margin-top: 320px;
    }

}


/* =========================================================
   HERO - TABLET
========================================================= */

@media (max-width: 991.98px) {

    .hero-section {
        min-height: 780px;

        background-position: center;
    }

    .hero-row {
        min-height: 780px;

        padding-top: 100px;

        padding-bottom: 100px;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg,
                rgba(8, 18, 14, .72) 0%,
                rgba(8, 18, 14, .45) 65%,
                rgba(8, 18, 14, .22) 100%);
    }

    .hero-buttons {
        margin-top: 310px;
    }

}


/* =========================================================
   HERO - CELULAR
========================================================= */

@media (max-width: 767.98px) {

    .hero-section {
        min-height: 700px;

        background-position: center;
    }

    .hero-row {
        min-height: 700px;

        padding-top: 90px;

        padding-bottom: 100px;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg,
                rgba(8, 18, 14, .42) 0%,
                rgba(8, 18, 14, .35) 40%,
                rgba(8, 18, 14, .78) 100%);
    }

    .hero-content {
        width: 100%;
    }

    .hero-buttons {
        margin-top: 360px;

        width: 100%;

        gap: 10px;
    }

    .hero-buttons .btn-perlop {
        flex: 1;

        min-width: 180px;
    }

    .hero-scroll-indicator {
        bottom: 22px;
    }

}


/* =========================================================
   HERO - CELULAR PEQUEÑO
========================================================= */

@media (max-width: 575.98px) {

    .hero-section {
        min-height: 650px;
    }

    .hero-row {
        min-height: 650px;
    }

    .hero-buttons {
        margin-top: 330px;

        flex-direction: column;
    }

    .hero-buttons .btn-perlop {
        width: 100%;
    }

}

/* =========================================================
   17. HOME - ESTADÍSTICAS
========================================================= */

.stats-section {
    position: relative;

    z-index: 10;

    margin-top: -45px;

    padding-bottom: 25px;
}

.stats-wrapper {
    background: var(--white);

    border: 1px solid rgba(15, 23, 42, .06);

    border-radius: var(--radius-md);

    box-shadow:
        0 20px 50px rgba(15, 23, 42, .10);

    overflow: hidden;
}

.stat-item {
    position: relative;

    min-height: 145px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 25px 15px;

    text-align: center;
}


/* Separadores */

.stat-item::after {
    content: '';

    position: absolute;

    top: 30px;
    right: 0;

    width: 1px;

    height: calc(100% - 60px);

    background: var(--border);
}

.stats-wrapper .col-lg-3:last-child .stat-item::after {
    display: none;
}


/* Número */

.stat-number {
    margin-bottom: 5px;

    color: var(--primary);

    font-size: clamp(2rem, 3vw, 2.7rem);

    font-weight: 800;

    line-height: 1;
}

.stat-symbol {
    color: var(--secondary);
}


/* Texto */

.stat-item p {
    margin: 7px 0 0;

    color: var(--text-soft);

    font-size: .88rem;

    font-weight: 500;
}


/* =========================================================
   ESTADÍSTICAS - TABLET
========================================================= */

@media (max-width: 991.98px) {

    .stats-section {
        margin-top: -35px;
        padding-bottom: 15px;
    }

    .stats-wrapper .col-6:nth-child(2) .stat-item::after,
    .stats-wrapper .col-6:nth-child(4) .stat-item::after {
        display: none;
    }

    .stats-wrapper .col-6:nth-child(-n+2) .stat-item {
        border-bottom: 1px solid var(--border);
    }

}


/* =========================================================
   ESTADÍSTICAS - CELULAR
========================================================= */

@media (max-width: 575.98px) {

    .stats-section {
        margin-top: -25px;
        padding-bottom: 5px;
    }

    .stats-wrapper {
        border-radius: 12px;
    }

    .stat-item {
        min-height: 125px;

        padding: 20px 8px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-item p {
        max-width: 130px;

        font-size: .78rem;

        line-height: 1.4;
    }

}

/* =========================================================
   18. HOME - CLIENTES
========================================================= */

.clients-section {
    position: relative;

    padding: 50px 0;

    background: var(--white);

    overflow: hidden;
}


/* Título */

.clients-section .section-heading {
    margin-bottom: 55px;
}


/* =========================================================
   SLIDER
========================================================= */

.clients-slider {
    position: relative;

    width: 100%;

    overflow: hidden;

    padding: 20px 0 30px;
}


/* Degradados laterales */

.clients-slider::before,
.clients-slider::after {
    content: '';

    position: absolute;

    top: 0;

    width: 120px;
    height: 100%;

    z-index: 2;

    pointer-events: none;
}

.clients-slider::before {
    left: 0;

    background:
        linear-gradient(90deg,
            var(--white) 0%,
            rgba(255, 255, 255, .85) 35%,
            rgba(255, 255, 255, 0) 100%);
}

.clients-slider::after {
    right: 0;

    background:
        linear-gradient(270deg,
            var(--white) 0%,
            rgba(255, 255, 255, .85) 35%,
            rgba(255, 255, 255, 0) 100%);
}


/* =========================================================
   TRACK
========================================================= */

.clients-track {
    display: flex;

    align-items: center;

    gap: 55px;

    width: max-content;

    animation:
        clientsScroll 28s linear infinite;

    will-change: transform;
}


/* Pausa al pasar mouse */

.clients-slider:hover .clients-track {
    animation-play-state: paused;
}


/* =========================================================
   LOGOS
========================================================= */

.client-logo {
    width: 250px;
    height: 155px;

    flex: 0 0 230px;

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

    padding: 10px 14px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 12px;

    box-shadow:
        0 5px 18px rgba(15, 23, 42, .05);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.client-logo:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(15, 23, 42, .10);
}


/* Imagen */

.client-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition:
        transform .3s ease,
        opacity .3s ease;

    opacity: .82;
}

.client-logo:hover img {
    opacity: 1;
}


/* =========================================================
   AJUSTES INDIVIDUALES DE LOGOS
========================================================= */

/*
 * Se conservan porque algunos archivos tienen mucho
 * espacio transparente alrededor de la imagen.
 */

.client-logo img[alt="CFE"] {
    transform: scale(1.45);
}

.client-logo img[alt="IMSS"] {
    transform: scale(.75);
}

.client-logo img[alt="ASA"] {
    transform: scale(1.10);
}

.client-logo img[alt="CAPUFE"] {
    transform: scale(.85);
}

.client-logo img[alt="SAT"] {
    transform: scale(.85);
}

.client-logo img[alt="ISSSTE"] {
    transform: scale(1.45);
}

.client-logo img[alt="GAFSACOMM"] {
    transform: scale(.95);
}


/* =========================================================
   ANIMACIÓN
========================================================= */

@keyframes clientsScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 27.5px));
    }

}


/* =========================================================
   CLIENTES - TABLET
========================================================= */

@media (max-width: 991.98px) {

    .clients-section {
        padding: 85px 0;
    }

    .clients-track {
        gap: 35px;

        animation-duration: 25s;
    }

    .client-logo {
        width: 170px;
        height: 100px;

        flex-basis: 170px;
    }

    .clients-slider::before,
    .clients-slider::after {
        width: 70px;
    }

}


/* =========================================================
   CLIENTES - CELULAR
========================================================= */

@media (max-width: 767.98px) {

    .clients-section {
        padding: 70px 0;
    }

    .clients-section .section-heading {
        margin-bottom: 35px;
    }

    .clients-track {
        gap: 25px;

        animation-duration: 22s;
    }

    .client-logo {
        width: 145px;
        height: 90px;

        flex-basis: 145px;

        padding: 12px 16px;
    }

    .clients-slider::before,
    .clients-slider::after {
        width: 35px;
    }

}


/* =========================================================
   CLIENTES - CELULAR PEQUEÑO
========================================================= */

@media (max-width: 575.98px) {

    .clients-slider {
        padding: 10px 0 20px;
    }

    .client-logo {
        width: 135px;
        height: 82px;

        flex-basis: 135px;
    }

}

/* =========================================================
   19. HOME - SERVICIOS
========================================================= */

.services-section {
    position: relative;

    background: var(--white);

    overflow: hidden;
}


/* Decoración de fondo */

.services-section::before {
    content: '';

    position: absolute;

    width: 420px;
    height: 420px;

    top: -240px;
    right: -180px;

    border-radius: 50%;

    background: rgba(141, 198, 63, .055);

    pointer-events: none;
}


.services-section .container {
    position: relative;

    z-index: 2;
}


/* =========================================================
   TARJETAS DE SERVICIO
========================================================= */

.service-card {
    position: relative;

    height: 100%;

    min-height: 300px;

    display: flex;

    flex-direction: column;

    padding: 34px 28px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(15, 23, 42, .045);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


/* Línea superior */

.service-card::before {
    content: '';

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(90deg,
            var(--primary),
            var(--secondary));

    transform: scaleX(0);

    transform-origin: left;

    transition: transform .35s ease;
}


/* Fondo decorativo */

.service-card::after {
    content: '';

    position: absolute;

    width: 130px;
    height: 130px;

    right: -65px;
    bottom: -65px;

    border-radius: 50%;

    background: rgba(141, 198, 63, .055);

    transition:
        width .35s ease,
        height .35s ease;
}


.service-card:hover {
    transform: translateY(-7px);

    border-color: rgba(0, 104, 56, .16);

    box-shadow:
        0 20px 45px rgba(15, 23, 42, .09);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    width: 170px;
    height: 170px;
}


/* Icono */

.service-icon {
    position: relative;

    z-index: 2;

    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    border-radius: 12px;

    background: rgba(0, 104, 56, .08);

    color: var(--primary);

    font-size: 1.65rem;

    transition:
        background-color .3s ease,
        color .3s ease,
        transform .3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary);

    color: var(--white);

    transform: translateY(-3px);
}


.service-card h4 {
    position: relative;

    z-index: 2;

    margin-bottom: 14px;

    font-size: 1.12rem;

    font-weight: 700;

    color: var(--dark);
}

.service-card p {
    position: relative;

    z-index: 2;

    margin: 0;

    color: var(--text-soft);

    font-size: .92rem;

    line-height: 1.75;
}


/* =========================================================
   SERVICIOS - TABLET
========================================================= */

@media (max-width: 991.98px) {

    .service-card {
        min-height: 260px;
    }

}


/* =========================================================
   SERVICIOS - CELULAR
========================================================= */

@media (max-width: 575.98px) {

    .service-card {
        min-height: auto;

        padding: 28px 24px;
    }

    .service-icon {
        width: 54px;
        height: 54px;

        margin-bottom: 22px;

        font-size: 1.45rem;
    }

}



/* =========================================================
   20. HOME - SOBRE PERLOP
========================================================= */

.about-section {
    position: relative;

    background: var(--light);

    overflow: hidden;
}


/* =========================================================
   IMAGEN
========================================================= */

.about-image-wrapper {
    position: relative;

    padding-right: 30px;

    padding-bottom: 30px;
}


.about-image {
    position: relative;

    z-index: 2;

    width: 100%;

    min-height: 520px;

    object-fit: cover;

    border-radius: var(--radius-lg);

    box-shadow:
        0 25px 55px rgba(15, 23, 42, .13);
}


/* Decoración detrás */

.about-image-wrapper::before {
    content: '';

    position: absolute;

    z-index: 1;

    width: calc(100% - 30px);
    height: calc(100% - 30px);

    right: 0;
    bottom: 0;

    border-radius: var(--radius-lg);

    background:
        linear-gradient(135deg,
            var(--primary),
            var(--secondary));

    opacity: .16;
}


/* =========================================================
   EXPERIENCIA
========================================================= */

.experience-box {
    position: absolute;

    z-index: 3;

    right: -10px;
    bottom: 65px;

    width: 165px;

    padding: 22px 18px;

    background: var(--white);

    border-radius: 12px;

    box-shadow:
        0 16px 40px rgba(15, 23, 42, .15);

    text-align: center;
}

.experience-box strong {
    display: block;

    margin-bottom: 4px;

    color: var(--primary);

    font-size: 2rem;

    font-weight: 800;

    line-height: 1;
}

.experience-box span {
    display: block;

    color: var(--text-soft);

    font-size: .78rem;

    font-weight: 600;

    line-height: 1.4;
}


/* =========================================================
   CONTENIDO
========================================================= */

.about-content {
    max-width: 590px;

    padding-left: 20px;
}

.about-content h2 {
    margin-bottom: 24px;

    font-size: clamp(2rem, 4vw, 3rem);
}

.about-content p {
    margin-bottom: 18px;

    font-size: 1rem;

    line-height: 1.85;
}


/* Lista */

.about-list {
    margin: 30px 0 34px;

    padding: 0;

    list-style: none;
}

.about-list li {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 14px;

    color: var(--dark-soft);

    font-size: .95rem;

    font-weight: 600;
}

.about-list li:last-child {
    margin-bottom: 0;
}

.about-list i {
    flex-shrink: 0;

    color: var(--secondary);

    font-size: 1.1rem;
}


/* =========================================================
   SOBRE PERLOP - TABLET
========================================================= */

@media (max-width: 991.98px) {

    .about-image-wrapper {
        max-width: 700px;

        margin: 0 auto;

        padding-right: 25px;
    }

    .about-image {
        min-height: 430px;
    }

    .experience-box {
        right: 0;
    }

    .about-content {
        max-width: 100%;

        padding-left: 0;

        margin-top: 15px;
    }

}


/* =========================================================
   SOBRE PERLOP - CELULAR
========================================================= */

@media (max-width: 767.98px) {

    .about-image-wrapper {
        padding-right: 18px;

        padding-bottom: 22px;
    }

    .about-image {
        min-height: 360px;

        border-radius: 16px;
    }

    .experience-box {
        right: 0;

        bottom: 40px;

        width: 145px;

        padding: 18px 15px;
    }

    .experience-box strong {
        font-size: 1.7rem;
    }

}


@media (max-width: 575.98px) {

    .about-image-wrapper {
        padding-right: 12px;

        padding-bottom: 15px;
    }

    .about-image {
        min-height: 300px;
    }

    .experience-box {
        position: relative;

        right: auto;
        bottom: auto;

        width: 100%;

        margin-top: -30px;

        margin-left: 15px;

        max-width: calc(100% - 30px);
    }

    .about-content {
        margin-top: 5px;
    }

    .about-list {
        margin-top: 25px;
    }

}



/* =========================================================
   21. HOME - COBERTURA
========================================================= */

.coverage-section {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(180deg,
            #f7f9f8 0%,
            #ffffff 100%);
}


/* Decoración */

.coverage-section::before {
    content: '';

    position: absolute;

    width: 360px;
    height: 360px;

    left: -200px;
    bottom: -180px;

    border-radius: 50%;

    background: rgba(0, 104, 56, .045);

    pointer-events: none;
}


.coverage-section .container {
    position: relative;

    z-index: 2;
}


/* Contenedor del mapa */

.coverage-image-wrapper {
    position: relative;

    max-width: 950px;

    margin: 0 auto;

    padding: 38px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    box-shadow:
        0 18px 45px rgba(15, 23, 42, .07);
}


.coverage-image {
    width: 100%;

    max-height: 600px;

    margin: auto;

    object-fit: contain;
}


/* Línea inferior decorativa */

.coverage-image-wrapper::after {
    content: '';

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 120px;
    height: 3px;

    background:
        linear-gradient(90deg,
            var(--primary),
            var(--secondary));

    transform: translateX(-50%);
}


/* =========================================================
   COBERTURA - TABLET
========================================================= */

@media (max-width: 991.98px) {

    .coverage-image-wrapper {
        padding: 28px;
    }

}


/* =========================================================
   COBERTURA - CELULAR
========================================================= */

@media (max-width: 575.98px) {

    .coverage-image-wrapper {
        padding: 18px;

        border-radius: 14px;
    }

}



/* =========================================================
   22. HOME - POR QUÉ PERLOP
========================================================= */

.why-section {
    position: relative;

    background: var(--light);

    overflow: hidden;
}


/* =========================================================
   TARJETAS
========================================================= */

.why-card {
    position: relative;

    height: 100%;

    min-height: 230px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 35px 25px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    text-align: center;

    box-shadow:
        0 8px 25px rgba(15, 23, 42, .04);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.why-card:hover {
    transform: translateY(-7px);

    border-color: rgba(0, 104, 56, .16);

    box-shadow:
        0 18px 40px rgba(15, 23, 42, .09);
}


/* Icono */

.why-icon {
    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            rgba(0, 104, 56, .10),
            rgba(141, 198, 63, .16));

    color: var(--primary);

    font-size: 1.8rem;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}


.why-card:hover .why-icon {
    background:
        linear-gradient(135deg,
            var(--primary),
            var(--secondary));

    color: var(--white);

    transform: scale(1.05);
}


.why-card h4 {
    margin: 0;

    color: var(--dark);

    font-size: 1.15rem;

    font-weight: 700;
}


/* =========================================================
   POR QUÉ PERLOP - CELULAR
========================================================= */

@media (max-width: 767.98px) {

    .why-card {
        min-height: 190px;
    }

}



/* =========================================================
   23. HOME - CTA
========================================================= */

.cta-section {
    position: relative;

    padding: 105px 0;

    background:
        linear-gradient(135deg,
            var(--primary-dark) 0%,
            var(--primary) 55%,
            #087945 100%);

    color: var(--white);

    overflow: hidden;
}


/* Decoración superior */

.cta-section::before {
    content: '';

    position: absolute;

    width: 400px;
    height: 400px;

    top: -240px;
    right: -100px;

    border-radius: 50%;

    background: rgba(141, 198, 63, .12);
}


/* Decoración inferior */

.cta-section::after {
    content: '';

    position: absolute;

    width: 300px;
    height: 300px;

    left: -170px;
    bottom: -170px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .10);
}


.cta-section .container {
    position: relative;

    z-index: 2;
}


.cta-content {
    max-width: 850px;

    margin: 0 auto;
}


.cta-content h2 {
    margin-bottom: 32px;

    color: var(--white);

    font-size: clamp(2rem, 4vw, 3rem);

    line-height: 1.25;
}


.cta-content .btn-perlop {
    min-width: 175px;

    min-height: 54px;
}


/* =========================================================
   CTA - TABLET
========================================================= */

@media (max-width: 991.98px) {

    .cta-section {
        padding: 85px 0;
    }

}


/* =========================================================
   CTA - CELULAR
========================================================= */

@media (max-width: 575.98px) {

    .cta-section {
        padding: 70px 0;
    }

    .cta-content h2 {
        margin-bottom: 26px;
    }

    .cta-content .btn-perlop {
        width: 100%;

        max-width: 280px;
    }

}



/* =========================================================
   24. AJUSTES GENERALES HOME
========================================================= */

/*
 * Separación uniforme entre títulos y contenido.
 */

.services-section .section-heading,
.coverage-section .section-heading,
.clients-section .section-heading,
.why-section .section-heading {
    margin-bottom: 50px;
}


/*
 * Evita espacios inesperados causados por márgenes
 * propios de Bootstrap.
 */

.home-section:last-child {
    margin-bottom: 0;
}


/* =========================================================
   HOME - TABLET
========================================================= */

@media (max-width: 991.98px) {

    .services-section .section-heading,
    .coverage-section .section-heading,
    .clients-section .section-heading,
    .why-section .section-heading {
        margin-bottom: 40px;
    }

}


/* =========================================================
   HOME - CELULAR
========================================================= */

@media (max-width: 575.98px) {

    .services-section .section-heading,
    .coverage-section .section-heading,
    .clients-section .section-heading,
    .why-section .section-heading {
        margin-bottom: 32px;
    }

}

/* =========================================================
   25. PÁGINAS INTERNAS - PAGE HEADER
========================================================= */

.page-header {
    position: relative;

    min-height: 410px;

    display: flex;

    align-items: flex-end;

    padding: 150px 0 75px;

    background:
        linear-gradient(90deg,
            rgba(6, 28, 19, .92) 0%,
            rgba(0, 79, 43, .88) 48%,
            rgba(0, 104, 56, .78) 100%);

    color: var(--white);

    overflow: hidden;
}


/* Decoraciones */

.page-header::before {
    content: '';

    position: absolute;

    width: 450px;
    height: 450px;

    right: -140px;
    top: -250px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .08);

    background: rgba(141, 198, 63, .06);
}


.page-header::after {
    content: '';

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(90deg,
            var(--secondary),
            var(--primary),
            transparent);
}


.page-header .container {
    position: relative;

    z-index: 2;
}


/* Título */

.page-header h1 {
    max-width: 800px;

    margin-bottom: 15px;

    color: var(--white);

    font-size: clamp(2.7rem, 5vw, 4.4rem);

    font-weight: 700;

    letter-spacing: -1.5px;
}


/* Subtítulo */

.page-header p {
    max-width: 680px;

    margin: 0;

    color: rgba(255, 255, 255, .72);

    font-size: 1.05rem;

    line-height: 1.7;
}


/* Breadcrumb */

.page-header .breadcrumb {
    margin-bottom: 18px;

    font-size: .82rem;

    font-weight: 600;

    letter-spacing: .5px;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, .65);
}

.page-header .breadcrumb-item a:hover {
    color: var(--secondary);
}

.page-header .breadcrumb-item.active {
    color: var(--white);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .35);
}


/* =========================================================
   PAGE HEADER - TABLET
========================================================= */

@media (max-width: 991.98px) {

    .page-header {
        min-height: 350px;

        padding: 125px 0 60px;
    }

}


/* =========================================================
   PAGE HEADER - CELULAR
========================================================= */

@media (max-width: 575.98px) {

    .page-header {
        min-height: 315px;

        padding: 110px 0 50px;
    }

    .page-header h1 {
        letter-spacing: -.8px;
    }

    .page-header p {
        font-size: .95rem;
    }

}

/* =========================================================
   26. NOSOTROS - HISTORIA
========================================================= */

.about-company {
    position: relative;

    background: var(--white);

    overflow: hidden;
}


/* Decoración */

.about-company::before {
    content: '';

    position: absolute;

    width: 420px;
    height: 420px;

    left: -250px;
    bottom: -220px;

    border-radius: 50%;

    background: rgba(141, 198, 63, .05);

    pointer-events: none;
}


.about-company .container {
    position: relative;

    z-index: 2;
}


/* =========================================================
   IMAGEN
========================================================= */

.company-image-wrapper {
    position: relative;

    padding: 0 30px 32px 0;
}


.company-image {
    position: relative;

    z-index: 2;

    width: 100%;
    height: 540px;

    object-fit: cover;

    border-radius: var(--radius-lg);

    box-shadow:
        0 25px 55px rgba(15, 23, 42, .13);
}


/* Fondo decorativo */

.company-image-wrapper::before {
    content: '';

    position: absolute;

    right: 0;
    bottom: 0;

    width: calc(100% - 30px);
    height: calc(100% - 30px);

    border-radius: var(--radius-lg);

    background:
        linear-gradient(135deg,
            var(--primary),
            var(--secondary));

    opacity: .15;
}


/* =========================================================
   EXPERIENCIA
========================================================= */

.company-experience {
    position: absolute;

    z-index: 3;

    right: -5px;
    bottom: 65px;

    width: 165px;

    padding: 23px 18px;

    background: var(--white);

    border: 1px solid rgba(15, 23, 42, .04);

    border-radius: 12px;

    box-shadow:
        0 18px 40px rgba(15, 23, 42, .15);

    text-align: center;
}


.company-experience strong {
    display: block;

    margin-bottom: 5px;

    color: var(--primary);

    font-size: 2.15rem;

    font-weight: 800;

    line-height: 1;
}


.company-experience span {
    display: block;

    color: var(--text-soft);

    font-size: .78rem;

    font-weight: 600;

    line-height: 1.4;
}


/* =========================================================
   CONTENIDO
========================================================= */

.company-content {
    max-width: 590px;

    padding-left: 20px;
}


.company-content h2 {
    margin-bottom: 26px;

    font-size: clamp(2rem, 4vw, 3rem);

    line-height: 1.2;
}


.company-text {
    position: relative;

    margin-bottom: 32px;

    padding-left: 22px;

    border-left: 2px solid var(--secondary);
}


.company-text p {
    margin-bottom: 16px;

    font-size: 1rem;

    line-height: 1.85;
}


.company-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   DETALLE INSTITUCIONAL
========================================================= */

.company-detail {
    display: flex;

    align-items: center;

    gap: 16px;

    padding: 18px 20px;

    background: var(--light);

    border: 1px solid var(--border);

    border-radius: 12px;
}


.company-detail-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(0, 104, 56, .09);

    border-radius: 9px;

    color: var(--primary);

    font-size: 1.25rem;
}


.company-detail strong {
    display: block;

    margin-bottom: 3px;

    color: var(--dark);

    font-size: .95rem;
}


.company-detail span {
    display: block;

    color: var(--text-soft);

    font-size: .83rem;

    line-height: 1.5;
}


/* =========================================================
   HISTORIA - TABLET
========================================================= */

@media (max-width: 991.98px) {

    .company-image-wrapper {
        max-width: 700px;

        margin: 0 auto;

        padding-right: 25px;
    }

    .company-image {
        height: 450px;
    }

    .company-content {
        max-width: 100%;

        padding-left: 0;

        margin-top: 15px;
    }

}


/* =========================================================
   HISTORIA - CELULAR
========================================================= */

@media (max-width: 767.98px) {

    .company-image-wrapper {
        padding-right: 18px;

        padding-bottom: 25px;
    }

    .company-image {
        height: 370px;

        border-radius: 16px;
    }

    .company-experience {
        right: 0;

        bottom: 45px;

        width: 145px;
    }

}


@media (max-width: 575.98px) {

    .company-image-wrapper {
        padding-right: 12px;
    }

    .company-image {
        height: 310px;
    }

    .company-experience {
        position: relative;

        right: auto;
        bottom: auto;

        width: calc(100% - 30px);

        margin:
            -30px auto 0;
    }

    .company-content {
        margin-top: 0;
    }

    .company-text {
        padding-left: 16px;
    }

    .company-detail {
        align-items: flex-start;

        padding: 16px;
    }

}

/* =========================================================
   27. NOSOTROS - CTA
========================================================= */

.company-cta {
    position: relative;

    padding: 105px 0;

    background:
        linear-gradient(135deg,
            var(--primary-dark) 0%,
            var(--primary) 55%,
            #087945 100%);

    color: var(--white);

    overflow: hidden;
}


.company-cta::before {
    content: '';

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    top: -250px;

    border-radius: 50%;

    background: rgba(141, 198, 63, .12);
}


.company-cta::after {
    content: '';

    position: absolute;

    width: 300px;
    height: 300px;

    left: -170px;
    bottom: -190px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .10);
}


.company-cta .container {
    position: relative;

    z-index: 2;
}


.company-cta-content {
    max-width: 820px;

    margin: 0 auto;

    text-align: center;
}


.company-cta-tag {
    display: inline-block;

    margin-bottom: 16px;

    color: var(--secondary);

    font-size: .8rem;

    font-weight: 700;

    letter-spacing: 2px;
}


.company-cta h2 {
    margin-bottom: 20px;

    color: var(--white);

    font-size: clamp(2rem, 4vw, 3rem);

    line-height: 1.25;
}


.company-cta p {
    max-width: 650px;

    margin:
        0 auto 32px;

    color: rgba(255, 255, 255, .72);

    font-size: 1rem;

    line-height: 1.8;
}


.company-cta .btn-perlop {
    min-height: 54px;

    padding-left: 26px;

    padding-right: 26px;
}


/* =========================================================
   CTA - TABLET
========================================================= */

@media (max-width: 991.98px) {

    .company-cta {
        padding: 85px 0;
    }

}


/* =========================================================
   CTA - CELULAR
========================================================= */

@media (max-width: 575.98px) {

    .company-cta {
        padding: 70px 0;
    }

    .company-cta p {
        margin-bottom: 27px;
    }

    .company-cta .btn-perlop {
        width: 100%;

        max-width: 280px;
    }

}

/* Breadcrumb páginas internas */

.page-breadcrumb {
    display: inline-flex;

    align-items: center;

    margin-bottom: 18px;

    color: rgba(255, 255, 255, .62);

    font-size: .78rem;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;
}

/* =========================================================
   28. CULTURA ORGANIZACIONAL - MISIÓN Y VISIÓN
========================================================= */

.culture-mission {
    position: relative;

    background: var(--white);

    overflow: hidden;
}


/* Decoración */

.culture-mission::before {
    content: '';

    position: absolute;

    width: 420px;
    height: 420px;

    top: -250px;
    right: -220px;

    border-radius: 50%;

    background: rgba(141, 198, 63, .055);

    pointer-events: none;
}


.culture-mission .container {
    position: relative;

    z-index: 2;
}


/* =========================================================
   TARJETAS PRINCIPALES
========================================================= */

.culture-main-card {
    position: relative;

    height: 100%;

    min-height: 360px;

    padding: 40px;

    background:
        linear-gradient(145deg,
            #ffffff 0%,
            #f9fbfa 100%);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    box-shadow:
        0 12px 35px rgba(15, 23, 42, .06);

    overflow: hidden;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


.culture-main-card::before {
    content: '';

    position: absolute;

    left: 0;
    top: 0;

    width: 5px;
    height: 100%;

    background:
        linear-gradient(180deg,
            var(--primary),
            var(--secondary));
}


.culture-main-card::after {
    content: '';

    position: absolute;

    width: 180px;
    height: 180px;

    right: -90px;
    bottom: -90px;

    border-radius: 50%;

    background: rgba(141, 198, 63, .05);

    transition:
        transform .35s ease;
}


.culture-main-card:hover {
    transform: translateY(-6px);

    border-color: rgba(0, 104, 56, .15);

    box-shadow:
        0 22px 50px rgba(15, 23, 42, .10);
}


.culture-main-card:hover::after {
    transform: scale(1.25);
}


/* Cabecera */

.culture-main-card-header {
    position: relative;

    z-index: 2;

    display: flex;

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

    margin-bottom: 30px;
}


.culture-main-icon {
    width: 64px;
    height: 64px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        linear-gradient(135deg,
            var(--primary),
            var(--primary-light));

    color: var(--white);

    font-size: 1.65rem;

    box-shadow:
        0 10px 25px rgba(0, 104, 56, .16);
}


.culture-main-number {
    color: rgba(0, 104, 56, .10);

    font-size: 3.8rem;

    font-weight: 800;

    line-height: 1;
}


/* Contenido */

.culture-main-card h3 {
    position: relative;

    z-index: 2;

    margin-bottom: 18px;

    color: var(--dark);

    font-size: 1.65rem;
}


.culture-main-card p {
    position: relative;

    z-index: 2;

    margin: 0;

    color: var(--text-soft);

    font-size: .98rem;

    line-height: 1.9;
}


/* =========================================================
   MISIÓN / VISIÓN - TABLET
========================================================= */

@media (max-width: 991.98px) {

    .culture-main-card {
        min-height: 320px;

        padding: 34px;
    }

}


/* =========================================================
   MISIÓN / VISIÓN - CELULAR
========================================================= */

@media (max-width: 575.98px) {

    .culture-main-card {
        min-height: auto;

        padding: 28px 24px;
    }

    .culture-main-icon {
        width: 56px;
        height: 56px;

        font-size: 1.45rem;
    }

    .culture-main-number {
        font-size: 3rem;
    }

    .culture-main-card h3 {
        font-size: 1.45rem;
    }

}



/* =========================================================
   29. CULTURA ORGANIZACIONAL - VALORES
========================================================= */

.culture-values {
    position: relative;

    background: var(--light);

    overflow: hidden;
}


.culture-values::before {
    content: '';

    position: absolute;

    width: 520px;
    height: 520px;

    left: -320px;
    bottom: -290px;

    border-radius: 50%;

    background: rgba(0, 104, 56, .045);

    pointer-events: none;
}


.culture-values .container {
    position: relative;

    z-index: 2;
}


.culture-values-heading {
    max-width: 850px;
}


.culture-values-heading p {
    max-width: 760px;
}


/* =========================================================
   TARJETAS DE VALORES
========================================================= */

.culture-value-card {
    position: relative;

    height: 100%;

    min-height: 290px;

    padding: 32px 28px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    box-shadow:
        0 8px 25px rgba(15, 23, 42, .045);

    overflow: hidden;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


.culture-value-card::after {
    content: '';

    position: absolute;

    width: 120px;
    height: 120px;

    right: -65px;
    bottom: -65px;

    border-radius: 50%;

    background: rgba(141, 198, 63, .06);

    transition:
        transform .35s ease;
}


.culture-value-card:hover {
    transform: translateY(-6px);

    border-color: rgba(0, 104, 56, .15);

    box-shadow:
        0 18px 40px rgba(15, 23, 42, .09);
}


.culture-value-card:hover::after {
    transform: scale(1.35);
}


/* Iconos */

.culture-value-icon {
    position: relative;

    z-index: 2;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border-radius: 12px;

    background: rgba(0, 104, 56, .08);

    color: var(--primary);

    font-size: 1.45rem;

    transition:
        background-color .3s ease,
        color .3s ease,
        transform .3s ease;
}


.culture-value-card:hover .culture-value-icon {
    background: var(--primary);

    color: var(--white);

    transform: translateY(-3px);
}


/* Texto */

.culture-value-card h4 {
    position: relative;

    z-index: 2;

    margin-bottom: 13px;

    color: var(--dark);

    font-size: 1.1rem;

    font-weight: 700;
}


.culture-value-card p {
    position: relative;

    z-index: 2;

    margin: 0;

    color: var(--text-soft);

    font-size: .9rem;

    line-height: 1.75;
}


/* =========================================================
   VALORES - TABLET
========================================================= */

@media (max-width: 991.98px) {

    .culture-value-card {
        min-height: 260px;
    }

}


/* =========================================================
   VALORES - CELULAR
========================================================= */

@media (max-width: 767.98px) {

    .culture-value-card {
        min-height: auto;
    }

}


@media (max-width: 575.98px) {

    .culture-value-card {
        padding: 27px 23px;
    }

    .culture-value-icon {
        width: 52px;
        height: 52px;

        margin-bottom: 20px;

        font-size: 1.3rem;
    }

}

/* =========================================================
   30. NUESTRA GENTE - INTRODUCCIÓN
========================================================= */

.people-intro {
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.people-intro::before {
    content: '';

    position: absolute;

    width: 450px;
    height: 450px;

    left: -270px;
    bottom: -260px;

    border-radius: 50%;

    background: rgba(141, 198, 63, .05);

    pointer-events: none;
}

.people-intro .container {
    position: relative;
    z-index: 2;
}


/* Imagen */

.people-image-wrapper {
    position: relative;

    padding: 0 30px 32px 0;
}

.people-image {
    position: relative;
    z-index: 2;

    display: block;

    width: 100%;
    height: 520px;

    object-fit: cover;

    border-radius: var(--radius-lg);

    box-shadow:
        0 25px 55px rgba(15, 23, 42, .13);
}

.people-image-wrapper::before {
    content: '';

    position: absolute;

    right: 0;
    bottom: 0;

    width: calc(100% - 30px);
    height: calc(100% - 30px);

    border-radius: var(--radius-lg);

    background:
        linear-gradient(135deg,
            var(--primary),
            var(--secondary));

    opacity: .15;
}


/* Tarjeta sobre imagen */

.people-image-accent {
    position: absolute;

    z-index: 3;

    right: -5px;
    bottom: 65px;

    max-width: 220px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 18px 20px;

    background: var(--white);

    border: 1px solid rgba(15, 23, 42, .04);
    border-radius: 12px;

    box-shadow:
        0 18px 40px rgba(15, 23, 42, .14);

    color: var(--dark);

    font-size: .84rem;
    font-weight: 700;
    line-height: 1.4;
}

.people-image-accent i {
    flex-shrink: 0;

    color: var(--primary);

    font-size: 1.5rem;
}


/* Contenido */

.people-intro-content {
    max-width: 590px;

    padding-left: 20px;
}

.people-intro-content h2 {
    margin-bottom: 24px;

    font-size: clamp(2rem, 4vw, 3rem);
}

.people-intro-content>p {
    margin-bottom: 28px;

    font-size: 1rem;
    line-height: 1.85;
}


/* Frase destacada */

.people-highlight {
    position: relative;

    padding: 24px 25px 24px 62px;

    background: var(--light);

    border-left: 3px solid var(--secondary);

    border-radius: 0 12px 12px 0;
}

.people-highlight i {
    position: absolute;

    left: 22px;
    top: 21px;

    color: var(--secondary);

    font-size: 1.5rem;
}

.people-highlight p {
    margin: 0;

    color: var(--dark);

    font-size: 1rem;
    font-weight: 600;

    line-height: 1.7;
}


/* =========================================================
   INTRODUCCIÓN - TABLET
========================================================= */

@media (max-width: 991.98px) {

    .people-image-wrapper {
        max-width: 700px;

        margin: 0 auto;

        padding-right: 25px;
    }

    .people-image {
        height: 440px;
    }

    .people-intro-content {
        max-width: 100%;

        padding-left: 0;

        margin-top: 15px;
    }

}


/* =========================================================
   INTRODUCCIÓN - CELULAR
========================================================= */

@media (max-width: 767.98px) {

    .people-image-wrapper {
        padding-right: 18px;
        padding-bottom: 25px;
    }

    .people-image {
        height: 360px;

        border-radius: 16px;
    }

    .people-image-accent {
        right: 0;
        bottom: 45px;
    }

}


@media (max-width: 575.98px) {

    .people-image-wrapper {
        padding-right: 12px;
    }

    .people-image {
        height: 300px;
    }

    .people-image-accent {
        position: relative;

        right: auto;
        bottom: auto;

        width: calc(100% - 30px);
        max-width: none;

        margin: -30px auto 0;
    }

    .people-intro-content {
        margin-top: 0;
    }

    .people-highlight {
        padding:
            22px 20px 22px 54px;
    }

    .people-highlight i {
        left: 18px;
    }

}



/* =========================================================
   31. NUESTRA GENTE - COMPROMISOS
========================================================= */

.people-commitments {
    position: relative;

    background: var(--light);

    overflow: hidden;
}

.people-commitments::after {
    content: '';

    position: absolute;

    width: 400px;
    height: 400px;

    right: -250px;
    top: -220px;

    border-radius: 50%;

    background: rgba(0, 104, 56, .045);
}

.people-commitments .container {
    position: relative;
    z-index: 2;
}


/* Tarjeta */

.people-commitment-card {
    position: relative;

    height: 100%;
    min-height: 320px;

    padding: 38px 36px;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    box-shadow:
        0 10px 30px rgba(15, 23, 42, .05);

    overflow: hidden;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.people-commitment-card::before {
    content: '';

    position: absolute;

    left: 0;
    top: 0;

    width: 5px;
    height: 100%;

    background:
        linear-gradient(180deg,
            var(--primary),
            var(--secondary));
}

.people-commitment-card::after {
    content: '';

    position: absolute;

    width: 170px;
    height: 170px;

    right: -90px;
    bottom: -90px;

    border-radius: 50%;

    background: rgba(141, 198, 63, .055);

    transition: transform .35s ease;
}

.people-commitment-card:hover {
    transform: translateY(-6px);

    border-color: rgba(0, 104, 56, .16);

    box-shadow:
        0 20px 45px rgba(15, 23, 42, .09);
}

.people-commitment-card:hover::after {
    transform: scale(1.3);
}


/* Cabecera */

.people-commitment-top {
    position: relative;
    z-index: 2;

    display: flex;

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

    margin-bottom: 28px;
}

.people-commitment-icon {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background:
        linear-gradient(135deg,
            var(--primary),
            var(--primary-light));

    color: var(--white);

    font-size: 1.55rem;

    box-shadow:
        0 10px 25px rgba(0, 104, 56, .15);
}

.people-commitment-number {
    color: rgba(0, 104, 56, .09);

    font-size: 3.6rem;
    font-weight: 800;

    line-height: 1;
}

.people-commitment-card h3 {
    position: relative;
    z-index: 2;

    margin-bottom: 15px;

    color: var(--dark);

    font-size: 1.45rem;
}

.people-commitment-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: var(--text-soft);

    font-size: .96rem;
    line-height: 1.8;
}


@media (max-width: 575.98px) {

    .people-commitment-card {
        min-height: auto;

        padding: 29px 24px;
    }

    .people-commitment-icon {
        width: 55px;
        height: 55px;

        font-size: 1.35rem;
    }

    .people-commitment-number {
        font-size: 3rem;
    }

}



/* =========================================================
   32. NUESTRA GENTE - DERECHOS HUMANOS
========================================================= */

.people-rights {
    position: relative;

    background: var(--white);

    overflow: hidden;
}

.people-rights .container {
    position: relative;
    z-index: 2;
}


/* Contenido */

.people-rights-content {
    max-width: 590px;

    padding-right: 20px;
}

.people-rights-content h2 {
    margin-bottom: 24px;

    font-size: clamp(2rem, 4vw, 3rem);
}

.people-rights-content p {
    margin-bottom: 17px;

    font-size: 1rem;
    line-height: 1.85;
}


/* Imagen */

.people-rights-image-wrapper {
    position: relative;

    padding: 0 0 32px 30px;
}

.people-rights-image {
    position: relative;
    z-index: 2;

    display: block;

    width: 100%;
    height: 500px;

    object-fit: cover;

    border-radius: var(--radius-lg);

    box-shadow:
        0 25px 55px rgba(15, 23, 42, .13);
}

.people-rights-image-wrapper::before {
    content: '';

    position: absolute;

    left: 0;
    bottom: 0;

    width: calc(100% - 30px);
    height: calc(100% - 30px);

    border-radius: var(--radius-lg);

    background:
        linear-gradient(135deg,
            var(--secondary),
            var(--primary));

    opacity: .14;
}


/* Badge */

.people-rights-badge {
    position: absolute;

    z-index: 3;

    left: -5px;
    bottom: 65px;

    max-width: 245px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 17px 20px;

    background: var(--white);

    border-radius: 12px;

    box-shadow:
        0 18px 40px rgba(15, 23, 42, .14);

    color: var(--dark);

    font-size: .83rem;
    font-weight: 700;

    line-height: 1.4;
}

.people-rights-badge-icon {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

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

    border-radius: 8px;

    background: rgba(0, 104, 56, .09);

    color: var(--primary);

    font-size: 1.15rem;
}


/* Tablet */

@media (max-width: 991.98px) {

    .people-rights-content {
        max-width: 100%;

        padding-right: 0;
    }

    .people-rights-image-wrapper {
        max-width: 700px;

        margin: 15px auto 0;
    }

    .people-rights-image {
        height: 430px;
    }

}


/* Celular */

@media (max-width: 767.98px) {

    .people-rights-image-wrapper {
        padding-left: 18px;
        padding-bottom: 25px;
    }

    .people-rights-image {
        height: 350px;

        border-radius: 16px;
    }

    .people-rights-badge {
        left: 0;
        bottom: 45px;
    }

}


@media (max-width: 575.98px) {

    .people-rights-image-wrapper {
        padding-left: 12px;
    }

    .people-rights-image {
        height: 290px;
    }

    .people-rights-badge {
        position: relative;

        left: auto;
        bottom: auto;

        width: calc(100% - 30px);
        max-width: none;

        margin: -30px auto 0;
    }

}



/* =========================================================
   33. NUESTRA GENTE - RESPONSABILIDAD
========================================================= */

.people-responsibility {
    position: relative;

    padding: 100px 0;

    background:
        linear-gradient(135deg,
            var(--primary-dark) 0%,
            var(--primary) 58%,
            #087945 100%);

    color: var(--white);

    overflow: hidden;
}

.people-responsibility::before {
    content: '';

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    top: -250px;

    border-radius: 50%;

    background: rgba(141, 198, 63, .12);
}

.people-responsibility::after {
    content: '';

    position: absolute;

    width: 300px;
    height: 300px;

    left: -170px;
    bottom: -190px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .10);
}

.people-responsibility .container {
    position: relative;
    z-index: 2;
}

.people-responsibility-content {
    max-width: 800px;

    margin: 0 auto;

    text-align: center;
}

.people-responsibility-icon {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin:
        0 auto 25px;

    border: 1px solid rgba(255, 255, 255, .16);

    border-radius: 14px;

    background: rgba(255, 255, 255, .08);

    color: var(--secondary);

    font-size: 1.6rem;
}

.people-responsibility h2 {
    margin-bottom: 22px;

    color: var(--white);

    font-size: clamp(2rem, 4vw, 3rem);
}

.people-responsibility p {
    max-width: 680px;

    margin:
        0 auto;

    color: rgba(255, 255, 255, .75);

    font-size: 1rem;
    line-height: 1.85;
}

.people-responsibility-divider {
    width: 50px;
    height: 2px;

    margin:
        25px auto;

    background: var(--secondary);
}


/* Tablet */

@media (max-width: 991.98px) {

    .people-responsibility {
        padding: 85px 0;
    }

}


/* Celular */

@media (max-width: 575.98px) {

    .people-responsibility {
        padding: 70px 0;
    }

    .people-responsibility-icon {
        width: 58px;
        height: 58px;

        font-size: 1.4rem;
    }

}

/* =========================================================
   34. SOSTENIBILIDAD - INTRO
========================================================= */

.sustainability-intro {
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.sustainability-intro::before {
    content: '';

    position: absolute;

    width: 420px;
    height: 420px;

    right: -250px;
    bottom: -230px;

    border-radius: 50%;

    background: rgba(141, 198, 63, .05);
}

.sustainability-intro .container {
    position: relative;
    z-index: 2;
}

.sustainability-image-wrapper {
    position: relative;

    padding: 0 30px 32px 0;
}

.sustainability-image {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 520px;

    object-fit: cover;

    border-radius: var(--radius-lg);

    box-shadow:
        0 25px 55px rgba(15, 23, 42, .13);
}

.sustainability-image-wrapper::before {
    content: '';

    position: absolute;

    right: 0;
    bottom: 0;

    width: calc(100% - 30px);
    height: calc(100% - 30px);

    border-radius: var(--radius-lg);

    background:
        linear-gradient(135deg,
            var(--primary),
            var(--secondary));

    opacity: .14;
}

.sustainability-image-badge {
    position: absolute;

    z-index: 3;

    right: -5px;
    bottom: 65px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 18px 20px;

    background: var(--white);

    border-radius: 12px;

    box-shadow:
        0 18px 40px rgba(15, 23, 42, .14);

    color: var(--dark);

    font-size: .85rem;
    font-weight: 700;
}

.sustainability-image-badge i {
    color: var(--primary);

    font-size: 1.5rem;
}

.sustainability-intro-content {
    max-width: 590px;

    padding-left: 20px;
}

.sustainability-intro-content h2 {
    margin-bottom: 24px;

    font-size: clamp(2rem, 4vw, 3rem);
}

.sustainability-intro-content p {
    margin-bottom: 18px;

    font-size: 1rem;
    line-height: 1.85;
}


/* =========================================================
   35. SOSTENIBILIDAD - COMPROMISOS
========================================================= */

.sustainability-commitments {
    position: relative;

    background: var(--light);

    overflow: hidden;
}

.sustainability-card {
    position: relative;

    height: 100%;
    min-height: 290px;

    padding: 32px 28px;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    box-shadow:
        0 8px 25px rgba(15, 23, 42, .045);

    overflow: hidden;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.sustainability-card::after {
    content: '';

    position: absolute;

    width: 130px;
    height: 130px;

    right: -70px;
    bottom: -70px;

    border-radius: 50%;

    background: rgba(141, 198, 63, .06);

    transition: transform .35s ease;
}

.sustainability-card:hover {
    transform: translateY(-6px);

    border-color: rgba(0, 104, 56, .16);

    box-shadow:
        0 18px 40px rgba(15, 23, 42, .09);
}

.sustainability-card:hover::after {
    transform: scale(1.35);
}

.sustainability-card-icon {
    position: relative;
    z-index: 2;

    width: 58px;
    height: 58px;

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

    margin-bottom: 23px;

    border-radius: 12px;

    background: rgba(0, 104, 56, .08);

    color: var(--primary);

    font-size: 1.45rem;

    transition:
        background-color .3s ease,
        color .3s ease;
}

.sustainability-card:hover .sustainability-card-icon {
    background: var(--primary);

    color: var(--white);
}

.sustainability-card h4 {
    position: relative;
    z-index: 2;

    margin-bottom: 13px;

    color: var(--dark);

    font-size: 1.1rem;
}

.sustainability-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: var(--text-soft);

    font-size: .9rem;
    line-height: 1.75;
}


/* =========================================================
   36. SOSTENIBILIDAD - COMUNIDAD
========================================================= */

.sustainability-community {
    position: relative;

    background: var(--white);

    overflow: hidden;
}

.sustainability-community-content {
    max-width: 590px;

    padding-right: 20px;
}

.sustainability-community-content h2 {
    margin-bottom: 24px;

    font-size: clamp(2rem, 4vw, 3rem);
}

.sustainability-community-content p {
    margin-bottom: 18px;

    font-size: 1rem;
    line-height: 1.85;
}

.sustainability-community-image-wrapper {
    position: relative;

    padding: 0 0 32px 30px;
}

.sustainability-community-image {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 480px;

    object-fit: cover;

    border-radius: var(--radius-lg);

    box-shadow:
        0 25px 55px rgba(15, 23, 42, .13);
}

.sustainability-community-image-wrapper::before {
    content: '';

    position: absolute;

    left: 0;
    bottom: 0;

    width: calc(100% - 30px);
    height: calc(100% - 30px);

    border-radius: var(--radius-lg);

    background:
        linear-gradient(135deg,
            var(--secondary),
            var(--primary));

    opacity: .14;
}


/* =========================================================
   37. SOSTENIBILIDAD - MEDIO AMBIENTE
========================================================= */

.sustainability-environment {
    position: relative;

    background: var(--light);

    overflow: hidden;
}

.sustainability-feature-card {
    height: 100%;

    display: flex;

    gap: 22px;

    padding: 32px;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    box-shadow:
        0 8px 25px rgba(15, 23, 42, .045);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.sustainability-feature-card:hover {
    transform: translateY(-5px);

    border-color: rgba(0, 104, 56, .16);

    box-shadow:
        0 18px 40px rgba(15, 23, 42, .09);
}

.sustainability-feature-icon {
    width: 60px;
    height: 60px;

    flex-shrink: 0;

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

    border-radius: 12px;

    background:
        linear-gradient(135deg,
            var(--primary),
            var(--primary-light));

    color: var(--white);

    font-size: 1.5rem;
}

.sustainability-feature-card h4 {
    margin-bottom: 12px;

    color: var(--dark);

    font-size: 1.1rem;
}

.sustainability-feature-card p {
    margin: 0;

    color: var(--text-soft);

    font-size: .9rem;
    line-height: 1.75;
}


/* =========================================================
   38. SOSTENIBILIDAD - CTA
========================================================= */

.sustainability-cta {
    position: relative;

    padding: 100px 0;

    background:
        linear-gradient(135deg,
            var(--primary-dark) 0%,
            var(--primary) 58%,
            #087945 100%);

    color: var(--white);

    overflow: hidden;
}

.sustainability-cta::before {
    content: '';

    position: absolute;

    width: 420px;
    height: 420px;

    right: -190px;
    top: -250px;

    border-radius: 50%;

    background: rgba(141, 198, 63, .12);
}

.sustainability-cta .container {
    position: relative;
    z-index: 2;
}

.sustainability-cta-content {
    max-width: 800px;

    margin: 0 auto;

    text-align: center;
}

.sustainability-cta-icon {
    width: 65px;
    height: 65px;

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

    margin: 0 auto 24px;

    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 14px;

    background: rgba(255, 255, 255, .08);

    color: var(--secondary);

    font-size: 1.6rem;
}

.sustainability-cta h2 {
    margin-bottom: 22px;

    color: var(--white);

    font-size: clamp(2rem, 4vw, 3rem);
}

.sustainability-cta p {
    max-width: 700px;

    margin: 0 auto;

    color: rgba(255, 255, 255, .75);

    font-size: 1rem;
    line-height: 1.85;
}


/* =========================================================
   SOSTENIBILIDAD - RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .sustainability-image-wrapper,
    .sustainability-community-image-wrapper {
        max-width: 700px;

        margin: 0 auto;
    }

    .sustainability-image {
        height: 440px;
    }

    .sustainability-community-image {
        height: 420px;
    }

    .sustainability-intro-content,
    .sustainability-community-content {
        max-width: 100%;

        padding-left: 0;
        padding-right: 0;
    }

    .sustainability-cta {
        padding: 85px 0;
    }

}


@media (max-width: 767.98px) {

    .sustainability-image,
    .sustainability-community-image {
        height: 350px;
    }

    .sustainability-feature-card {
        padding: 28px;
    }

}


@media (max-width: 575.98px) {

    .sustainability-image-wrapper {
        padding-right: 12px;
    }

    .sustainability-community-image-wrapper {
        padding-left: 12px;
    }

    .sustainability-image,
    .sustainability-community-image {
        height: 290px;
    }

    .sustainability-image-badge {
        position: relative;

        right: auto;
        bottom: auto;

        width: calc(100% - 30px);

        margin: -30px auto 0;
    }

    .sustainability-card {
        min-height: auto;

        padding: 27px 23px;
    }

    .sustainability-feature-card {
        flex-direction: column;

        gap: 18px;

        padding: 25px 22px;
    }

    .sustainability-cta {
        padding: 70px 0;
    }

}

/* =========================================================
   39. SERVICIOS - DETALLE PRINCIPAL
========================================================= */

.service-detail {
    position: relative;

    background: var(--white);

    overflow: hidden;
}


.service-detail::before {
    content: '';

    position: absolute;

    width: 460px;
    height: 460px;

    right: -280px;
    bottom: -260px;

    border-radius: 50%;

    background: rgba(141, 198, 63, .05);

    pointer-events: none;
}


.service-detail .container {
    position: relative;

    z-index: 2;
}


/* =========================================================
   IMAGEN
========================================================= */

.service-detail-image-wrapper {
    position: relative;

    padding: 0 30px 32px 0;
}


.service-detail-image {
    position: relative;

    z-index: 2;

    display: block;

    width: 100%;
    height: 560px;

    object-fit: cover;

    border-radius: var(--radius-lg);

    box-shadow:
        0 25px 55px rgba(15, 23, 42, .13);
}


/* Fondo decorativo */

.service-detail-image-wrapper::before {
    content: '';

    position: absolute;

    right: 0;
    bottom: 0;

    width: calc(100% - 30px);
    height: calc(100% - 30px);

    border-radius: var(--radius-lg);

    background:
        linear-gradient(135deg,
            var(--primary),
            var(--secondary));

    opacity: .14;
}


/* =========================================================
   BADGE
========================================================= */

.service-detail-badge {
    position: absolute;

    z-index: 3;

    right: -5px;
    bottom: 65px;

    display: flex;

    align-items: center;

    gap: 12px;

    min-width: 205px;

    padding: 17px 20px;

    background: var(--white);

    border: 1px solid rgba(15, 23, 42, .04);

    border-radius: 12px;

    box-shadow:
        0 18px 40px rgba(15, 23, 42, .14);

    color: var(--dark);

    font-size: .83rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .5px;
}


.service-detail-badge-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: rgba(0, 104, 56, .09);

    color: var(--primary);

    font-size: 1.2rem;
}


/* =========================================================
   CONTENIDO
========================================================= */

.service-detail-content {
    max-width: 600px;

    padding-left: 20px;
}


.service-detail-content h2 {
    margin-bottom: 25px;

    color: var(--dark);

    font-size: clamp(2rem, 4vw, 3rem);

    line-height: 1.2;
}


.service-detail-content p {
    margin-bottom: 17px;

    color: var(--text-soft);

    font-size: .98rem;

    line-height: 1.85;
}


.service-detail-content p:last-child {
    margin-bottom: 0;
}


/* Destacar primer párrafo */

.service-detail-content p:first-of-type {
    color: var(--dark-soft);

    font-size: 1rem;

    font-weight: 500;
}


/* =========================================================
   DETALLE SERVICIO - TABLET
========================================================= */

@media (max-width: 991.98px) {

    .service-detail-image-wrapper {
        max-width: 700px;

        margin: 0 auto;

        padding-right: 25px;
    }


    .service-detail-image {
        height: 470px;
    }


    .service-detail-content {
        max-width: 100%;

        padding-left: 0;

        margin-top: 15px;
    }

}


/* =========================================================
   DETALLE SERVICIO - CELULAR
========================================================= */

@media (max-width: 767.98px) {

    .service-detail-image-wrapper {
        padding-right: 18px;

        padding-bottom: 25px;
    }


    .service-detail-image {
        height: 370px;

        border-radius: 16px;
    }


    .service-detail-badge {
        right: 0;

        bottom: 45px;
    }

}


@media (max-width: 575.98px) {

    .service-detail-image-wrapper {
        padding-right: 12px;
    }


    .service-detail-image {
        height: 300px;
    }


    .service-detail-badge {
        position: relative;

        right: auto;
        bottom: auto;

        width: calc(100% - 30px);

        margin: -30px auto 0;

        text-transform: none;
    }


    .service-detail-content {
        margin-top: 0;
    }


    .service-detail-content p {
        font-size: .95rem;

        line-height: 1.8;
    }

}



/* =========================================================
   40. SERVICIOS - CTA
========================================================= */

.service-detail-cta {
    position: relative;

    padding: 105px 0;

    background:
        linear-gradient(135deg,
            var(--primary-dark) 0%,
            var(--primary) 58%,
            #087945 100%);

    color: var(--white);

    overflow: hidden;
}


/* Decoración derecha */

.service-detail-cta::before {
    content: '';

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    top: -250px;

    border-radius: 50%;

    background: rgba(141, 198, 63, .12);
}


/* Decoración izquierda */

.service-detail-cta::after {
    content: '';

    position: absolute;

    width: 300px;
    height: 300px;

    left: -170px;
    bottom: -190px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .10);
}


.service-detail-cta .container {
    position: relative;

    z-index: 2;
}


.service-detail-cta-content {
    max-width: 820px;

    margin: 0 auto;

    text-align: center;
}


/* Icono */

.service-detail-cta-icon {
    width: 66px;
    height: 66px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin:
        0 auto 25px;

    border: 1px solid rgba(255, 255, 255, .15);

    border-radius: 14px;

    background: rgba(255, 255, 255, .08);

    color: var(--secondary);

    font-size: 1.65rem;
}


.service-detail-cta h2 {
    margin-bottom: 21px;

    color: var(--white);

    font-size: clamp(2rem, 4vw, 3rem);

    line-height: 1.25;
}


.service-detail-cta p {
    max-width: 690px;

    margin: 0 auto;

    color: rgba(255, 255, 255, .75);

    font-size: 1rem;

    line-height: 1.85;
}


/* =========================================================
   CTA SERVICIOS - TABLET
========================================================= */

@media (max-width: 991.98px) {

    .service-detail-cta {
        padding: 85px 0;
    }

}


/* =========================================================
   CTA SERVICIOS - CELULAR
========================================================= */

@media (max-width: 575.98px) {

    .service-detail-cta {
        padding: 70px 0;
    }


    .service-detail-cta-icon {
        width: 58px;
        height: 58px;

        font-size: 1.4rem;
    }

}

/* =========================================================
   41. DISTRIBUCIÓN DE VÍVERES - CARACTERÍSTICAS
========================================================= */

.supplies-features {
    position: relative;

    background: var(--light);

    overflow: hidden;
}

.supplies-features::before {
    content: '';

    position: absolute;

    width: 420px;
    height: 420px;

    right: -250px;
    top: -230px;

    border-radius: 50%;

    background: rgba(0, 104, 56, .045);

    pointer-events: none;
}

.supplies-features .container {
    position: relative;

    z-index: 2;
}


/* =========================================================
   TARJETAS
========================================================= */

.supplies-feature-card {
    position: relative;

    height: 100%;
    min-height: 305px;

    padding: 38px 36px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    box-shadow:
        0 10px 30px rgba(15, 23, 42, .05);

    overflow: hidden;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


.supplies-feature-card::before {
    content: '';

    position: absolute;

    left: 0;
    top: 0;

    width: 5px;
    height: 100%;

    background:
        linear-gradient(180deg,
            var(--primary),
            var(--secondary));
}


.supplies-feature-card::after {
    content: '';

    position: absolute;

    width: 170px;
    height: 170px;

    right: -90px;
    bottom: -90px;

    border-radius: 50%;

    background: rgba(141, 198, 63, .055);

    transition:
        transform .35s ease;
}


.supplies-feature-card:hover {
    transform: translateY(-6px);

    border-color: rgba(0, 104, 56, .16);

    box-shadow:
        0 20px 45px rgba(15, 23, 42, .09);
}


.supplies-feature-card:hover::after {
    transform: scale(1.3);
}


/* =========================================================
   PARTE SUPERIOR
========================================================= */

.supplies-feature-top {
    position: relative;

    z-index: 2;

    display: flex;

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

    margin-bottom: 28px;
}


.supplies-feature-icon {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background:
        linear-gradient(135deg,
            var(--primary),
            var(--primary-light));

    color: var(--white);

    font-size: 1.55rem;

    box-shadow:
        0 10px 25px rgba(0, 104, 56, .15);
}


.supplies-feature-number {
    color: rgba(0, 104, 56, .09);

    font-size: 3.6rem;

    font-weight: 800;

    line-height: 1;
}


/* =========================================================
   TEXTO
========================================================= */

.supplies-feature-card h3 {
    position: relative;

    z-index: 2;

    margin-bottom: 15px;

    color: var(--dark);

    font-size: 1.4rem;
}


.supplies-feature-card p {
    position: relative;

    z-index: 2;

    margin: 0;

    color: var(--text-soft);

    font-size: .96rem;

    line-height: 1.8;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 767.98px) {

    .supplies-feature-card {
        min-height: auto;
    }

}


@media (max-width: 575.98px) {

    .supplies-feature-card {
        padding: 29px 24px;
    }


    .supplies-feature-icon {
        width: 55px;
        height: 55px;

        font-size: 1.35rem;
    }


    .supplies-feature-number {
        font-size: 3rem;
    }

}

/* =========================================================
   42. CATERING - OPCIONES
========================================================= */

.catering-options {
    position: relative;

    background: var(--light);

    overflow: hidden;
}

.catering-options::before {
    content: '';

    position: absolute;

    width: 430px;
    height: 430px;

    left: -260px;
    bottom: -240px;

    border-radius: 50%;

    background: rgba(141, 198, 63, .05);

    pointer-events: none;
}

.catering-options .container {
    position: relative;

    z-index: 2;
}


/* =========================================================
   TARJETAS
========================================================= */

.catering-option-card {
    position: relative;

    height: 100%;
    min-height: 180px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 18px;

    padding: 30px 24px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    box-shadow:
        0 8px 25px rgba(15, 23, 42, .045);

    text-align: center;

    overflow: hidden;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.catering-option-card::before {
    content: '';

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(90deg,
            var(--primary),
            var(--secondary));

    transform: scaleX(0);

    transform-origin: left;

    transition: transform .3s ease;
}

.catering-option-card:hover {
    transform: translateY(-6px);

    border-color: rgba(0, 104, 56, .16);

    box-shadow:
        0 18px 40px rgba(15, 23, 42, .09);
}

.catering-option-card:hover::before {
    transform: scaleX(1);
}


/* Icono */

.catering-option-icon {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: rgba(0, 104, 56, .08);

    color: var(--primary);

    font-size: 1.55rem;

    transition:
        background-color .3s ease,
        color .3s ease,
        transform .3s ease;
}

.catering-option-card:hover .catering-option-icon {
    background: var(--primary);

    color: var(--white);

    transform: translateY(-3px);
}


/* Texto */

.catering-option-card h4 {
    margin: 0;

    color: var(--dark);

    font-size: 1.05rem;

    font-weight: 700;
}


/* =========================================================
   TARJETA ANCHA
========================================================= */

.catering-option-card-wide {
    min-height: 120px;

    flex-direction: row;

    justify-content: center;

    gap: 20px;

    background:
        linear-gradient(135deg,
            #ffffff 0%,
            #f7faf8 100%);
}

.catering-option-card-wide .catering-option-icon {
    margin: 0;
}

.catering-option-card-wide h4 {
    font-size: 1.15rem;
}


/* =========================================================
   CATERING - TABLET
========================================================= */

@media (max-width: 991.98px) {

    .catering-option-card {
        min-height: 165px;
    }

}


/* =========================================================
   CATERING - CELULAR
========================================================= */

@media (max-width: 767.98px) {

    .catering-option-card {
        min-height: 150px;
    }

    .catering-option-card-wide {
        min-height: 140px;
    }

}


@media (max-width: 575.98px) {

    .catering-option-card {
        min-height: 135px;

        flex-direction: row;

        justify-content: flex-start;

        gap: 18px;

        padding: 22px;

        text-align: left;
    }

    .catering-option-icon {
        width: 54px;
        height: 54px;

        flex-shrink: 0;

        font-size: 1.35rem;
    }

    .catering-option-card-wide {
        justify-content: flex-start;
    }

}

/* =========================================================
   43. MENÚ PERSONALIZADO - CARACTERÍSTICAS
========================================================= */

.custom-menu-features {
    position: relative;

    background: var(--light);

    overflow: hidden;
}

.custom-menu-features::before {
    content: '';

    position: absolute;

    width: 420px;
    height: 420px;

    right: -250px;
    bottom: -230px;

    border-radius: 50%;

    background: rgba(141, 198, 63, .05);

    pointer-events: none;
}

.custom-menu-features .container {
    position: relative;

    z-index: 2;
}


/* =========================================================
   TARJETAS
========================================================= */

.custom-menu-card {
    position: relative;

    height: 100%;
    min-height: 210px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 20px;

    padding: 32px 24px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    box-shadow:
        0 8px 25px rgba(15, 23, 42, .045);

    text-align: center;

    overflow: hidden;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


.custom-menu-card::before {
    content: '';

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(90deg,
            var(--primary),
            var(--secondary));

    transform: scaleX(0);

    transform-origin: left;

    transition: transform .3s ease;
}


.custom-menu-card::after {
    content: '';

    position: absolute;

    width: 120px;
    height: 120px;

    right: -65px;
    bottom: -65px;

    border-radius: 50%;

    background: rgba(141, 198, 63, .055);
}


.custom-menu-card:hover {
    transform: translateY(-6px);

    border-color: rgba(0, 104, 56, .16);

    box-shadow:
        0 18px 40px rgba(15, 23, 42, .09);
}


.custom-menu-card:hover::before {
    transform: scaleX(1);
}


/* =========================================================
   ICONO
========================================================= */

.custom-menu-icon {
    position: relative;

    z-index: 2;

    width: 66px;
    height: 66px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        linear-gradient(135deg,
            rgba(0, 104, 56, .09),
            rgba(141, 198, 63, .15));

    color: var(--primary);

    font-size: 1.6rem;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}


.custom-menu-card:hover .custom-menu-icon {
    background:
        linear-gradient(135deg,
            var(--primary),
            var(--secondary));

    color: var(--white);

    transform: scale(1.05);
}


/* =========================================================
   TEXTO
========================================================= */

.custom-menu-card h4 {
    position: relative;

    z-index: 2;

    margin: 0;

    color: var(--dark);

    font-size: 1.08rem;

    font-weight: 700;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .custom-menu-card {
        min-height: 185px;
    }

}


@media (max-width: 575.98px) {

    .custom-menu-card {
        min-height: 120px;

        flex-direction: row;

        justify-content: flex-start;

        gap: 18px;

        padding: 22px;

        text-align: left;
    }


    .custom-menu-icon {
        width: 55px;
        height: 55px;

        flex-shrink: 0;

        font-size: 1.35rem;
    }

}

/* =========================================================
   44. CULTURA Y RESPONSABILIDAD - INTRO BASE
========================================================= */

.safe-intro,
.environment-intro {
    position: relative;

    background: var(--white);

    overflow: hidden;
}

.safe-intro .container,
.environment-intro .container {
    position: relative;

    z-index: 2;
}


/* =========================================================
   IMÁGENES
========================================================= */

.safe-image-wrapper,
.environment-image-wrapper {
    position: relative;

    padding: 0 30px 32px 0;
}

.safe-image,
.environment-image {
    position: relative;

    z-index: 2;

    display: block;

    width: 100%;
    height: 510px;

    object-fit: cover;

    border-radius: var(--radius-lg);

    box-shadow:
        0 25px 55px rgba(15, 23, 42, .13);
}

.safe-image-wrapper::before,
.environment-image-wrapper::before {
    content: '';

    position: absolute;

    right: 0;
    bottom: 0;

    width: calc(100% - 30px);
    height: calc(100% - 30px);

    border-radius: var(--radius-lg);

    background:
        linear-gradient(135deg,
            var(--primary),
            var(--secondary));

    opacity: .14;
}


/* Badge */

.safe-image-badge,
.environment-image-badge {
    position: absolute;

    z-index: 3;

    right: -5px;
    bottom: 65px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 18px 20px;

    background: var(--white);

    border-radius: 12px;

    box-shadow:
        0 18px 40px rgba(15, 23, 42, .14);

    color: var(--dark);

    font-size: .84rem;

    font-weight: 700;
}

.safe-image-badge i,
.environment-image-badge i {
    color: var(--primary);

    font-size: 1.45rem;
}


/* Contenido */

.safe-intro-content,
.environment-intro-content {
    max-width: 590px;

    padding-left: 20px;
}

.safe-intro-content h2,
.environment-intro-content h2 {
    margin-bottom: 24px;

    font-size: clamp(2rem, 4vw, 3rem);
}

.safe-intro-content p,
.environment-intro-content p {
    margin-bottom: 18px;

    font-size: 1rem;

    line-height: 1.85;
}


/* =========================================================
   45. ESPACIOS SEGUROS - ESTADÍSTICAS
========================================================= */

.safe-stats {
    position: relative;

    padding: 0 0 90px;

    background: var(--white);
}

.safe-stats-wrapper {
    overflow: hidden;

    background:
        linear-gradient(135deg,
            var(--primary-dark),
            var(--primary));

    border-radius: var(--radius-lg);

    box-shadow:
        0 18px 45px rgba(0, 104, 56, .15);
}

.safe-stat {
    position: relative;

    min-height: 210px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 32px;

    text-align: center;
}

.safe-stat:first-child::after {
    content: '';

    position: absolute;

    right: 0;
    top: 35px;

    width: 1px;
    height: calc(100% - 70px);

    background: rgba(255, 255, 255, .15);
}

.safe-stat-number {
    margin-bottom: 12px;

    color: var(--secondary);

    font-size: clamp(2.7rem, 5vw, 4rem);

    font-weight: 800;

    line-height: 1;
}

.safe-stat p {
    max-width: 340px;

    margin: 0;

    color: rgba(255, 255, 255, .78);

    font-size: .95rem;
}


/* =========================================================
   46. ESPACIOS SEGUROS - COMPROMISOS
========================================================= */

.safe-commitments {
    background: var(--light);
}

.safe-card {
    position: relative;

    height: 100%;

    min-height: 290px;

    padding: 32px 28px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    box-shadow:
        0 8px 25px rgba(15, 23, 42, .045);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.safe-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(15, 23, 42, .09);
}

.safe-card-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border-radius: 12px;

    background: rgba(0, 104, 56, .08);

    color: var(--primary);

    font-size: 1.45rem;
}

.safe-card h4 {
    margin-bottom: 13px;

    font-size: 1.1rem;
}

.safe-card p {
    margin: 0;

    font-size: .9rem;

    line-height: 1.75;
}


/* =========================================================
   47. ESPACIOS SEGUROS - ÉTICA
========================================================= */

.safe-ethics {
    background: var(--white);
}

.safe-ethics-content {
    max-width: 590px;
}

.safe-ethics-content h2 {
    margin-bottom: 24px;

    font-size: clamp(2rem, 4vw, 3rem);
}

.safe-ethics-content p {
    margin-bottom: 18px;

    line-height: 1.85;
}

.safe-ethics-image-wrapper {
    position: relative;

    padding: 0 0 32px 30px;
}

.safe-ethics-image {
    position: relative;

    z-index: 2;

    width: 100%;
    height: 480px;

    object-fit: cover;

    border-radius: var(--radius-lg);

    box-shadow:
        0 25px 55px rgba(15, 23, 42, .13);
}

.safe-ethics-image-wrapper::before {
    content: '';

    position: absolute;

    left: 0;
    bottom: 0;

    width: calc(100% - 30px);
    height: calc(100% - 30px);

    border-radius: var(--radius-lg);

    background:
        linear-gradient(135deg,
            var(--secondary),
            var(--primary));

    opacity: .14;
}

.safe-ethics-badge {
    position: absolute;

    z-index: 3;

    left: -5px;
    bottom: 65px;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 17px 20px;

    background: var(--white);

    border-radius: 12px;

    box-shadow:
        0 18px 40px rgba(15, 23, 42, .14);

    color: var(--dark);

    font-size: .84rem;

    font-weight: 700;
}

.safe-ethics-badge i {
    color: var(--primary);

    font-size: 1.25rem;
}


/* =========================================================
   48. MEDIO AMBIENTE - ÁREAS
========================================================= */

.environment-areas {
    position: relative;

    background: var(--light);
}

.environment-area-card {
    height: 100%;

    min-height: 185px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 18px;

    padding: 28px 22px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    text-align: center;

    box-shadow:
        0 8px 25px rgba(15, 23, 42, .045);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.environment-area-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 16px 35px rgba(15, 23, 42, .08);
}

.environment-area-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(0, 104, 56, .08);

    color: var(--primary);

    font-size: 1.4rem;
}

.environment-area-card h4 {
    margin: 0;

    font-size: 1rem;
}


/* =========================================================
   49. MEDIO AMBIENTE - RECICLAJE
========================================================= */

.environment-recycling {
    background: var(--white);
}

.recycling-card {
    height: 100%;

    padding: 30px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    box-shadow:
        0 10px 30px rgba(15, 23, 42, .06);
}

.recycling-image {
    height: 210px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 24px;
}

.recycling-image img {
    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
}

.recycling-card h4 {
    margin-bottom: 20px;

    color: var(--dark);

    font-size: 1.2rem;
}

.recycling-list {
    margin: 0;

    padding: 0;

    list-style: none;
}

.recycling-list li {
    position: relative;

    margin-bottom: 10px;

    padding-left: 21px;

    color: var(--text-soft);

    font-size: .9rem;
}

.recycling-list li::before {
    content: '✓';

    position: absolute;

    left: 0;

    color: var(--secondary);

    font-weight: 800;
}


/* =========================================================
   50. MEDIO AMBIENTE - ACCIONES
========================================================= */

.environment-actions {
    background: var(--light);
}

.environment-action-card {
    height: 100%;

    display: flex;

    gap: 22px;

    padding: 32px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    box-shadow:
        0 8px 25px rgba(15, 23, 42, .045);
}

.environment-action-icon {
    width: 60px;
    height: 60px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        linear-gradient(135deg,
            var(--primary),
            var(--primary-light));

    color: var(--white);

    font-size: 1.5rem;
}

.environment-action-card h4 {
    margin-bottom: 12px;

    font-size: 1.1rem;
}

.environment-action-card p {
    margin: 0;

    font-size: .9rem;

    line-height: 1.75;
}


/* =========================================================
   51. CTA CULTURA Y RESPONSABILIDAD
========================================================= */

.responsibility-cta {
    position: relative;

    padding: 100px 0;

    background:
        linear-gradient(135deg,
            var(--primary-dark),
            var(--primary) 58%,
            #087945);

    overflow: hidden;
}

.responsibility-cta::before {
    content: '';

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    top: -250px;

    border-radius: 50%;

    background: rgba(141, 198, 63, .12);
}

.responsibility-cta .container {
    position: relative;

    z-index: 2;
}

.responsibility-cta-content {
    max-width: 800px;

    margin: 0 auto;

    text-align: center;
}

.responsibility-cta-icon {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 24px;

    border: 1px solid rgba(255, 255, 255, .15);

    border-radius: 14px;

    background: rgba(255, 255, 255, .08);

    color: var(--secondary);

    font-size: 1.55rem;
}

.responsibility-cta h2 {
    margin-bottom: 22px;

    color: var(--white);

    font-size: clamp(2rem, 4vw, 3rem);
}

.responsibility-cta p {
    max-width: 680px;

    margin: 0 auto;

    color: rgba(255, 255, 255, .75);

    line-height: 1.85;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .safe-image-wrapper,
    .environment-image-wrapper,
    .safe-ethics-image-wrapper {
        max-width: 700px;

        margin: 0 auto;
    }

    .safe-image,
    .environment-image,
    .safe-ethics-image {
        height: 420px;
    }

    .safe-intro-content,
    .environment-intro-content {
        max-width: 100%;

        padding-left: 0;
    }

    .responsibility-cta {
        padding: 85px 0;
    }

}


@media (max-width: 767.98px) {

    .safe-stat:first-child::after {
        display: none;
    }

    .safe-stat:first-child {
        border-bottom:
            1px solid rgba(255, 255, 255, .12);
    }

    .safe-image,
    .environment-image,
    .safe-ethics-image {
        height: 350px;
    }

}


@media (max-width: 575.98px) {

    .safe-image-wrapper,
    .environment-image-wrapper {
        padding-right: 12px;
    }

    .safe-ethics-image-wrapper {
        padding-left: 12px;
    }

    .safe-image,
    .environment-image,
    .safe-ethics-image {
        height: 290px;
    }

    .safe-image-badge,
    .environment-image-badge,
    .safe-ethics-badge {
        position: relative;

        right: auto;
        left: auto;
        bottom: auto;

        width: calc(100% - 30px);

        margin: -30px auto 0;
    }

    .safe-stat {
        min-height: 170px;
    }

    .safe-card {
        min-height: auto;

        padding: 27px 23px;
    }

    .environment-area-card {
        min-height: 120px;

        flex-direction: row;

        justify-content: flex-start;

        text-align: left;
    }

    .recycling-card {
        padding: 24px 20px;
    }

    .recycling-image {
        height: 170px;
    }

    .environment-action-card {
        flex-direction: column;

        padding: 25px 22px;
    }

    .responsibility-cta {
        padding: 70px 0;
    }

}

/* =========================================================
   52. CONTACTO - PRINCIPAL
========================================================= */

.contact-main {
    position: relative;

    background: var(--white);

    overflow: hidden;
}


.contact-main::before {
    content: '';

    position: absolute;

    width: 450px;
    height: 450px;

    left: -280px;
    bottom: -250px;

    border-radius: 50%;

    background: rgba(141, 198, 63, .05);

    pointer-events: none;
}


.contact-main .container {
    position: relative;

    z-index: 2;
}


/* =========================================================
   INFORMACIÓN
========================================================= */

.contact-info {
    max-width: 540px;
}


.contact-info h2 {
    margin-bottom: 24px;

    font-size: clamp(2rem, 4vw, 3rem);

    line-height: 1.2;
}


.contact-info > p {
    margin-bottom: 18px;

    color: var(--text-soft);

    font-size: .98rem;

    line-height: 1.85;
}


/* Tarjeta destacada */

.contact-highlight {
    display: flex;

    align-items: flex-start;

    gap: 16px;

    margin-top: 30px;

    padding: 22px;

    background: var(--light);

    border: 1px solid var(--border);

    border-left: 3px solid var(--secondary);

    border-radius: 0 12px 12px 0;
}


.contact-highlight-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: rgba(0, 104, 56, .09);

    color: var(--primary);

    font-size: 1.2rem;
}


.contact-highlight h4 {
    margin-bottom: 5px;

    color: var(--dark);

    font-size: 1rem;
}


.contact-highlight p {
    margin: 0;

    color: var(--text-soft);

    font-size: .85rem;

    line-height: 1.6;
}


/* =========================================================
   53. CONTACTO - FORMULARIO
========================================================= */

.contact-form-card {
    padding: 38px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    box-shadow:
        0 18px 50px rgba(15, 23, 42, .09);
}


.contact-form-header {
    display: flex;

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

    gap: 20px;

    margin-bottom: 30px;
}


.contact-form-label {
    display: inline-block;

    margin-bottom: 7px;

    color: var(--primary);

    font-size: .75rem;

    font-weight: 700;

    letter-spacing: 1.6px;
}


.contact-form-header h3 {
    margin: 0;

    color: var(--dark);

    font-size: 1.5rem;
}


.contact-form-icon {
    width: 54px;
    height: 54px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-light)
        );

    color: var(--white);

    font-size: 1.35rem;
}


/* Campos */

.contact-field .form-label {
    margin-bottom: 8px;

    color: var(--dark-soft);

    font-size: .86rem;

    font-weight: 600;
}


.contact-input-wrapper {
    position: relative;
}


.contact-input-wrapper > i {
    position: absolute;

    z-index: 2;

    left: 16px;
    top: 50%;

    color: #9aa3ab;

    font-size: .95rem;

    transform: translateY(-50%);

    pointer-events: none;
}


.contact-input-wrapper .form-control {
    min-height: 50px;

    padding:
        12px
        15px
        12px
        44px;

    background: #fbfcfb;

    border: 1px solid var(--border);

    border-radius: 9px;

    color: var(--dark);

    font-size: .92rem;

    box-shadow: none;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background-color .25s ease;
}


.contact-input-wrapper .form-control:focus {
    background: var(--white);

    border-color: rgba(0, 104, 56, .45);

    box-shadow:
        0 0 0 4px rgba(0, 104, 56, .07);
}


/* Textarea */

.contact-textarea-wrapper > i {
    top: 18px;

    transform: none;
}


.contact-textarea-wrapper .form-control {
    min-height: 145px;

    resize: vertical;
}


/* Botón */

.contact-submit {
    width: 100%;

    min-height: 52px;

    margin-top: 5px;
}


/* =========================================================
   54. CONTACTO - MEDIOS
========================================================= */

.contact-methods {
    position: relative;

    background: var(--light);

    overflow: hidden;
}


.contact-method-card {
    height: 100%;

    min-height: 235px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 30px 25px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    box-shadow:
        0 8px 25px rgba(15, 23, 42, .045);

    text-align: center;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


.contact-method-card:hover {
    transform: translateY(-6px);

    border-color: rgba(0, 104, 56, .16);

    box-shadow:
        0 18px 40px rgba(15, 23, 42, .09);
}


.contact-method-icon {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 14px;

    background: rgba(0, 104, 56, .08);

    color: var(--primary);

    font-size: 1.5rem;

    transition:
        background-color .3s ease,
        color .3s ease,
        transform .3s ease;
}


.contact-method-card:hover .contact-method-icon {
    background: var(--primary);

    color: var(--white);

    transform: translateY(-3px);
}


.contact-method-card h4 {
    margin-bottom: 10px;

    color: var(--dark);

    font-size: 1.08rem;
}


.contact-method-card p {
    margin: 0;

    color: var(--text-soft);

    font-size: .9rem;

    line-height: 1.65;
}


/* =========================================================
   55. CONTACTO - CTA
========================================================= */

.contact-cta {
    position: relative;

    padding: 100px 0;

    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary) 58%,
            #087945
        );

    overflow: hidden;
}


.contact-cta::before {
    content: '';

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    top: -250px;

    border-radius: 50%;

    background: rgba(141, 198, 63, .12);
}


.contact-cta .container {
    position: relative;

    z-index: 2;
}


.contact-cta-content {
    max-width: 800px;

    margin: 0 auto;

    text-align: center;
}


.contact-cta-icon {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin:
        0
        auto
        24px;

    border: 1px solid rgba(255, 255, 255, .15);

    border-radius: 14px;

    background: rgba(255, 255, 255, .08);

    color: var(--secondary);

    font-size: 1.55rem;
}


.contact-cta h2 {
    margin-bottom: 22px;

    color: var(--white);

    font-size: clamp(2rem, 4vw, 3rem);
}


.contact-cta p {
    max-width: 680px;

    margin: 0 auto;

    color: rgba(255, 255, 255, .75);

    font-size: 1rem;

    line-height: 1.85;
}


/* =========================================================
   CONTACTO - RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .contact-info {
        max-width: 100%;
    }


    .contact-form-card {
        padding: 32px;
    }


    .contact-cta {
        padding: 85px 0;
    }

}


@media (max-width: 767.98px) {

    .contact-form-card {
        padding: 28px;
    }


    .contact-method-card {
        min-height: 210px;
    }

}


@media (max-width: 575.98px) {

    .contact-form-card {
        padding: 24px 20px;

        border-radius: 14px;
    }


    .contact-form-header {
        align-items: flex-start;
    }


    .contact-form-icon {
        width: 48px;
        height: 48px;

        font-size: 1.15rem;
    }


    .contact-highlight {
        padding: 18px;
    }


    .contact-method-card {
        min-height: 175px;

        flex-direction: row;

        justify-content: flex-start;

        gap: 18px;

        padding: 22px;

        text-align: left;
    }


    .contact-method-icon {
        width: 54px;
        height: 54px;

        flex-shrink: 0;

        margin-bottom: 0;

        font-size: 1.3rem;
    }


    .contact-cta {
        padding: 70px 0;
    }

}