/* importacion de fuente */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


:root {
    /* --background-color: #eff4f7; */
    --background-color: #f1f1f1;
    /* --background-color: #ededed; */

    --color-primario: #006a6c;
    --color-secundario: #00696b;

    --text-color-one: black;
    --text-color-two: #202020;
    --text-color-subtitle: #006A6C;
    --text-font: "DM Sans", sans-serif;
    --color-cardsService: #5BAAAC;
}

/* Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
    min-height: 100%;
}

body {
    font-family: "DM Sans", sans-serif;
    background-color: var(--background-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1 0 auto;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.hr {
    margin: 0;
    opacity: .5;
    border: .5px solid;
}

/** Scroll Bar */
body::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #006a6caf;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

.container {
    /* width: 90%; */
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

/** HEADER STYLES */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.abajo {
    background-color: rgba(255, 255, 255, 1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

/** Estilos Logo Header */
.nav-logo {
    font-size: 1.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #00696b;

    /*EFECTO texto*/
    background: linear-gradient(to left,
            #00696b 10%, #fff 50%, #00696b 60%);
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: white;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 8s linear infinite;
}

@keyframes textclip {
    from {
        background-position: 200% center;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    color: #1c1c1c;
    transition: color .3s;
}

.nav-link:hover,
.nav-link.active {
    color: #02787c;
}

.nav-link:after {
    display: block;
    content: '';
    width: inherit;
    border-bottom: 1px solid #02787c;
    transform: scale(0);
    transition: transform 250ms ease-in-out;
}

.nav-link:hover:after {
    transform: scale(1);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #00696b;
    transition: all .3s ease;
}

/** ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide img {
    width: 100%;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
    gap: 4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/** Titulo principal */
.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
}

/** Contenedor de titulo y subtitulos con efectos */
.hero-titles-container {
    max-width: 800px;
    width: 800px;
}

/** Texto experiencia animado */
.experience-text {
    font-size: 48px;
    color: white;
    font-weight: bolder;
    text-align: center;
}

.counter {
    font-size: 48px;
    color: white;
    font-weight: bolder;
}

/** Subtitulos rotativos */
.subtitle-container {
    width: 100%;
    height: 30px;
    position: relative;
}

.subtitle {
    font-size: 2rem;
    color: white;
    text-align: center;
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all .5s ease;
}

.subtitle.active {
    opacity: 1;
    transform: translateY(0);
}

/** Botones del hero */
.buttons-hero-container {
    margin-top: 2.5rem;
}

.btn-hero {
    display: inline-block;
    border-radius: 4px;
    background-color: #006a6c;
    border: none;
    color: white;
    text-align: center;
    font-size: 14px;
    padding: 16px;
    width: 210px;
    margin: 5px;
    cursor: pointer;
    transition: all .5s;
}

.btn-hero span {
    display: inline-block;
    text-transform: uppercase;
    position: relative;
    transition: .5s;
}

.btn-hero span:after {
    content: '»';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -15px;
    transition: .5s;
}

.btn-hero:hover span {
    padding-right: 15px;
}

.btn-hero:hover span:after {
    opacity: 1;
    right: 0;
}

/** ========== SERVICIOS SECTION ========== */
.servicios-section {
    width: 100%;
    padding: 5rem 0;
}

.servicios-cardsContent {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 30px;
    color: var(--text-color-one);
}

.servicio-card {
    position: relative;
    width: 340px;
    height: 470px;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 15px;
}

.servicio-card .imgBx {
    position: relative;
    width: 100%;
    height: 260px;
    border-radius: 15px;
    z-index: 0;
}

/* Tag Servicios */
.servicio-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #f1542d;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: .5px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 260px;
    border-radius: 15px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s;
}

.slider-img.active {
    opacity: 1;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 4;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

/* .imgBx1 {
    background: url(/img/servicios/Bacheo\ en\ Barrio\ UNIMEV\,\ Guaymallén\ para\ Edemsa.jpeg);
}

.imgBx2 {
    background: url(/img/servicios/Rotura\ en\ Terminal\ de\ Ómnibus\ de\ Mendoza.jpeg);
}

.imgBx3 {
    background: url(img/servicios/Senda\ peatonal\ en\ bodegas\ Peñaflor\ .jpeg);
}

.imgBx4 {
    background: url(img/servicios/minicargadora.jpg);
} */

.servicio-card .imgBx::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 58%;
    width: 20px;
    height: 20px;
    background: transparent;
    border-radius: 50%;
    box-shadow: -10px 10px 0 var(--background-color);
}

.servicio-card .imgBx::after {
    content: '';
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 20px;
    height: 20px;
    background: transparent;
    border-radius: 50%;
    box-shadow: -10px 10px 0 var(--background-color);
    z-index: 2;
}

.servicio-card .content {
    position: relative;
    width: 100%;
    height: 200px;
    background: var(--color-cardsService);
    border-radius: 15px;
    border-top-left-radius: 0;
    padding: 0 28px;
}

.servicio-card .content h5 {
    margin-top: 15px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-color-two);
}

.servicio-card.servicio2 .content h5 {
    width: 100%;
}

.servicio-card .content ul {
    padding-top: 26px;
}

.servicio-card .content ul li {
    list-style: disc;
    color: #181818;
}

.servicio-card.servicio2 .content ul {
    padding-top: 20px;
}

.servicio-card .content .price {
    position: absolute;
    top: -80px;
    left: 0;
    height: 80px;
    width: 58%;
    background: var(--color-cardsService);
    border-top: 10px solid var(--background-color);
    border-right: 10px solid var(--background-color);
    border-top-right-radius: 25px;
}

.servicio-card .content .price::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background: transparent;
    border-radius: 50%;
    box-shadow: -10px -10px 0 var(--background-color);
}

.servicio-card .content .price::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -25px;
    width: 25px;
    height: 25px;
    background: transparent;
    border-radius: 50%;
    box-shadow: -10px 10px 0 var(--color-cardsService);
}

