@charset "utf-8";


.figtree-font {
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;

    --color-verde-claro: #b5da51;
    --color-verde-logo: #86a929;
    --color-naranja-logo: #ef7d00;
    --color-oscuro-logo: #557b20;
    --color-oscuro-texto: #202e0c;


    min-height: 100%;
    /*background:#ffffff;*/
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-color: var(--color-oscuro-logo) var(--color-oscuro-texto);
    scrollbar-width: thin;
    /* O 'auto', pero 'thin' suele quedar más elegante */
    scroll-behavior: smooth;

    font-size: 16px;

    /* font-size: clamp(14px, 1.5vw, 18px); */

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;

}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;

    font-weight: 400;



    line-height: 1.5;

    background-color: transparent;



    /* background-color: #fff; */
    /* -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: auto; */
    /* -webkit-font-smoothing: subpixel-antialiased; */
}

body.no-scroll {
    overflow: hidden;
    height: 100dvh;
    position: fixed;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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


/* Scrollbars WebKit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--color-oscuro-texto);
    border-radius: 6px;
    /* Redondeamos un poquito */
}

::-webkit-scrollbar-thumb {
    background: var(--color-oscuro-logo);
    border-radius: 6px;
    /* Igual que el track */
    border: 2px solid var(--color-oscuro-texto);
    /* Opcional: le da un margen interno al thumb */
}

/* Hover en el thumb */
::-webkit-scrollbar-thumb:hover {
    background: lighten(var(--color-oscuro-logo), 10%);
    /* Si usás preprocesador como Sass */
    /* Si estás en CSS puro: */
    background: #666;
    /* Elegí un color un poquito más claro */
}

/* Opcional: esquina entre scrolls */
::-webkit-scrollbar-corner {
    background: var(--color-oscuro-texto);
}


.imagenPerfil {
    position: fixed;
    width: 500px;
    aspect-ratio: 2 / 1;
    left: -600px;


}


h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 900;
    margin-top: 0;
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1em;
    max-width: 65ch;
    /* Ideal para lectura cómoda */
}

a {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

a:hover {
    color: #0070f3;
    /* Azul suavecito en hover */
}

.todo {
    width: 100%;
}

.whiteBackground {
    background-color: #f7f7f7;
    position: relative;
    z-index: 3;
}


.mainHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.0)); */
    /* backdrop-filter: blur(10px); */
    z-index: 900;

    display: flex;

    justify-content: space-between;
    align-items: center;
    padding: 0 20px;

}


