/*------------------------
	General
--------------------------*/

/* NEULIS SANS */
@import url("https://use.typekit.net/xvn5ozw.css");

/* INSTRUMENT SANS */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,   
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

:root {
    --header-height: 3.5rem;
    --primary-color: #4ba3b1;
    --black-color: #121212;
    --black-grad:rgba(0, 0, 0, 0.8);
    --blue-grad: linear-gradient(90deg, rgba(6,190,182,1) 0%, rgba(72,177,191,1) 100%);
    --white-color: #ededed;
    --grey-color: #505058;
    --title-font: "neulis-sans";
    --paragraph-font: "Instrument Sans";
    --font-size-h1: 4rem;
    --font-size-h2: 3rem;
    --font-size-h3: 1rem;
    --font-size-h4: 1.5rem;
    --font-size-h5: 1.5rem;
    --font-size-p: 1rem;
    --font-weight-thin: 100;
    --font-weight-regular: 500;
    --font-weight-bold: 700;
    --border-radius-general: 0.375rem;

    @media (max-width:1200px){
        --font-size-h1: 2.9rem;
        --font-size-h2: 2.4rem;
        --font-size-h3: 1rem;
        --font-size-h4: 1.3rem;
        --font-size-h5: 1.2rem;
        --font-size-p: 1rem;
    }

    @media (max-width:992px){
        --font-size-h1: 2.5rem;
        --font-size-h2: 2.4rem;
        --font-size-h3: 1rem;
        --font-size-h4: 1.1rem;
        --font-size-h5: 1rem;
        --font-size-p: 0.9rem;
    }

    @media (max-width:576px){
        --font-size-h1: 2.4rem;
        --font-size-h2: 2.4rem;
        --font-size-h3: 1rem;
        --font-size-h4: 1rem;
        --font-size-h5: 0.9rem;
        --font-size-p: 0.9rem;
    }

/*------------------------
	Base
--------------------------*/
*{
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

ul{
	list-style: none;

}

a{
	text-decoration: none;
}
    --z-tooltip: 10;
    --z-fixed: 100;
}

h1{
    font-size: var(--font-size-h1) !important;
    font-family: var(--title-font) !important;
    font-weight: 700 !important;
}

h2{
    font-size: var(--font-size-h2) !important;
    font-family: var(--title-font) !important;
    font-weight: 700 !important;
}

h3{
    font-size: var(--font-size-h3) !important;
    font-family: var(--paragraph-font) !important;
    font-weight: var(--font-weight-regular) !important;
}

h4{
    font-size: var(--font-size-h4) !important;
    font-family: var(--paragraph-font) !important;
    font-weight: var(--font-weight-regular) !important;
}

h5{
    font-size: var(--font-size-h5) !important;
    font-family: var(--paragraph-font) !important;
    font-weight: var(--font-weight-regular) !important;
}

p{
    font-size: var(--font-size-p) !important;
    font-family: var(--paragraph-font) !important;
    font-weight: var(--font-weight-regular) !important;
    line-height: 1.6 !important;
}

body {
    background-color: var(--white-color) !important;
}

section {
    width: 95%;
    margin: 0px auto !important;
}

.btn {
    font-family: var(--paragraph-font);
    padding: 10px 40px;
    border-radius: 180px;
}

.btn-white {
    background-color: var(--white-color);
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.btn-blue {
    background: -webkit-linear-gradient(45deg, #1dd1c9, #299aa9 80%);
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.btn-blue:hover {
    scale: 1.1;
}

.btn-white:hover {
    background: -webkit-linear-gradient(45deg, #1dd1c9, #299aa9 80%);
    color: var(--white-color);
}

@keyframes pulsebig {
    0% {
        scale: 1;
    }
    100% {
        scale: 1.1;
    }
}

@keyframes pulsesmall {
    0% {
        scale: 1;
    }
    100% {
        scale: 1.05;
    }
}

/* scroll animation */

@keyframes show {
	from {
		opacity: 0;
		scale: 25%;
	}

	to {
		opacity: 1;
		scale: 100%;
	}
}

section {
	view-timeline-name: --image;
	view-timeline-axis: block;

	animation-timeline: --image;
	animation-name: show;

	animation-range: entry 5% cover 20%;
	animation-fill-mode: both;
}


/*------------------------
	Header
--------------------------*/

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 999;
}

nav .logo-nav img {
    width: 160px;
    height: auto;
}

nav .menu-container {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
}

nav .menu-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: var(--primary-color);
    margin: 30px 0px; /* GAP ENTRE NAV Y HERO */
}

/* Href de scroll y subrayado en Nav */

nav .menu-nav .scroll-nav{
    text-decoration: none !important;
    color: var(--primary-color);
    position: relative;
}

nav .menu-nav .scroll-nav::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: -webkit-linear-gradient(45deg, #1dd1c9, #299aa9 80%);
    transition: width 0.3s ease;
}

nav .menu-nav .scroll-nav:hover::after {
    width: 100%;
}

nav .wpp-nav a {
    color: var(--primary-color);
}

nav .wpp-nav {
    background: -webkit-linear-gradient(45deg, #1dd1c9, #299aa9 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px;
    animation: pulsebig 0.7s infinite alternate ease-in-out;
    margin-left: 20px;
}

/* Hamburger styles */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Responsive styles */
@media (max-width: 930px) {

    nav {
        height: 100px;
    }

    .menu-container {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background-color: var(--white-color);
        width: 100%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 20px;
        z-index: 1000;
    }

    .menu-container.open {
        display: flex;
    }

    .menu-nav {
        flex-direction: column;
        gap: 20px;
    }

    .wpp-nav {
        justify-content: center;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}



/*------------------------
	Hero
--------------------------*/

.Hero-section {
    font-family: var(--paragraph-font);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80vh;
    border-radius: 10px;
    background-image: url(assets/imagenes/fondo-home.png);
    background-size:cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    overflow: visible;
}

.Hero-section:before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.Hero-section .Hero-1 {
    width: 50%;
    margin: 0px 50px !important;
}

.Hero-section .Hero-1 h1 {
    color: var(--white-color);
    text-shadow: -1px -1px 9px rgba(255,255,255,0.63);
}


.Hero-section .Hero-1 h1 span {
    background: -webkit-linear-gradient(45deg, #1dd1c9, #299aa9 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}


.Hero-section .Hero-1 p {
    color: var(--white-color);
    margin: 40px 0px;
    width: 70%;
    text-align: left;
}

.Hero-section .Hero-2 img {
    position: absolute;
    bottom: 100px;
    right: 100px;
    width: 120px;
    height: auto;
}

@media (max-width:886px) {
    .Hero-section .Hero-1 p {
        width: 90%;
    }
}

@media (max-width:776px) {
    .Hero-section .Hero-2 {
        display: none;
    }

    .Hero-section .Hero-1 {
        width: 90%;
        margin: 0px auto !important;
        align-items: center;
        text-align: center;
    }

    .Hero-section .Hero-1 p {
        width: 80%;
        text-align: center;
        margin: 20px auto;
        margin-bottom: 50px;
    }
}

@media (max-width:575px) {
    .Hero-section .Hero-1 {
        width: 100%;
    }

}

@media (max-width:575px) {
    .Hero-section .Hero-1 {
        width: 70%;
    }
}

/*------------------------
	Reasons section
--------------------------*/

.Reasons-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin: 0px auto !important;
    margin-bottom: 50px !important;
}

.Reasons-section .content h3{
    background: -webkit-linear-gradient(45deg, #1dd1c9, #299aa9 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.Reasons-section .content h2{
    background: -webkit-linear-gradient(45deg, #1dd1c9, #299aa9 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 5px 0px 10px 0px;
}   

.Reasons-section .content p {
    width: 70%;
    margin: 0px auto;   
    color: var(--grey-color);
}

.Reasons-section .cards {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 60px 0px;

}

.Reasons-section .cards .card{
    width: 330px;
    background-color: #cfdee3;
    padding: 40px 30px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.Reasons-section .cards .card:hover {
    scale: 1.05;
}


.Reasons-section .cards .card img {
    width: 100px;
    height: auto;
}

.Reasons-section .cards .card h5 {
    background: -webkit-linear-gradient(45deg, #1dd1c9, #299aa9 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: var(--font-weight-bold) !important;
    margin: 40px 0px 10px 0px
}

.Reasons-section .cards .card p {
    color: var(--grey-color);
}

@media (max-width: 1150px) {

    .Reasons-section .cards .card {
        width: max-content;
        max-width: 270px;
    }
} 

@media (max-width: 886px) {

    .Reasons-section .cards {
        flex-direction: column;
    }
    
    .Reasons-section .cards .card {
       width: 500px;
       max-width: none;
    }
} 

@media (max-width: 580px) {
    .Reasons-section .cards .card {
        width: 300px;
     }
}

@media (max-width: 375px) {
    .Reasons-section .cards .card {
        width: 250px;
     }
}

/*------------------------
	Beneficios section
--------------------------*/

.Beneficios-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 0px auto !important;
}

.Beneficios-section .header-beneficios {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
    width: 90%;
    margin: 0px auto;
}

.Beneficios-section .header-beneficios h2 {
    background: -webkit-linear-gradient(45deg, #1dd1c9, #299aa9 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.Beneficios-section .header-beneficios .line {
    width: 100%;
    border: 1px solid var(--primary-color);
    margin: 20px auto;
}

.Beneficios-section .header-beneficios p {
    color: var(--primary-color);
}

.Beneficios-section .cards-beneficios {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    width: 90%;
    margin: 0px 0px;
    margin-top: 50px;
}

.Beneficios-section .cards-beneficios .card-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Alinea el contenido al inicio */
    align-items: stretch; /* Asegura que las tarjetas ocupen la misma altura */
    width: 45%;
    margin: 0 auto;
    border-radius: 10px;
}

.Beneficios-section .cards-beneficios .card-container .card {
    flex-grow: 1; /* Permite que las tarjetas crezcan uniformemente */
    display: flex;
    flex-direction: column;
    justify-content: baseline; /* Alinea el contenido dentro de la tarjeta */
}

.Beneficios-section .cards-beneficios .card-container .title-card-1{
    background: -webkit-linear-gradient(45deg, #e5b3a9, #b1625e 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.Beneficios-section .cards-beneficios .card-container .card-1 {
    background-color: #eed5d0;
    padding: 20px;
    border-radius: 10px;
    margin-top: 25px;
    width: 100%;
}

.Beneficios-section .cards-beneficios .card-container .card-item {
    display: flex;
    flex-direction: row;
    justify-content: baseline;
    align-items: center;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.2s ease-in-out;
}

.Beneficios-section .cards-beneficios .card-container .card-1 .card-item:hover {
    background-color: #e0b4ab;
}

.Beneficios-section .cards-beneficios .card-container .card-2 .card-item:hover {
    background-color: #a3d0d6;
}

.Beneficios-section .cards-beneficios .card-container .card-item:hover p{
    color: var(--white-color) !important;
}

.Beneficios-section .cards-beneficios .card-container img {
    width: 60px;
    height: auto;
    margin: 20px 0px;
    margin-right: 25px;
}

.Beneficios-section .cards-beneficios .card-container .card-1 .card-item p {
    color: #b1625e;
    transition: all 0.2s ease-in-out;
}

.Beneficios-section .cards-beneficios .card-container .title-card-2{
    background: -webkit-linear-gradient(45deg, #1dd1c9, #299aa9 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.Beneficios-section .cards-beneficios .card-container .card-2 {
    background-color: #c8e4e7;
    padding: 30px;
    border-radius: 10px;
    margin-top: 25px;
}

.Beneficios-section .cards-beneficios .card-container .card-2 .card-item p {
    color: var(--primary-color);
    transition: all 0.2s ease-in-out;
}

@media (max-width: 1200px) {
    .Beneficios-section {
        width: 100%;
    }

    .Beneficios-section .cards-beneficios .card-container .card-item {
        flex-direction: column;
        align-items: baseline;
        padding-top: 0px;
    }

    .Beneficios-section .cards-beneficios .card-container .card {
        padding: 10px !important;
    }

    .Beneficios-section .cards-beneficios .card-container img {
        width: 50px;
        height: auto;
        margin: 10px 0px;
        margin-right: 25px;
    }
}

@media (max-width: 660px) {
    .Beneficios-section .cards-beneficios {
        flex-direction: column;
        width: 100%;
        gap: 50px;
    }

    .Beneficios-section .cards-beneficios .card-container {
        display: flex;
        flex-direction: column;
        justify-content: flex-start; /* Alinea el contenido al inicio */
        align-items: stretch; /* Asegura que las tarjetas ocupen la misma altura */
        width: 90%;
        margin: 0 auto;
        border-radius: 10px;
    }
}

/*------------------------
	Phrase 1 section
--------------------------*/

.phrase {
    width: 100% !important;
    height: 30vh;
    background-image: url(assets/imagenes/bg-phrase.png);
    background-size:cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phrase:before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.phrase1 {
    margin: 100px 0px !important;
}

.phrase .container-phrase {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.phrase .container-phrase h2 {
    color: var(--white-color);
    text-shadow: -1px -1px 9px rgba(255,255,255,0.63);
}

.phrase2 .container-phrase {
    width: 55%;
    margin: 100px auto;
    text-align: center;
}

@media (max-width: 996px) {
    .phrase .container-phrase {
        width: 65%;
    }
}

@media (max-width: 784px) {
    .phrase .container-phrase {
        width: 80%;
    }
}

@media (max-width: 650px) {
    .phrase .container-phrase {
        width: 100%;
        margin: 20px 40px !important;
    }
}

@media (max-width: 584px) {
    .phrase .container-phrase h2{
        font-size: 1.7rem !important;
    }
}

@media (max-width: 445px) {
    .phrase .container-phrase h2{
        font-size: 1.3rem !important;
    }
}

@media (max-width: 355px) {
    .phrase .container-phrase h2{
        font-size: 1rem !important;
    }
}

/*------------------------
	Garantia section
--------------------------*/

.garantia-section {
    position: relative;
    color: var(--white-color);
    height: 80vh;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px; /* Espaciado opcional */
    overflow: hidden; /* Oculta cualquier parte del video que se salga */
}

.container-garantia {
    position: relative;
    z-index: 50;
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-direction: column;
    text-align: left;
    gap: 30px;
    margin-left: 50px;
}

.container-garantia h3 {
    text-transform: uppercase;
    margin-bottom: -20px;
    text-align: center;
}

.container-garantia h2 {
    text-shadow: -1px -1px 9px rgba(255,255,255,0.63);
}

.container-garantia p {
    width: 50%;
}

.hide-text-garantia {
    display: block;
}

.garantia-section video {
    position: absolute;
    z-index: 1; /* Asegura que el video quede detrás */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Ajusta el alto al de la sección */
    object-fit: cover; /* Escala el video sin deformarlo */
    pointer-events: none; /* Evita que el video bloquee la interacción con el contenido */
}

@media (max-width: 720px) {
    .container-garantia {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: justify;
        gap: 30px;
        margin-left: 0px;
    }
    
    .container-garantia p {
        width: 80%;
    }
}

@media (max-width: 450px) {
    .hide-text-garantia {
        display: none;
    }

}

/*------------------------
	About Us section
--------------------------*/

.about-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background-image: url(assets/imagenes/bg-about.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    height: 100vh; /* Ocupa toda la altura de la pantalla */
    margin: 100px 0px !important;
}

.about-section .content-about {
    width: 40%; /* Contenedor de texto un poco más grande */
    text-align: justify;
    margin: 0px;
    color: var(--white-color);
}

.about-section .content-about h2 {
    margin-bottom: 5px;
    text-shadow: -1px -1px 9px rgba(255,255,255,0.63);
}

.about-section .content-about h3 {
    text-transform: uppercase;
    margin-bottom: 50px;
    text-align: left;
}

.about-section .content-about p {
    margin-bottom: 50px;
}

.about-section .imgs-about {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Tres columnas */
    grid-template-rows: repeat(3, 1fr); /* Tres filas */
    gap: 1rem;
    width: 30%; /* Contenedor reducido */
    max-width: 30%;
    height: auto;
    aspect-ratio: 1/1; /* Mantiene proporciones cuadradas */
}

.about-section .imgs-about .img-desktop {
    display: block;
}

.about-section .imgs-about .img-mobile {
    display: none;
}

.about-section .imgs-about img {
    width: 100%;
    height: auto; /* Mantiene proporciones originales */
    object-fit: cover; /* Evita cortes de las imágenes */
    border-radius: 10px; /* Bordes redondeados */
}

.about-section .imgs-about img:first-child {
    grid-column: 1 / 3; /* Ocupar dos columnas */
    grid-row: 1 / 4; /* Ocupar tres filas */
}

.about-section .imgs-about img:nth-child(2) {
    grid-column: 3 / 4; /* Tercera columna */
    grid-row: 1 / 2; /* Ocupar dos filas */
}

.about-section .imgs-about img:nth-child(3) {
    grid-column: 3 / 4; /* Tercera columna */
    grid-row: 3 / 4; /* Ocupar una fila */
    height: 100%;
}

@media (max-width:768px) {
    .about-section {
        flex-direction: column;
        height: 120vh;
    }

    .about-section .content-about {
        width: 50%;
        text-align: justify;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-section .content-about h2 {
        text-align: center;
    }

    .about-section .content-about h3 {
        text-align: center;
        margin-bottom: 20px;
    }

    .about-section .content-about p {
        margin-bottom: 10px;
    }

    .about-section .imgs-about .img-desktop {
        display: none;
    }

    .about-section .imgs-about .img-mobile {
        display: block;
    }

    .about-section .imgs-about {
        display: flex;
        width: 80%;
        max-width: 100%;
        height: 25%;
    }
}

@media (max-width:570px) {
    .about-section .content-about {
        width: 70%;
        text-align: justify;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width:375px) {
    .about-section {
        height: 150vh;
    }

    .about-section .content-about {
        width: 80%;
    }

    .about-section .imgs-about {
        display: flex;
        width: 80%;
        max-width: 100%;
        height: 35%;
    }
}

/*------------------------
	Acordeon section
--------------------------*/

.section-acordeon {
    width: 95%;
    margin: 100px auto !important;
}

.section-acordeon .provincias-acordeon {
    background: -webkit-linear-gradient(45deg, #1dd1c9, #299aa9 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    display: flex;
    justify-content: baseline;
    gap: 60px;
    margin-left: 100px;
    margin-bottom: 20px;
}

.section-acordeon .provincias-acordeon h4 {
    font-weight: var(--font-weight-bold) !important;
}

.img-container-acordeon{
    display: flex;
    flex-direction: row;
    width: 100%;
}

.panel{
/*     background-size: auto 100%; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    flex: 0.5;
    margin: 10px;
    position: relative;
    transition: flex 0.7s ease-in;
}

.panel.active{
    flex: 5;
    border-radius: 10px;
}

.panel.active h3{
    opacity: 1;
    transition: opacity 0.3s ease-in 0.4s;
}

/* HIDE IMG IN SMALLER SCREENS */

@media(max-width: 480px){
    .container{
    width: 100vw;
    }
    .panel:nth-of-type(4),
    .panel:nth-of-type(5){
    display: none;
    }
}

.content-acordeon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px 100px;
    margin-top: 20px;
}

.content-acordeon .title-acordeon {
    background: -webkit-linear-gradient(45deg, #1dd1c9, #299aa9 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 50%;
}

.content-acordeon .title-acordeon h3 {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.content-acordeon .paragraph-acordeon {
    width: 50%;
    text-align: justify;
    color: var(--grey-color);
}

@media (max-width:980px) {

    .content-acordeon {
        flex-direction: column;
        align-items: baseline;
        margin: 0px 30px;
        margin-top: 20px;
    }

    .content-acordeon .title-acordeon {
        width: 100%;
    }

    .content-acordeon .paragraph-acordeon {
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width:820px) {

    .section-acordeon .provincias-acordeon {
        margin-left: 0px;
        gap:20px;
        justify-content: center;
    }

}

@media (max-width: 500px) {

    .section-acordeon .provincias-acordeon {
        font-size: var(--font-size-p) !important;
        margin-left: 10px;
        gap:10px
    }

    .content-acordeon {
        align-items: center;
        margin: 0px 20px;
        margin-top: 20px;
    }

    .content-acordeon .title-acordeon {
        width: 100%;
    }

    .content-acordeon .paragraph-acordeon {
        width: 100%;
        margin-top: 20px;
    }

}

@media (max-width: 425px) {

    .section-acordeon .provincias-acordeon h4 {
        font-size: 0.7rem !important;
        gap: 2px
    }
}

/*------------------------
	Historia section
--------------------------*/

.historia-section {
    width: 100%;
    background-image: url(assets/imagenes/bg-about.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 0px;
    margin-bottom: 100px !important;
}

.historia-section .line {
    width: 100%;
    border: 1px solid var(--white-color);
    margin: 25px auto;
}

.historia-section .line-pos-absolute {
    position: absolute;
    top: 100px;
    width: 90%;
}

.historia-section .header-historia {
    width: 90%;
    text-align: center;
}

.historia-section .header-historia p {
    width: 60%;
    margin: 0px auto;
}

.historia-section .content-historia {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    position: relative;
}

.historia-section .content-historia .text-content {
    width: 30%;
    margin: 0px auto;
    text-align: justify;
}

.historia-section .content-historia .text-content h2 {
    padding-top: 10px;
    padding-bottom: 30px;
}

.historia-section .content-historia .img-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    margin: 0px auto;
}

.img-historia-desktop {
    display: block;
}

.img-historia-mobile {
    display: none;
}

.line-display {
    display: block;
}

.historia-section .content-historia .img-content img {
    border-radius: 10px;
    box-shadow: 1px 1px 46px 4px rgba(0,0,0,0.6);
    -webkit-box-shadow: 1px 1px 46px 4px rgba(0,0,0,0.6);
    -moz-box-shadow: 1px 1px 46px 4px rgba(0,0,0,0.6);
    max-height: 800px;
}

@media (max-width:1300px) {
    .historia-section .content-historia .img-content img {
        max-height: 500px;
    }
}

@media (max-width:766px) {
    .historia-section .content-historia {
        display: flex;
        flex-direction: column;
        margin-top: 50px;
        position: relative;
        text-align: center;
    }

    .historia-section .content-historia .text-content {
        width: 80%;
    }

    .historia-section .content-historia .text-content p{
        margin-bottom: 50px;
    }

    .img-historia-desktop {
        display: none;
    }

    .img-historia-mobile {
        display: block;
    }

    .line-display {
        display: none;
    }

    .historia-section .content-historia .img-content {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80%;
    }

    .historia-section .content-historia .img-content img {
        width: 100%;
        height: auto;
    }

    .content-historia-2 .text-content-2 h3{
        margin-top: 50px;
    }
}


/*------------------------
	Compromiso section
--------------------------*/

.compromiso-section {
    margin-top: 100px !important;
    position: relative;
    color: var(--white-color);
    height: 80vh;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px; /* Espaciado opcional */
    overflow: hidden; /* Oculta cualquier parte del video que se salga */
}

.container-compromiso {
    position: relative;
    z-index: 50;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    text-align: right;
    gap: 30px;
    margin-right: 50px;
}

.container-compromiso h3 {
    text-transform: uppercase;
    margin-bottom: -20px;
}

.container-compromiso h2 {
    text-shadow: -1px -1px 9px rgba(255,255,255,0.63);
}

.container-compromiso p {
    width: 50%;
    text-align: justify;
}

.compromiso-section video {
    position: absolute;
    z-index: 1; /* Asegura que el video quede detrás */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Ajusta el alto al de la sección */
    object-fit: cover; /* Escala el video sin deformarlo */
    pointer-events: none; /* Evita que el video bloquee la interacción con el contenido */
}

@media (max-width: 720px) {
    .container-compromiso {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: justify;
        gap: 30px;
        margin-right: 0px;
    }
    
    .container-compromiso p {
        width: 80%;
    }
}

@media (max-width: 450px) {
    .hide-text-garantia {
        display: none;
    }

}

@media (max-width: 386px) {
    .container-compromiso h2 {
        font-size: 1.8rem !important;
    }

}

/*------------------------
	Contact section
--------------------------*/

.contact-section {
    margin-top: 100px !important;
    width: 100% !important;
}

.contact-section .banner-contacto {
    background-image: url(assets/imagenes/bg-about.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    height: 70vh;
    color: var(--white-color);
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.contact-section .banner-contacto .text-banner h2 {
    scale: 1.4;
    text-shadow: -1px -1px 9px rgba(255,255,255,0.63);
    margin: 20px 0px;
    margin-bottom: 50px;
}

.contact-section .banner-contacto .text-banner
.contact-info h3 {
    margin: 20px 0px;
}

.contact-section .banner-contacto .text-banner
.contact-info .contact-num {
    display: flex;
    gap: 10px;
    margin: 20px;
}

.contact-section .banner-contacto .text-banner
.contact-info .contact-num i {
    margin-top: 5px;
}

.contact-section .banner-contacto .icons-banner {
    font-size: 100px;
    margin-top: 200px;
}

.contact-section .banner-contacto .icons-banner a {
    text-decoration: none;
    color: var(--white-color) !important;

}

.contact-section .banner-contacto .icons-banner i {
    animation: pulsesmall 0.7s infinite alternate ease-in-out;
    text-shadow: -1px -1px 9px rgba(255,255,255,0.63);
}

@media (max-width: 768px) {
    .contact-section .banner-contacto {
        height: 80vh;
        display: flex;
        justify-content: space-around;
        flex-direction: column;
        align-items: center;
    }

    .contact-section .banner-contacto .icons-banner {
        font-size: 100px;
        margin-top: 0px;
    }
}

@media (max-width: 425px) {
    .contact-section .banner-contacto .text-banner h2 {
        scale: 1;
        margin: 20px 0px;
        margin-bottom: 50px;
        text-align: center;
    }

    .contact-section .banner-contacto .icons-banner {
        font-size: 80px;
        margin-top: 0px;
    }
}

/* FORM CONTACTO */

/* Contenedor del formulario */
.contact-form-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 100px auto;
}

/* Estilos del formulario */
.contact-form {
    width: 50%;
    max-width: 1000px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Grupo de cada input o textarea */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    margin-bottom: 50px;
}

.form-group-3 {
    background: -webkit-linear-gradient(45deg, #1dd1c9, #299aa9 80%);
    color: var(--white-color);
    border-radius: 10px;
}

/* Etiquetas */
.form-group label {
    font-family: var(--paragraph-font);
    font-size: var(--font-size-p);
    color: var(--primary-color);
    text-transform: uppercase;
    position: absolute;
    top: -2rem;
    left: 0.5rem;
    padding: 0 5px;
}

/* Inputs y textarea */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px;
    border-bottom: 1px solid var(--white-color);
    font-size: 1rem;
    color: var(--black-color);
    background-color: transparent;
    outline: none;
}

.contact-form input {
    border-bottom: 1px solid var(--primary-color);
}

.contact-form textarea {
    border-bottom: none !important;
    color: var(--white-color);
    font-family: var(--paragraph-font);
    border-radius: 10px;
}

/* Botón de envío */
.submit-button {
    width: 150px;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: bold;
    color: transparent;
    background-color: transparent; /* Turquesa */
    border: none;
    border-radius: 20px;
    cursor: pointer;
    align-self: flex-start;
}

@media (max-width: 768px) {
    .contact-form {
        width: 80%;
    }
}

/*------------------------
	Map section
--------------------------*/

/* Sección del mapa */
.map-section {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    margin-bottom: -10px !important;
}

/* Mapa de Google */
.google-map {
    width: 100%;
    height: 500px; /* Altura fija del mapa */
    border: none; /* Sin bordes */
}

/*------------------------
	Footer section
--------------------------*/

footer {
    height: 50vh;
}

.footer-row-1 {
    display: flex;
    justify-content: space-around;
}

.footer-row-1 .footer-col p {
    color: var(--grey-color);
    font-weight: var(--font-weight-bold) !important;
    font-size: var(--font-size-p);
    margin-bottom: 20px;
}

.footer-row-1 .footer-col-1 a {
    text-decoration: none;
    color: var(--grey-color);
    font-family: var(--paragraph-font);
    font-size: var(--font-size-p);
    line-height: 1.6;
}

.footer-row-1 .footer-col-1 h6 {
    transition: all 0.3s ease-in-out;
}

.footer-row-1 .footer-col-1 h6:hover {
    scale: 1.1;
}

.footer-row-1 .footer-col-2 h6 {
    text-decoration: none;
    color: var(--grey-color);
    font-family: var(--paragraph-font);
    font-size: var(--font-size-p);
    line-height: 1.6;
    transition: all 0.3s ease-in-out;
}

.footer-row-1 .footer-col-2 h6:hover {
    scale: 1.1;
}

.footer-row-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.footer-row-2 a {
    text-decoration: none;
    color: var(--grey-color);
    font-family: var(--paragraph-font);
    font-size: var(--font-size-p);
}

.footer-row-2 h3 {
    font-weight: var(--font-weight-bold) !important;
    letter-spacing: 1px;
    animation: pulsesmall 0.7s infinite alternate ease-in-out;
}


@media (max-width: 550px) {
    .footer-row-1 {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-row-1 .footer-col p {
        margin: 20px;
    }

    .footer-row-2 {
        text-align: center;
    }

    .footer-row-2 a {
        margin: 0px 20px;
        margin-bottom: 100px;
    }
}