.servicio-card .content .price a {
    position: relative;
    background-color: white;
    padding: 10px 10px;
    margin: 15px 15px;
    display: block;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;

    color: #000;
    transition: all .2s;
}

.servicio-card .content .price a:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
}


/** ========== MATERIALES SECTION ========== */
/** maquinas viales */
.materiales-section {
    width: 100%;
    /* min-height: 100vh; */
}

.materiales-1,
.materiales-2 {
    padding: 5rem 0;
}

.section-titles-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 4rem;
}

.section-title {
    font-size: 28px;
}

.section-subtitle {
    font-size: 18px;
    color: #006A6C;
}

.maquinarias-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.maquinaria-card {
    width: 400px;
    height: 380px;
    filter: drop-shadow(6px 6px 10px rgba(0 0 0 / 25%));
    background-color: #fff;
    border-radius: 10px;
    padding: 1rem;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.maquinaria-card:hover {
    filter: drop-shadow(0 5px 10px rgba(0 0 0 / 50%));
}

.maq-card-img-container {
    width: 400px;
    height: 340px;
    overflow: hidden;
}

.maquinaria-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 9/16;
}

.maquinaria-card-title {
    font-size: 20px;
    font-weight: bolder;
    padding: 20px;
}

.maquinaria-card-open-info-btn {
    display: inline-block;
    border-radius: 4px;
    background-color: #006a6c;
    border: none;
    color: #fff;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    transition: all .2s;
}

.maquinaria-card-open-info-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
}

.maquinaria-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f2f2f2;
    transform: translateY(100%);
    transition: transform .3s ease-in-out;
}

.contenedor-de-p {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

.p-contenedora {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 0;
    text-align: start;
}

.p-texto {
    padding-left: 6px;
}


.maquinaria-card-content.show {
    transform: translateY(0);
}

.maquinaria-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.maquinaria-card-content hr {
    width: 100%;
    border: .5px solid #00696b;
}

.maquinaria-card-wapp-btn {
    position: absolute;
    bottom: 20px;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 500;
    background-color: transparent;
    color: #000;
    border: 1px solid black;
    border-radius: 5px;
    cursor: pointer;
    transition: all .2s;
}

.maquinaria-card-wapp-btn:hover {
    background-color: #006a6c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
}

.maquinaria-card-close-info-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all .3s;
}