@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popAndRotate {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes popAndRotateReverse {
    0% {
        transform: scale(1) rotate(45deg);
    }

    50% {
        transform: scale(1.2) rotate(10deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}


.mainMenu {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s ease-out forwards;

}

@media (max-width: 950px) {
    .mainMenu {
        display: none;
    }
}

.contenedorBotonMenu {
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none;

    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: var(--delay);
}

.contenedorBotonMenu:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

.contenedorBotonMenu a {
    text-decoration: none;
    color: #ffffff;
}



.botonMenu {

    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 0.85rem;
    text-decoration: none;
    letter-spacing: .1rem;

    transition: all 0.2s;
    margin-bottom: 0px;

    background: linear-gradient(90deg, var(--color-naranja-logo) 50%, #ffffff 50%);
    background-size: 200%;
    background-position: right;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.4s ease;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 500;
    /* O 500 si querés más presencia */

}



.botonMenuActivo {

    background: linear-gradient(90deg, var(--color-naranja-logo) 50%, var(--color-verde-logo) 50%);
    background-size: 200%;
    background-position: right;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.contenedorBotonMenu:hover .botonMenu {
    /* color: var(--color-naranja-logo); */

    background-position: left;

}

.botonInicio {
    --delay: 0.2s;
}

.botonNosotros {
    --delay: 0.4s;
}

.botonServicios {
    --delay: 0.6s;
}

.botonApp {
    --delay: 0.8s;
}

.botonNovedades {
    --delay: 1s;
}

.botonContacto {
    --delay: 1.2s;
}




/* Botón hamburguesa */
.mobileMenuButton {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;


}

.mobileMenuButton.open {
    animation: popAndRotate 0.4s forwards ease;
}

/* Al cerrar */
.mobileMenuButton.closing {
    animation: popAndRotateReverse 0.4s forwards ease;
}

.mobileMenuButton .line {
    width: 20px;
    height: 2px;
    background-color: var(--color-verde-logo);
    border-radius: 5px;
    transition: all 0.4s ease;
    transform-origin: center;
}





/* Animación a X */
.mobileMenuButton.active .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    width: 24px;
}

.mobileMenuButton.active .line:nth-child(2) {
    opacity: 0;
}

.mobileMenuButton.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    width: 24px;
}


.intranetButton {
    display: inline-block;
    padding: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 10px;

    border-radius: 4px;
    position: fixed;

    z-index: 1001;
    right: 60px;
    top: 17px;

    background-color: var(--color-oscuro-texto);
    color: var(--color-verde-claro);
    text-decoration: none;
    transition: all 0.3s ease;
}

.intranetButton:Hover {
    background-color: var(--color-verde-claro);
    color: var(--color-oscuro-texto);
}


/* Menú Mobile */
.mobileMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.5s ease;
    z-index: 1000;

    backdrop-filter: blur(10px);
}

/* Mostrar el menú */
.mobileMenu.active {
    transform: translateY(0);
    opacity: 1;
}

/* Opcional: Mejorar los botones dentro del menú */
.mobileMenu .contenedorBotonMenu a {
    text-decoration: none;
    color: white;
    font-size: 2rem;
}

.mobileMenu .contenedorBotonMenu a:hover {
    color: var(--color-naranja-logo);
}

.mobileMenuLogo {
    background-image: url('img/logos/logoAST_web.svg');
    aspect-ratio: 4 / 2;
    width: 90%;
    max-width: 200px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

/* .mobileMenu .contenedorBotonMenu {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease, transform 0.4s ease;
    transition-delay: calc(0.1s * var(--i)), 0s;
}

.mobileMenu.active .contenedorBotonMenu {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(0.1s * var(--i));
} */


.mobileMenu .contenedorBotonMenu {
    opacity: 0;

}

.mobileMenu.active .contenedorBotonMenu {
    opacity: 1;
    transform: translateY(0);
}


.botonWhatsapp {
    width: 50px;
    height: 50px;
    background-color: var(--color-oscuro-logo);
    background-color: rgba(0, 0, 0, 0.3);
    background-image: url(img/svg/icono_whatsapp_blanco.svg);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 50%;
    bottom: 10px;
    right: 10px;
    position: fixed;

    /* box-shadow: 10px 10px 13px -6px rgba(0, 0, 0, 0.19); */

    transition: all 0.2s ease-out;
    z-index: 900;
    cursor: pointer;

    /* opacity: 0.8; */

    backdrop-filter: blur(5px);
}

.botonWhatsapp:Hover {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--color-verde-logo);

    box-shadow: 10px 10px 13px -6px rgba(0, 0, 0, 0.30);
}


.blackGradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    background: linear-gradient(to bottom, rgb(12, 10, 8) 0%, rgba(12, 10, 8, 0.6) 50%, rgba(12, 10, 8, 0.0) 100%);
    z-index: 99;

    transition: height 0.3s ease, opacity 0.3s ease;


    /* Para Safari */
}

.blackGradient.blur {
    background: rgba(12, 10, 8, 0.7);
    /* Fondo sólido semi-transparente */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


.topHeader .blackGradient {
    height: 80px;
}


.mainLogo {
    background-image: url('img/logos/logoAST_web.svg');
    aspect-ratio: 4 / 2;
    width: 150px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.containerHero {
    position: relative;
    width: 100%;
    min-height: 100vh;

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

.containerHeroSeccion {
    position: relative;
    width: 100%;
    min-height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

    background-color: rgba(87, 124, 0, 0.377);
    backdrop-filter: blur(5px);
    z-index: 2;
}


.containerHero .blackGradient,
.containerHeroSeccion .blackGradient {
    height: 200px;
    position: fixed;
}

.canvas {
    image-rendering: optimizeSpeed;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -o-crisp-edges;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}


.pixelada,
.normal {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* object-fit: cover; */
    z-index: 1;
    will-change: transform;
    /* Mejora el rendimiento en scroll */
    pointer-events: none;
    /* Para que no tapen clics */
}


.normal {
    /* background-image: url('img/hero.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; */
    object-fit: cover;
    object-position: center center;
    display: block;
}

.pixelada {
    /* background-image: url('img/hero.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; */

    object-fit: cover;
    object-position: center center;
    display: block;

    /* filter: brightness(1) contrast(.9) saturate(.9); */
}


.normal {
    z-index: 2;
    pointer-events: none;

    --x: 50%;
    --y: 50%;



    /* mask-image:
        radial-gradient(circle 450px at var(--x) var(--y), white 0%, rgba(255, 255, 255, .5) 20%, transparent 80%),
        linear-gradient(90deg, transparent 40%, white 80%); */


    mask-image:
        radial-gradient(circle farthest-side at var(--x) var(--y), white 0%, rgba(255, 255, 255, .5) 40%, transparent 80%);



    mask-composite: add;
    mask-repeat: no-repeat;
    mask-size: cover;

    transition: mask-image 1s;

}

.heroContent {

    margin: 10px;

    z-index: 6;



    color: #ffffff;

    display: flex;
    gap: 40px;
    justify-items: center;

    align-items: center;


    padding-top: 80px;
    padding-bottom: 30px;


}

.heroContentSection {
    margin: 20px;

    z-index: 6;



    color: #ffffff;

    display: flex;
    gap: 40px;
    justify-items: center;

    align-items: center;


    padding-top: 5px;
    padding-bottom: 30px;
}



.heroText {
    width: 50%;
    max-width: 420px;
    font-size: 2.5rem;
    line-height: 2.7rem;

    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;

    text-align: right;
}

.heroText div {
    white-space: pre;
    /* mantiene espacios y saltos de línea */
    /* font-size: 2rem; */
    display: block;
}

.heroText span {
    display: inline-block;
}



.heroTextSection {
    font-size: 2.5rem;
    line-height: 2.7rem;

    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;

}



.heroAppImage {

    width: 50%;
    position: relative;

}


@media (max-width: 630px) {
    .heroContent {
        flex-direction: column;
        gap: 20px;

        padding-top: 0px;
        padding-bottom: 0px;
    }

    .heroText {
        width: 100%;
        max-width: none;
        font-size: 2rem;
        line-height: 2rem;
        padding: 10px;
        margin-top: 0px;

    }



    .heroText div {
        display: block;
        margin: 0 auto;
    }

    .heroAppImage {

        width: 70%;
        display: flex;
        justify-content: center;
        align-items: center;

    }

    .heroText {
        text-align: center;
    }

    .heroTextSection {
        text-align: center;
        font-size: 2rem;
        line-height: 2rem;
    }
}

@media (min-width: 631px) {
    .heroContent {
        gap: 40px;
    }

    .heroText {
        font-size: 2.5rem;
        line-height: 2.7rem;
    }

    .heroAppImage {

        width: 50%;

    }

    .heroTextSection {
        font-size: 2.5rem;
        line-height: 2.7rem;
    }



}

.heroAppLogo {
    position: absolute;
    background-image: url('img/logos/logoAST_blanco_texto-01.svg');
    aspect-ratio: 4 / 3;
    width: 35%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* PHONE */

.phone-wrapper {
    width: 100%;
    position: relative;
    perspective: 600px;
    perspective-origin: center;

    max-width: 300px;

    /* transform-style: preserve-3d; */

}


.phone-depth {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1 / 1.9;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(12px);

    z-index: 3;

    transform-style: preserve-3d;

    /* transform: translateZ(-50px); */
    /* Más Z negativo */

    transition: transform 0.3s ease;

    opacity: 0;
}

.phone {
    width: 100%;
    top: 0;
    left: 0;
    aspect-ratio: 1 / 1.9;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 4;
    transform-style: preserve-3d;

    opacity: 0;


    transition: transform 0.3s ease;

}




@keyframes bounce {
    0% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(1.4);
    }

    100% {
        transform: scaleY(0.8);
    }
}

.phone-content {

    height: 100%;

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

    align-content: space-between;

    gap: 20px;
    padding: 20px;
    color: white;
    font-family: sans-serif;
}

/* Barras Verticales */
.chart-bars-vertical {
    width: 90%;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 5px;
    /* height: 100px; */
    aspect-ratio: 3 / 1;
    align-items: flex-end;

}

.bar {
    max-width: 6px;
    background: #fff;
    /* border-radius: 5px; */
    transition: height 0.5s ease;
}

.chart-circular-big {
    position: relative;
}

/* Círculo Grande con Concentricos (SVG REAL) */
.chart-circular-big svg {
    width: 70%;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;

}

.chart-circular-big circle.concentric {
    fill: none;
    stroke: #fff;
    stroke-width: 4;
    stroke-dasharray: 200;
    /* 2 * PI * r (aprox) para r=50 */
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 1s ease;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}


/* Círculos Pequeños */
.circles-wrapper {
    display: flex;
    gap: 10px;
    /* Separación relativa */
    justify-content: center;
    align-items: center;
    /* margin-top: 10px; */
}

.circle-progress {
    width: 20%;
    /* ✅ Ahora es relativo al ancho del contenedor */
    aspect-ratio: 1 / 1;
    /* ✅ Esto asegura que siempre sea un círculo perfecto */
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.circle-progress:hover {
    transform: scale(1.1);
    /* box-shadow: 0 0 8px rgba(255, 255, 255, 0.6); */
}

.circle-progress svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

circle {
    fill: none;
    stroke-width: 10px;
}

circle.bg {
    stroke: rgba(255, 255, 255, 0.2);
}

circle.progress {
    stroke: white;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 1.5s ease-in-out;
}





/* Gráfico de Líneas */
.chart-lines {
    width: 100%;
    height: 100px;
}

.chart-lines svg {
    width: 100%;
    height: 100%;
}

/* Barras Horizontales */
.chart-bars-horizontal {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.h-bar {
    height: 6px;
    background: #fff;
    /* border-radius: 4px; */
    width: 0%;
    transition: width 1s ease;
}


/* END PHONE */

.word {
    white-space: nowrap;
    display: inline-block;
}

.char {
    display: inline-block;
    /* SUPER importante para que transform funcione en spans */
    transform: translateY(20px);
    opacity: 0;
}

/* HOME */


.gradientBar {
    width: 100%;
    height: 25px;

    background: repeating-linear-gradient(90deg,
            #89522a 0%,
            #86a929 33%,
            #f08300 66%,
            #89522a 100%);
    background-size: 200% 100%;
    background-repeat: repeat;

    animation: moveGradient 8s linear infinite;
}

.gradientBarSpace {
    margin-top: 20px;
    margin-bottom: 20px;
}

.gradientBarMini {
    height: 10px;
    border-radius: 8px;
}

.gradientBarHeader {
    width: 100%;
    height: 4px;

    background: repeating-linear-gradient(90deg,
            #89522a 0%,
            #86a929 33%,
            #f08300 66%,
            #89522a 100%);
    background-size: 200% 100%;
    background-repeat: repeat;

    animation: moveGradient 8s linear infinite;

    position: fixed;
    top: 60px;
    z-index: 10;
    display: none;
}

@keyframes moveGradient {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 0%;
    }
}


.contentBlock {

    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;

    color: #3a3a3a;
}

.blockTitle {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--color-verde-logo);
    margin-bottom: 10px;
}

.blockSubtitle {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-oscuro-logo);
    margin-bottom: 10px;
}

.homeText {
    padding-top: 60px;
    padding-bottom: 100px;
}

.orange {
    color: var(--color-naranja-logo);
}





.twoColumns {
    column-count: 2;
    /* Decís: quiero 2 columnas */
    column-gap: 2rem;
    /* Espaciado entre columnas */
    column-width: 300px;
    /* Cada columna intenta ser mínimo 300px */

    text-align: left;
    text-wrap: pretty;
    font-size: 1.1rem;
}

.middleBackground {
    width: 100%;
    background-image: url('img/middle.webp');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    background-color: rgba(32, 18, 8, 0.4);
    /* capa negra semi */
    background-blend-mode: overlay;
    /* magia negra */

    position: relative;

    margin-top: -70px;

    margin-bottom: 0px;

    padding-top: 100px;
    padding-bottom: 100px;
    /* espacio para la curva */
}

.whiteCurve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    /* altura de la curva */
    z-index: 1;
}

.whiteCurve svg {
    width: 100%;
    height: 100%;
    display: block;
}

.whiteCurve2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    /* altura de la curva */
    z-index: 1;
}

.whiteCurve2 svg {
    width: 100%;
    height: 100%;
    display: block;
    transform: rotate(180deg);
}

.sectionWhite {
    background-color: #f7f7f7;
    position: relative;
    z-index: 2;
    margin-top: 0px;
    min-height: 70dvh;

}

.sectionWhiteNoTop {
    background-color: #f7f7f7;
    position: relative;
    z-index: 2;
    padding-top: 90px;
    min-height: 70dvh;

}





.whiteCurveTop {
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    height: 150px;
    /* altura de la curva */
    z-index: 3;
}

.whiteCurveTop svg {
    width: 100%;
    height: 100%;
    display: block;
    transform: rotate(180deg);
}


.middleContent {
    min-height: 400px;
}




.servicesAreasGraph {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    height: 420px;
    /* overflow: hidden; */
    margin-top: 40px;
}

.serviceGraphItem {
    position: absolute;
    background: white;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.2rem;
    z-index: 2;
    color: #202e0c;
}

.servicesGraphLogo {
    position: absolute;
    width: 250px;

    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    aspect-ratio: 7 / 2;
    background-image: url('img/logos/logoAST_normal-01.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;


}



/* Posiciones */
.servicio-asesoramiento {
    top: 10px;
    left: 12%;
}

.servicio-agropecuario {
    top: 10px;
    right: 10%;
}

.servicio-logistica {
    bottom: 10px;
    left: 12%;
}

.servicio-financiero {
    bottom: 10px;
    right: 12%;
}

/* SVG Flechas */
.svg-flechas {
    width: 100%;
    height: auto;
    max-width: 400px;
    /* Opcional, para que no explote */
    display: block;
    /* Para evitar margenes raros */

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

/* Responsive */
@media (max-width: 550px) {
    .servicesAreasGraph {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
    }

    .serviceGraphItem,
    .servicesGraphLogo {
        position: static;
        margin: 20px 0;
        transform: none;
    }

    .svg-flechas {
        display: none;
    }
}

.whiteText {
    color: #ffffff;
}

.textShadow {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.textCenter {
    text-align: center;
}



.ecosistemGraph,
.ecosistemGraphSection {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 4 / 2.3;
    overflow: hidden;
    margin-top: 20px;
    padding-bottom: 40px;
}

.ecosistemGraphSection {
    margin-top: 10px;
}


.ecosistemGraph {
    color: #ffffff;
}

.ecosistemGraphSection {
    color: #ccc;
    transition: all 0.3s ease;
}

.ecosistemGraphSection:hover {
    color: var(--color-verde-logo);

}



.ecosistemCircle {
    position: absolute;
    top: 50%;
    left: calc(50% - 20px);
    transform: translate(-50%, -50%);
    width: 400px;

    aspect-ratio: 1 / 1;
    background-image: url('img/svg/circulo_ecosistema_8.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 2;
    margin: 20px;


}

.ecosistemItem {
    position: absolute;
    color: #fff;
}

.ecosistemItem:hover {
    transform: scale(1.05);
    transition: all 0.3s ease;
    color: var(--color-verde-claro);

}

.ecosistemGraphSection .ecosistemItem {
    color: #666;
}

.ecosistemGraphSection .ecosistemItem:hover {
    color: var(--color-verde-logo)
}

.ecosistemItem {
    text-decoration: none;
    transition: all 0.3s ease;
}

.ecosistemItem * {
    text-decoration: none;
}

.ecosistemItemTitle {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
}

.ecosistemItemTitleIcon {
    width: 50px;
    height: 50px;
    /* aspect-ratio: 1 / 1; */


    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 50px;
}

.ecosistemItemTitleInfo {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.flexColumn {
    flex-direction: column;
    gap: 5px;
}

.flexEnd {
    justify-content: flex-end;
}

.flexColumn.flexEnd {
    justify-content: flex-end;
    align-items: flex-end;
}





.ecosistemItemTitleText {
    background-color: #fff;
    border-radius: 8px;
    padding: 5px 18px;
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 1.2rem;
    text-align: center;
    color: #321a03;

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
}

.ecosistemItem:hover .ecosistemItemTitleText {
    background-color: var(--color-verde-claro);
    color: var(--color-oscuro-texto);

}

.ecosistemGraphSection .ecosistemItemTitleText {
    color: #333;
}

.ecosistemGraphSection .ecosistemItem:hover .ecosistemItemTitleText {
    color: #fff;
    background-color: var(--color-verde-logo);
}

.ecosistemItemText {
    font-size: .80rem;
    line-height: .95rem;

}

.flexColumn .ecosistemItemText {
    padding-left: 15px;
    padding-right: 15px;
}



.flexEnd .ecosistemItemText li {
    text-align: right;
    direction: rtl;

    /* Alinea el texto a la derecha */
}


#presupuesto_financiero {
    top: 9%;
    left: 47.5%;
}

#insumos {
    top: 26%;
    left: 66%;
}

#siembra {
    top: 49%;
    left: 71%;
}

#cosecha {
    top: 72%;
    left: 66%;
}

#seguros {
    top: 89%;
    left: 47.5%;

}

#app {
    top: 72%;
    left: 9%;
}

#logistica {
    top: 49%;
    left: 12%;
}

#excedente_inversion {
    top: 22%;
    left: 11%;
}