.maquinaria-card-close-info-btn:hover {
    transform: rotate(90deg);
}

.maquinarias-cards .maquinaria-card:nth-child(2) .maquinaria-card-content ul div:nth-child(2) {
    height: 60px;
}

.maquinarias-cards:nth-child(1) ul div:nth-child(0) {
    height: 1px;
}

/** ========== MATERIALES SECTION ========== */
/** materiales y maquinas */
.materiales-maquinas-section {
    width: 100%;
    /* min-height: 100vh; */
    padding: 5rem 0;
}

.materiales-maquinas-cards {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 100px 50px;
    padding-top: 1.5rem;
}

.cardAlquiler {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 350px;
    height: 300px;
    background: #00A0A3;
    border-radius: 20px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
    transition: 0.5s;
}

.cardAlquiler:hover {
    height: 400px;
}

.imgBxAlquiler {
    position: absolute;
    top: 20px;
    width: 300px;
    height: 220px;
    background: #333;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.5s;
}

.cardAlquiler:hover .imgBxAlquiler {
    top: -100px;
    scale: 0.75;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.imgBxAlquiler img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.iconAlq {
    position: relative;
    top: 262px;
    z-index: 1;
    opacity: 1;
    transition: 1.2s;
}

.cardAlquiler:hover .iconAlq {
    opacity: 0;
    transition: 0.1s;
}

.contentAlquiler {
    position: absolute;
    top: 252px;
    width: 100%;
    padding: 0 30px;
    height: 35px;
    overflow: hidden;
    text-align: center;
    transition: 0.5s;
    color: var(--text-color-two);
}

.cardAlquiler:hover .contentAlquiler {
    top: 130px;
    height: 250px;
}

.contentAlquiler h5 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-color-two);
    padding-bottom: 32px;
}

.contentAlquiler li {
    list-style: disc;
    font-size: 1.05em;
    text-align: start;
    padding: 5px 0px;
}

.cardAlquiler:nth-child(1) .contentAlquiler li:nth-child(3),
.cardAlquiler:nth-child(4) .contentAlquiler li:nth-child(2) {
    list-style: none;
    font-weight: 500;
}

.contentAlquiler p {
    text-align: left;
    padding-top: 32px;
}

.contentAlquiler button {
    position: relative;
    top: 15px;
    display: inline-block;
    bottom: 20px;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 500;
    background-color: #fff;
    color: #000;
    border: 1px solid black;
    border-radius: 5px;
    z-index: 500;
    cursor: pointer;
    transition: all .2s;
}


/** ========== TRABAJOS REALIZADOS SECTION ========== */
.trabajos-section {
    width: 100%;
    max-height: 100vh;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.swiper-container {
    width: 100%;
    display: flex !important;
    justify-content: center;
}

.swiper-container .card-wrapper {
    max-width: 1100px;
    margin: 0 60px 35px;
    padding: 20px 10px;
    overflow: hidden;
}

.swiper-container .card-link {
    height: 390px;
    user-select: none;
    display: block;
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    cursor: grab;
    transition: .2s ease;
}

.card-link:active {
    cursor: grabbing;
}

.card-link:hover {
    border-color: var(--color-secundario);
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
}

.card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
    cursor: zoom-in;
}

.badge {
    color: #111;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 16px 0 18px;
    background: var(--color-cardsService);
    width: fit-content;
    border-radius: 50px;
}

.card-title {
    font-size: 1.19rem;
    color: #222;
    font-weight: 600;
}

.card-wrapper .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    opacity: 0.5;
    background: var(--color-primario);
}

.card-wrapper .swiper-pagination-bullet-active {
    opacity: 1;
}

.card-wrapper .swiper-slide-button {
    color: var(--color-primario);
    margin-top: -35px;
}

/** Modal para imagenes de trabajos realizados en grande */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.carousel-container {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.card {
    flex: 0 0 300px;
    margin-right: 20px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 16px;
}

.card-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}

.carousel-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}


/** ========== NOSOTROS SECTION ========== */
.nosotros-section {
    width: 100%;
    /* max-height: 100vh; */
    padding: 5rem 0;
}

.nosotros-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq,
.quienes-somos {
    flex: 1 1 300px;
}

.quienes-somos h3 {
    font-size: 2rem;
}

.quienes-somos p {
    text-align: justify;
    display: flex;
    flex-direction: column;
}

.quienes-somos p span {
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
}

.faq-separator {
    border: none;
    height: 2px;
    background-color: #808080;
    margin: 15px 0;
}

.faq-separator.active {
    background-color: #008688c4;
    transition: .3s;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.faq-question {
    background-color: #ddd;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .3s ease;
}

.faq-question:hover {
    background-color: #007577e5;
    color: #fff;
}

.faq-question.active {
    background-color: #008688d6;
    color: #fff;
}

.faq-answer {
    padding: 15px;
    display: none;
}

.quienes-somos {
    background-color: #dedede;
    padding: 20px;
    border-radius: 5px;
}

.quienes-somos h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.nosotros-mini-logo {
    width: 100px;
    /* height: 24px; */
}

/** ========== CONTACTO SECTION ========== */
.contacto-section {
    width: 100%;
    /* max-height: 100vh; */
    padding: 5rem 0;
}

.contact-cards-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.maps-container {
    /* width: 726px; */
    width: 100%;
    max-width: 900px;
    height: 441px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    background: #ddd;
    border-radius: 30px 0 0 30px;
}

.card-map {
    /* flex: 1 1 250px; */
    /* min-width: 250px; */
    /* max-width: 300px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.img-container iframe {
    width: 274px;
    height: 221px;
    border-radius: 20px;
}

.info-ubi-container {
    width: 240px;
    height: 172px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.info-ubi-container h5 {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    padding-bottom: 11px;
    text-decoration: underline;
    transition: .2s;
}

.info-ubi-container h5:hover {
    color: #006d6f;
    text-decoration: underline #006d6f;
}

.info-ubi-container p {
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    line-height: 18px;
}

.info-contact-container {
    width: 432px;
    height: 478px;
    gap: 5rem;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color-two);
    background: linear-gradient(#006A6C, #00A0A3);
}

.info-contact {
    padding-top: 27px;
    width: 329px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.direccion-container h5,
.email-container h5,
.horarios-container h5 {
    font-size: 19px;
    font-weight: 300;
    text-decoration: underline;
    color: #fff;
}

.direccion-container a,
.email-container a,
.horarios-container p {
    font-size: 18px;
    font-weight: 400;
    color: #ddd;
}

.direccion-container a:hover,
.email-container a:hover {
    text-decoration: underline #fff;
}

.icons-contact-container {
    display: flex;
    gap: 25px;
    /* padding-top: 8rem; */
}

.icons-contact-container a {
    transition: .25s;
}

.icons-contact-container a:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0px 6px 10px rgba(0, 0, 0, 0.3));
}


.icons-contact-container i {
    width: 64px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #006A6C;
    font-size: 40px;
}


/** ========== FOOTER SECTION ========== */
.footer-section {
    height: 120px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--background-color);
    border-top: 1px solid;
}

.logo-footer-container {
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}

.logo-footer-container img {
    width: 100px;
    border-radius: 50%;
    position: relative;
    top: -30px;
    background-color: var(--background-color);
    border: 1px solid;
}

.copy-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px;
    font-size: 15px;
    width: 100%;
    background-color: var(--background-color);
    color: var(--text-color-one);
    font-weight: 300;
}

.copy-footer .gccodedevs a {
    font-size: 18px;
    font-weight: 500;
    color: #858eea;
}

.copy-footer .gccodedevs a:hover {
    text-decoration: underline;
}