.circleMapContainer {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    position: relative;
    margin-top: 40px;
    margin-bottom: 20px;
}

.contentricCircle {
    border: 3px solid #fff;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    mix-blend-mode: luminosity
}

.mapa {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    background-image: url(img/MAPA.jpg);
    background-size: contain;
    opacity: .2;
}

.concentricCircle1 {
    width: 20%;
    opacity: .21;

}

.concentricCircle2 {
    width: 40%;
    opacity: .17;
}

.concentricCircle3 {
    width: 60%;
    opacity: .13;
}


.concentricCircle4 {
    width: 80%;
    opacity: .09;
}


.concentricCircle5 {
    width: 100%;
    opacity: .05;
}

.locationCircle {
    width: 3%;
    aspect-ratio: 1 / 1;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;

    opacity: .6;
    transition: opacity 0.3s ease;
    cursor: default;
}

.locationCircle:hover {
    opacity: 1;
}

.locationCircleSmall {
    width: 2%;
    aspect-ratio: 1 / 1;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    opacity: .6;
    transition: opacity 0.3s ease;
    cursor: default;
}

.locationCircleSmall:hover {
    opacity: 1;
}

.locationCircleMackenna {
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.locationCircleSampacho {
    /* margin: auto; */
    top: 27%;
    left: 37.3%;
    right: 0;
    bottom: 0;
}

.locationCircleMoldes {
    /* margin: auto; */
    top: 37%;
    left: 42.1%;
    right: 0;
    bottom: 0;
}


.locationCircleLevalle {
    /* margin: auto; */
    top: 52%;
    left: 65%;
    right: 0;
    bottom: 0;
}


.locationCircleDelCampillo {
    /* margin: auto; */
    top: 67.3%;
    left: 45.3%;
    right: 0;
    bottom: 0;
}


.locationCircleVillaValeria {
    /* margin: auto; */
    top: 66.5%;
    left: 30.5%;
    right: 0;
    bottom: 0;
}


.locationCircleAlpaCorral {
    /* margin: auto; */
    top: 0%;
    left: 40%;
    right: 0;
    bottom: 0;
}


.locationCircleGigena {
    /* margin: auto; */
    top: 1.7%;
    left: 51%;
    right: 0;
    bottom: 0;
}


.locationCircleHolmberg {
    /* margin: auto; */
    top: 19.5%;
    left: 47.5%;
    right: 0;
    bottom: 0;
}


.locationCircleRioCuarto {
    /* margin: auto; */
    top: 15%;
    left: 50%;
    right: 0;
    bottom: 0;
}




.locationText {
    font-size: 14px;
    line-height: 14px;
    font-weight: bold;
    position: absolute;
    color: #fff;
    left: 180%;
    top: -50%;
    min-width: 80px
}

.locationTextRight {
    font-size: 14px;
    line-height: 14px;
    font-weight: bold;
    position: absolute;
    /* left: 0; */
    right: 180%;
    top: -50%;
    text-align: right;
    min-width: 80px
}

.locationTextSmall {
    font-size: 10px;
    line-height: 10px;
    margin-top: 30%;
}




@media (max-width: 1030px) {

    .ecosistemGraph,
    .ecosistemGraphSection {

        width: auto;
        aspect-ratio: auto;
        margin: 0 auto;
        margin-top: 20px;
        /* margin-bottom: 20px; */

        padding-top: 20px;
        padding-bottom: 40px;


        gap: 40px;

        display: grid;

        grid-template-columns: 1fr 1fr;




    }

    .ecosistemCircle {
        display: none;
    }

    .ecosistemItem {
        width: 100%;
        max-width: none;
        transform: none;
        position: relative;
        top: 0px !important;
        left: 0px !important;

        justify-content: flex-start;
        align-items: flex-start;
    }

    .ecosistemItem:hover {
        transform: none;
        transition: all 0.3s ease;
        color: var(--color-verde-claro);

    }

    .ecosistemItemTitleInfo {
        order: 2;
        flex-direction: column;
        gap: 10px;
    }

    .ecosistemItemTitleInfo .flexEnd {
        justify-content: flex-start;
        align-items: flex-start;

    }


    .ecosistemItemTitleInfo .flexColumn .flexEnd {
        justify-content: flex-start;
        align-items: flex-start;

    }

    .flexColumn.flexEnd {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .ecosistemItemTitleText {
        width: 100%;
        order: 1;
        flex: 1;
        flex-grow: 2;
    }

    .ecosistemItemText {
        text-align: left;
        order: 2;
    }




    .ecosistemItemTitleIcon {
        order: 1;
    }

    .ecosistemItemText {
        padding-left: 15px;
        font-size: 0.9rem;
        line-height: 1.1rem;
    }

    .flexEnd .ecosistemItemText li {
        text-align: left;
        direction: ltr;
        /* Alinea el texto a la izquierda */
    }





}

@media (max-width: 600px) {

    .ecosistemGraph,
    .ecosistemGraphSection {
        display: grid;

        grid-template-columns: 1fr;
    }
}



/* VIDEOBLOG */

.lightGreenBackground {
    background-color: #f6f9f1;

}

.videoBlogArea {
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;

    padding-bottom: 30px;
}

@media (max-width: 700px) {
    .videoBlogArea {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.videoBlogAreaHome {
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;

    margin-bottom: 30px;
}

@media (max-width: 700px) {
    .videoBlogAreaHome {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.videoBlogItem {
    position: relative;
    width: 100%;
    background-color: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
    padding: 20px 20px;

    text-decoration: none;
    transition: all 0.3s ease;
}

.videoBlogItem:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}


.videoBlogImage {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    filter: brightness(1);
    transition: all 0.3s ease;

    position: relative;
}

.videoBlogImage::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%),
            rgba(255, 255, 255, 0) 0px,
            rgba(0, 0, 0, 0.4) 500px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 12px;
}

.videoBlogItem:hover .videoBlogImage::after {
    opacity: 1;
}

.videoBlogTitle {

    font-size: 1.3rem;
    line-height: 1.3rem;
    font-weight: 400;
    color: var(--color-verde-logo);
    margin-top: 20px;
    transition: all 0.3s ease;
}

.videoBlogItem:hover .videoBlogTitle {
    color: var(--color-naranja-logo);
}

.videoBlogItem:hover .videoBlogImage {
    filter: brightness(1.2);

}

.buttonContainer {
    display: flex;
    justify-content: center;
    align-items: center;

}

.viewMoreButton {
    background-color: var(--color-verde-logo);
    color: #f6f9f1;
    padding: 6px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: .9rem;
    line-height: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    cursor: pointer;
}

.viewMoreButton:hover {
    background-color: var(--color-naranja-logo);
    color: #ffffff;
    transition: all 0.3s ease;
}


.depositImage {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    transition: all 0.3s ease;


    position: relative;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    margin-top: 40px;
    margin-bottom: 40px;
}


.playButton {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    pointer-events: none;
}

.playButton::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
    /* Para que se vea más centrado el triangulito */
}

.videoBlogItem:hover .playButton {
    background-color: rgba(255, 255, 255, 0.8);
    transform: translate(-50%, -50%) scale(1.2);
}

.videoBlogItem:hover .playButton::before {
    border-left-color: var(--color-verde-logo);
    /* El triangulito cambia de color */
}



/* APP BANNER HOME */

.appBannerContainer {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;


    padding: 20px;

    padding-bottom: 40px;
    padding-top: 60px;


}


.appBanner {

    position: relative;

    width: 100%;
    padding: 20px;
    background-color: #f6f9f1;
    border-radius: 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;

    background-image: url('img/mujer_campo_laptop_1800w.webp');
    background-size: cover;
    background-position: top left;
    background-repeat: no-repeat;

    background-color: rgba(32, 18, 8, 0.1);
    background-blend-mode: overlay;

    aspect-ratio: 3 / 1;

}

.appBannerButtons {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 20px;
    bottom: 10px;
}

.buttonAppStore {
    height: 40px;
    aspect-ratio: 235 / 80;
    background-image: url('img/boton_app_store.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    display: inline-block;
}

.buttonGooglePlay {
    height: 40px;
    aspect-ratio: 270 / 80;
    background-image: url('img/boton_google_play.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    display: inline-block;
}

.appHandPhoto {
    background-image: url('img/mano_app_800w.webp');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;

    aspect-ratio: 1.02 / 1;

    position: absolute;

    width: 40%;
    left: 32%;
    bottom: 0px;

}


.appBannerText {
    position: absolute;
    left: 20px;
    top: auto;
    text-align: left;
    color: #fff;
}

.appBannerTitle {
    font-size: 2.1rem;
    line-height: 2.1rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.appBannerSubtitle {
    font-size: 1.2rem;
    line-height: 1.4rem;
    font-weight: 400;
    margin-bottom: 10px;

}

.appBannerViewMore {
    font-size: .9rem;
    line-height: 1.1rem;
    font-weight: 800;
    background-color: var(--color-naranja-logo);
    color: #f6f9f1;
    padding: 6px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.appBannerViewMore:hover {
    background-color: #fff;
    color: var(--color-naranja-logo);
}


@media (max-width: 735px) {


    .appBanner {
        aspect-ratio: 4 / 2;
    }

    .appHandPhoto {
        width: 58%;
        left: 20px;
        right: auto;
    }

    .appBannerText {
        text-align: right;
        right: 20px;
        top: auto;
    }

    .appBannerTitle {
        font-size: 1.8rem;
        line-height: 1.8rem;
        font-weight: 900;
        margin-bottom: 10px;
    }

    .appBannerSubtitle {
        font-size: 1rem;
        line-height: 1.1rem;
        font-weight: 400;
        margin-bottom: 10px;

    }

    .appBannerButtons {
        left: 20px;
        right: auto;
    }

    .buttonAppStore {
        height: 30px;

    }

    .buttonGooglePlay {
        height: 30px;

    }
}

/* END APP BANNER HOME */



/* FOOTER */

.footerContainer {
    width: 100%;
    /* background-color: var(--color-oscuro-texto); */
    color: #fff;
    /* background-color: rgba(131, 70, 0, 0.5); */
    background-image: linear-gradient(to bottom, rgba(131, 70, 0, 0.5), rgba(0, 0, 0, 0.8));


    background-blend-mode: multiply;
    z-index: 3;

    min-height: 500px;


    position: relative;

    padding-top: 120px;

    /* margin-top: -30px; */

}


.footer {

    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;

}



.numbersScheme {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0px;
    flex-wrap: wrap;
    color: #fff;
    padding: 20px;
}

.numbersSchemeItem {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 330px;
    transition: all 0.3s ease;
}

.numbersSchemeItem:hover {
    transform: scale(1.05);

}


.numbersSchemeImage {
    width: 100%;
    aspect-ratio: 3 / 2;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 12px;
}

.numbersSchemeText {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;



}

.numbersSchemeText h2 {
    font-size: 1.7rem;
    line-height: 2rem;
    font-weight: 900;
    margin-bottom: 0px;
}

.numbersSchemeText p {
    font-size: 0.9rem;
    line-height: 1rem;
    font-weight: 400;
    margin-bottom: 0px;

    text-align: center;
}


.footerContactInfo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    color: #fff;
    padding: 20px;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 0px;
}

@media (max-width: 620px) {
    .footerContactInfo {
        flex-direction: column;
        gap: 20px;
    }
}

.footerCredits {
    text-align: center;
    text-decoration: none;
    font-size: .8rem;
    line-height: 1.2rem;
}

.footerCredits a {
    text-decoration: none;
    font-weight: 800;
}

.footerCredits a:hover {
    color: var(--color-naranja-logo);
}


.footerSocialArea {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.footerSocialTitle {
    font-size: 1.2rem;
    line-height: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0px;
}

.socialItem {
    width: 30px;
    height: 30px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

.socialItem:hover {
    transform: scale(1.2);

}



.sectionContent {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0px 40px;
    color: #222;
    padding-top: 20px;
}

.sectionContentFull {
    max-width: 1600px;
}

.sectionTitle {
    color: var(--color-verde-logo);
    font-size: 2rem;
    line-height: 2.2rem;
    font-weight: 300;
    margin-bottom: 40px;

    display: flex;
    justify-content: flex-start;
    align-items: stretch;

    gap: 15px;
}

.error404 {
    color: var(--color-verde-logo);
    font-size: 3rem;
    line-height: 2.2rem;
    font-weight: 300;
    margin-bottom: 40px;

    text-align: center;


    margin-top: 100px;
}

.error404text {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6rem;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
}

.sectionTitleIcon {
    width: 70px;
    /* aspect-ratio: 1 / 1; */
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    flex-shrink: 0;

}

.sectionTitleText {
    flex-grow: 1;
    flex-shrink: 1;
    /* padding-top: .5rem; */
    /* max-width: 600px; */
    text-wrap: pretty;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: space-between;
}

.sectionSubtitle {

    font-size: 1.4rem;
    line-height: 1.4rem;
    font-weight: 300;
    /* margin-bottom: 10px; */
    color: #666;
}


@media (max-width: 620px) {
    .sectionTitle {
        font-size: 1.5rem;
        line-height: 1.7rem;

    }

    .sectionTitleIcon {
        width: 50px;
    }
}


.appMiddle {

    width: 100%;
    padding: 40px;
    /* max-width: 1200px; */
    max-width: 1600px;

    margin: 0 auto;



    margin-top: 60px;


    display: grid;
    grid-template-columns: 2fr 5fr;
    gap: 40px;
}

.appMiddleText {

    font-size: 1.3rem;
    line-height: 2rem;
    /* max-width: 450px; */
    font-weight: 300;

    color: #3a3a3a;

    /* padding-left: 40px; */
}

.appMiddleText h1 {
    font-size: 1.8rem;
    line-height: 2rem;
    font-weight: 900;
    margin-bottom: 10px;

    text-wrap: pretty;
}

.appMiddleImage {
    width: 100%;
    aspect-ratio: 4 / 2;
    margin: 0 auto;

    /* max-width: 1250px; */

    border-radius: 8px;


    background-image: url('img/mujer_campo_laptop_1800w.webp');
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;

    position: relative;

}


.appHandBigImage {

    aspect-ratio: 1.02 / 1;

    position: absolute;

    width: 56%;
    max-width: 800px;
    left: 10%;
    bottom: 0px;

    background-image: url('img/mano_app_800w_mask.webp');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}



.videoAppDemoWrapper {
    /* transform: rotate(-0.3deg); */
    /* Girás acá */
    position: absolute;
    width: 29.7%;
    top: 1.5%;
    left: 7.4%;
    background: none;
}

.videoAppDemoMask {
    position: absolute;

    aspect-ratio: 7.35 / 16;
    width: 100%;
    overflow: hidden;
    /* background-color: #557b20; */
    border-radius: 1rem;
}

.videoAppDemo {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: darken;
    transition: opacity 0.5s ease;

}

@media (max-width: 1400px) {
    .appMiddle {
        grid-template-columns: 2fr 3fr;
        gap: 20px;
    }

    .appMiddleText {
        font-size: 1.2em;
        line-height: 1.4rem;
    }

    .appMiddleText h1 {
        font-size: 1.5rem;
        line-height: 1.7rem;

    }

    .appMiddleImage {
        margin-top: 0px;
        aspect-ratio: 3 / 2;
    }


    .appHandBigImage {
        width: 80%;
        max-width: 800px;
        left: 2%;



    }

}

@media (max-width: 900px) {
    .appMiddle {
        grid-template-columns: 1fr;
        gap: 60px;
        margin-top: 0px;
    }

    .appMiddleText {
        font-size: 1.2em;
        line-height: 1.4rem;
    }

    .appMiddleText h1 {
        font-size: 1.5rem;
        line-height: 1.7rem;

    }

    .appMiddleImage {
        margin-top: 22dvw;
        aspect-ratio: 3 / 2;
    }


    .appHandBigImage {
        width: 98%;
        max-width: 800px;
        left: 2%;


    }

}


.appMiddleTitle {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    font-size: 1.3rem;
    line-height: 1.3rem;
    font-weight: 800;
}

.appMiddleTitleIcon {
    width: 60px;
    /* aspect-ratio: 1 / 1; */
    background-size: contain;
}



.appIcons {

    width: 100%;

    padding: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    max-width: 1200px;

    margin: 0 auto;

    /* top: 20%; */

    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;

    gap: 30px;


    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.2rem;

    align-items: start;

}

.appIconsItem {
    display: flex;

    flex-direction: column;

    text-align: center;
    gap: 20px;

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

    color: #666;

    transition: all 0.3s ease;
}

.appIconsItem:hover {
    transform: scale(1.05);
    color: var(--color-verde-logo);
}

.appIconsItemIcon {
    width: 80px;
    height: 60px;

    order: 1;

    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

.appIconsItemText {
    max-width: 185px;
    order: 2;
}


@media (max-width: 900px) {
    .appIcons {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding-top: 20px;
        padding-bottom: 20px;
    }


}

.appVideoContainer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    padding: 40px;
}

.videoBlogVideoContainer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    padding: 0px;
    margin-bottom: 40px;
}

.appVideo {

    width: 100%;

    aspect-ratio: 16 / 9;
    margin: 0 auto;
    display: inline-block;
}


.appDownloadArea {

    width: calc(100% - 80px);
    max-width: 370px;
    margin: 0 auto;


    padding: 20px;

    margin-top: 40px;

    padding-top: 20px;
    padding-bottom: 20px;

    border: 1px solid #999;

    border-radius: 8px;



}

.appDownloadAreaTitle {
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-weight: 900;
    color: var(--color-verde-logo);
    margin-bottom: 5px;
}

.appDownloadAreaSubtitle {
    font-size: 1.2rem;
    line-height: 1.2rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 10px;
}

.appDownloadButtons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.appDownloadButtons a {
    transition: all 0.3s ease;
    height: 45px;
}

.appDownloadButtons a:hover {
    transform: scale(1.05);

}



.twoColumnsGrid {

    display: grid;
    grid-template-columns: 4fr 3fr;

    gap: 40px;

    text-align: left;
    text-wrap: pretty;
    font-size: 1.1rem;

    /* align-items: stretch; */

    align-items: flex-start;

    padding-bottom: 20px;

}









.servicePhoto {

    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 8px;

}

.serviceItemsArea {
    width: 100%;
    /* max-width: 800px; */
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    color: #333;
    padding-top: 20px;
}

.serviceItemsArea1Column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    color: #333;
    padding-top: 20px;
}

.serviceItem {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px 20px;

    font-size: 1rem;
    line-height: 1.1rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.serviceItem:hover {
    transform: scale(1.05);

    /* color: var(--color-verde-logo); */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}



.serviceItem h3 {

    font-size: 1.2rem;
    line-height: 1.2rem;
    font-weight: 900;
    transition: all 0.3s ease;
}

.serviceItem:hover h3 {
    color: var(--color-verde-logo);
}


@media (max-width: 1280px) {
    .twoColumnsGrid {
        grid-template-columns: 1fr 1fr;
        align-items: flex-start;
    }


    .serviceItemsArea {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 1000px) {
    .twoColumnsGrid {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }


    .serviceItemsArea {
        grid-template-columns: 1fr;
    }

    .servicePhoto {
        aspect-ratio: 16 /9;

    }

}


.serviceLogosArea {
    display: grid;
    justify-content: center;
    align-items: center;
    place-items: center;
    gap: 30px;

    grid-template-columns: 1fr 1fr 1fr 1fr;

    padding: 20px;
    padding-top: 40px;
}



.serviceLogo {


    height: 65px;

    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

@media (max-width: 1000px) {
    .serviceLogosArea {
        grid-template-columns: 1fr 1fr;
    }


    .serviceLogo {


        height: 55px;

    }
}


.contactForm {

    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px 20px;

    font-size: 1rem;
    line-height: 1.1rem;
    font-weight: 400;
    transition: all 0.3s ease;

}


.contactFormTitle {
    font-size: 1.3rem;
    line-height: 1.5rem;
    font-weight: 400;
    color: var(--color-verde-logo);
    margin-bottom: 20px;
}

.inputContainer {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    outline: none;
    resize: vertical;
    font-family: inherit;
}

input:focus,
textarea:focus {
    border-color: var(--color-verde-logo);
}

.contactButtonContainer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}

.contactButton {
    background-color: var(--color-verde-logo);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.1rem;
    font-weight: 800;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: inherit;
    cursor: pointer;

    flex-shrink: 0;
}

.contactButton:hover {
    background-color: var(--color-naranja-logo);
    transform: scale(1.05);
}


.paginator {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    padding-bottom: 20px;

}

.paginator a {
    padding: 6px 10px;
    text-decoration: none;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

    color: #666;
    border-radius: 4px;
    transform: scale(1.05);

    transition: all 0.3s ease;
}

.paginator strong {
    padding: 6px 10px;
    background: #555;
    color: #fff;
    border-radius: 4px;
}

.paginator a:hover {
    background-color: var(--color-verde-logo);
    color: #fff;

}



.lds-dual-ring2 {
    display: inline-block;
    height: 15px;
    margin: 0px;
    padding: 0px;
    margin-left: 0px;
    padding-left: 25px;
    position: relative;
    color: var(--color-naranja-logo);
    font-weight: 400;
    font-size: 14px;

    display: none;
}

.lds-dual-ring2:before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    margin: 0px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 2px;
    border: 2px solid var(--color-naranja-logo);
    border-color: var(--color-naranja-logo) transparent var(--color-naranja-logo) transparent;
    animation: lds-dual-ring2 1s linear infinite;
}

@keyframes lds-dual-ring2 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.textoError {
    width: 100%;
    font-size: 16px;
    font-weight: 300;

    padding: 10px;
    padding-top: 14px;

    color: var(--color-verde-logo);

    text-align: right;


    display: none;
}