/** ===== boton whatsapp flotante ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
    z-index: 1000;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn i {
    font-size: 4rem;
    color: #25d366;
}

/** ===== Ventana Popup ===== */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    transition: opacity .3s ease, visibility .3s ease;
    z-index: 500;
}

.popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    max-width: 400px;
    max-height: 440px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    background-color: #eeeeee;
    padding: 20px;
    border-radius: 8px;
    text-align: justify;
}

.buttons-container {
    display: flex;
    justify-content: space-evenly;
    padding: 15px 0;
}

/** Boton aceptar de la promo popup */
.popup-accept-btn {
    padding: 12px 20px;
    border-radius: 6px;
    background-color: var(--text-color-subtitle);
    color: #fff;
    border: 0;
    font-weight: 600;
    cursor: pointer;
    transition: .15s ease;
}

.popup-accept-btn:hover {
    /* color: var(--text-color-subtitle); */
    background-color: #007d80;
}

/** Boton cancelar de la promo popup */
.popup-cancel-btn {
    padding: 12px 20px;
    border-radius: 6px;
    background-color: #ddd;
    border: 0;
    font-weight: 600;
    cursor: pointer;
    transition: .15s ease;
}

.popup-cancel-btn:hover {
    background-color: #cecece;
}


/** ========== Responsive ========== */
@media (max-width: 1280px) {
    .hero-slide img {
        height: 100%;
    }
}

@media screen and (max-width:768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background: #fff;
        flex-direction: column;
        padding: 80px 20px;
        transition: right .3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -8px);
    }

    .container {
        max-width: 750px;
    }

    .hero-slide {
        background-size: contain;
    }

    .hero-slide img {
        aspect-ratio: 9/16;
    }

    .hero-titles-container {
        width: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .experience-text,
    .counter {
        font-size: 30px;
    }

    .subtitle {
        font-size: 1rem;
    }

    .servicios-section {
        margin-bottom: 4rem;
    }

    /* contenedor de las cards de las maquinarias */
    .maquinarias-cards {
        flex-direction: row;
    }

    /* card de cada maquinaria */
    .maquinaria-card {
        width: 350px;
    }

    .maquinaria-card-img {
        width: 100%;
        object-fit: cover;
    }

    /* contenedor de la descripcion de cada maquinaria */
    .maquinaria-card .contenedor-de-p {
        padding: 0;
    }

    /* descripcion de cada maquinaria */
    .maquinaria-card .contenedor-de-p .p-contenedora {
        padding: 5px 0;
    }

    .nosotros-content {
        flex-direction: column;
        padding: 0 1rem;
    }

    .faq,
    .quienes-somos {
        flex: inherit;
    }

    /* trabajos realizados */
    .swiper-container {
        width: 100%;
        height: 100%;
    }

    .swiper-contaier .card-wrapper {
        margin: 0 10px 25px;
    }

    .swiper-container .swiper-slide-button {
        display: none;
    }

    .swiper-container .card-link {
        height: auto;
    }

    /* Contacto */
    .contact-section {
        padding: 0 2rem 7rem 2rem;
    }

    .contact-cards-container {
        display: flex;
        flex-wrap: wrap-reverse;
    }

    .maps-container {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        height: auto;
        margin: 0 20px 0 20px;
        padding: 20px;
    }

    .card-map {
        width: 90%;
        max-width: 400px;
        margin-bottom: 20px;
    }

    .info-contact-container {
        width: 380px;
        height: 400px;
    }

    /* Footer */
    /* .footer-section {
        height: auto;
        padding: 16px 0 0 0;
    } */

    /* .logo-footer-container {
        height: auto;
        gap: 1.5rem;
        padding-bottom: 0.5rem;
    } */

    /* .logo-footer-container img {
        width: 60px;
        top: -10px;
    } */

    /* .copy-footer {
        font-size: 13px;
        padding: 10px 8px;
        flex-direction: column;
        text-align: center;
    } */


}

@media screen and (max-width: 480px) {


    .maquinarias-cards {
        flex-direction: column;
    }
}