@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: 'OwenPro-SemiBold';
    src: url("../fonts/Owen Pro/OwenPro-SemiBold.otf") format('opentype'); 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'OwenPro-Medium';
    src: url("../fonts/Owen Pro/OwenPro-Medium.otf") format('opentype'); 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'OwenPro-Regular';
    src: url("../fonts/Owen Pro/OwenPro-Regular.otf") format('opentype'); 
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'OwenPro-Light';
    src: url("../fonts/Owen Pro/OwenPro-Light.otf") format('opentype'); 
    font-weight: normal;
    font-style: normal;
}

:root {
    --aqua: #00A0AF;
	--verde: #8DBB00;
	--negro: #000000;
	--gris: #1F242D;
	--owenPro-600: 'OwenPro-SemiBold';
	--owenPro-500: 'OwenPro-Medium';
	--owenPro-400: 'OwenPro-Regular';
	--owenPro-300: 'OwenPro-Light';
	--primaryBoxShadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    --secondaryBoxShadow: 0px -10px 15px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

.container__footer {
	display: grid;
	grid-template-columns: repeat(2, auto);
	grid-template-rows: repeat(3, auto);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
	background-color: var(--aqua);
}

.container__footer-links { 
	grid-area: 1 / 1 / 2 / 2; 
	padding: 5% 15% 5% 15%;
}
.container__footer-iconos { 
	grid-area: 2 / 1 / 3 / 2;
	padding: 0% 15% 5% 10%;
}
.container__footer-copy { 
	grid-area: 3 / 1 / 4 / 2; 
	background-color: #008F98;
	padding: 3% 15% 3% 15%;
}
.container__footer-subir { 
	grid-area: 1 / 2 / 2 / 3;
	padding: 40px;
	align-self: flex-start;
    justify-self: right;
}
.container__footer-aviso { 
	grid-area: 3 / 2 / 4 / 3; 
	background-color: #008F98;
	padding: 3% 5% 3% 15%;
	text-align: right;
	display: grid;
    align-content: center;
}
.container__footer-chat { 
	grid-area: 2 / 2 / 3 / 3;
    align-self: end;
    justify-self: right;
    padding: 40px;
}
.container__footer-links h1{
	font-family: var(--owenPro-400);
	font-size: 1.75rem;
	line-height: 1rem;
	letter-spacing: -.1px;
	color: #FFFFFF;
}
.subtittle-border{
	border-top: 1px solid #FFFFFF;	
	width: fit-content;
	padding-top: 5px;
	margin-bottom: 4rem;
}
.container__footer-aviso a{
	font-family: var(--owenPro-400);
	font-size: 1.125rem;
	color: #FFFFFF;
	text-decoration: none;
}
.no-bullets {
    list-style-type: none;
    padding: 0;
/*	margin-bottom: 3rem;*/
    }
.container__footer-links a{
	font-family: var(--owenPro-400);
	font-size: 1.125rem;
	color: #FFFFFF;
	text-decoration: none;
}
.container__footer-links li{
	margin-bottom: 15px;
}
.container__footer p{
	font-family: var(--owenPro-400);
	font-size: 1.125rem;
	color: #FFFFFF;
}
.container__footer-iconos img{
	margin: 5% 7% 5% 0;
	cursor: pointer;
}
.btn-chat{
	font-family: var(--owenPro-500);
	font-size: 1.125rem;
	letter-spacing: -.1px;
	text-align: center;
	color: #FFFFFF;
	border-radius: 50px;
	background-color: var(--aqua);
	border: 2px solid #FFFFFF;
	height: 2.5rem;
    width: 8rem;
	box-shadow: 4px 4px 4px 0px #00000080;
	cursor: pointer;
}
.btn-subir{
	background-color: var(--verde);
	border: 2px solid #FFFFFF;
	box-shadow: 4px 4px 4px 0px #00000080;
	border-radius: 100px;
	cursor: pointer;
}
.btn-subir img{
	width: 3rem;
	padding: 8px;
}

/*------------------CHATBOX------------------*/
.container__footer-chat {
    position: relative; /* Necesario para que el formulario se posicione relativo a este contenedor */
}
.form-chatbox{
	background-color: var(--aqua);
	width: 80vw;
	max-width: 344px;
	font-family: var(--owenPro-500);
	font-size: 1.125rem;
	color: #FFFFFF;
	padding: 5% 25% 10% 25%;
	box-sizing: border-box;
	border-radius: 20px;
	box-shadow: 4px 4px 4px 0px #00000080;
	display: none;
    position: absolute;
    bottom: 60px; 
/*    left: 50%; */
    transform: translateX(-98%);
    z-index: 1000; 
}
.form-chatbox h1{
	font-family: var(--owenPro-400);
	font-size: 1.5rem;
	color: #FFFFFF;
}
.form-chatbox input{
	border-radius: 5px;
	border: none;
	margin-bottom: 10px;
	height: 42px;
}
.form-chatbox textarea{
	border-radius: 5px;
	border: none;
	margin-bottom: 10px;
	height: 108px;
}
.form-group {
    margin-bottom: 15px; 
}

label {
    display: block;
    margin-bottom: 5px; 
}

input, textarea {
    width: 100%; 
    padding: 8px; 
    box-sizing: border-box;
}
.btn-form {
    font-family: var(--owenPro-400);
    font-size: 1.5rem;
    color: #FFFFFF;
    background-color: var(--aqua);
    border-radius: 50px!important;
    border: 2px solid #FFFFFF!important;
    cursor: pointer; 
	height: 3rem!important;
}
.header-container {
    display: flex;
    align-items: center; 
    justify-content: space-between; 
}
.arrow-icon {
    width: 28px; 
    height: auto; 
    margin-left: 10px; 
	cursor: pointer;
}
.container__footer-chat {
    position: relative; /* Para posicionar elementos */
}

.example-2 ul {
  list-style: none;
}
.example-2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.example-2 .icon-content {
  margin: 0 10px;
  position: relative;
}
.example-2 .icon-content .tooltip {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: var(--owenPro-400);
}
.example-2 .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -30px;
}
.example-2 .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #FFFFFF;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}
.example-2 .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 25px;
  height: 25px;
}
.example-2 .icon-content a:hover {
  color: white;
}
.example-2 .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover .filled {
  height: 100%;
}

.example-2 .icon-content a[data-social="twitter"] .filled,
.example-2 .icon-content a[data-social="twitter"] ~ .tooltip {
  background-color: #000000;
}

.example-2 .icon-content a[data-social="facebook"] .filled,
.example-2 .icon-content a[data-social="facebook"] ~ .tooltip {
  background-color: #3b5998;
}
.example-2 .icon-content a[data-social="instagram"] .filled,
.example-2 .icon-content a[data-social="instagram"] ~ .tooltip {
  background: linear-gradient(
    45deg,
    #405de6,
    #5b51db,
    #b33ab4,
    #c135b4,
    #e1306c,
    #fd1f1f
  );
}
.example-2 .icon-content a[data-social="youtube"] .filled,
.example-2 .icon-content a[data-social="youtube"] ~ .tooltip {
  background-color: #ff0000;
}


@media screen and  (min-width: 760px) {
.movil{
	display: none;
}	
}
@media screen and  (max-width: 760px) {
.container__footer {
	display: grid;
	grid-template-columns: repeat(2, auto);
	grid-template-rows: repeat(5, auto);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}
.container__footer-links h1 {
    letter-spacing: .5px;
}
.container__footer-links {
	grid-area: 1 / 1 / 3 / 4;
	padding: 15% 8% 25% 8%;
	}
	
.container__footer-chat {
    grid-area: 3 / 1 / 4 / 4;
    justify-self: right;
    padding: 5% 7% 15% 13%;
    }
	
.container__footer-iconos {
	grid-area: 4 / 1 / 5 / 4;
	padding: 0% 15% 5% 8%;
	}
	
.container__footer-copy { 
	grid-area: 5 / 1 / 5 / 4;
	padding: 3% 15% 3% 7%;
	}
	
.container__footer-subir { 
	grid-area:5 / 3 / 6 / 3;
	background-color: #008F98;
	padding: 30px 40px 30px 0px;
	}	
	
.container__footer-aviso{
	display: none;
	}
.btn-chat{
	background-color: var(--verde);
	height: 3rem;
    width: 10rem;
	}
.btn-subir{
	border: none;	
	}
.btn-subir img {
    width: 3rem;
    padding: 10px;
}
.subtittle-border {
    margin-bottom: 2rem;
}
.aviso_movil{
	font-family: var(--owenPro-300);
	color: #FFFFFF;
	font-size: 12px;
	cursor: pointer;
}
.text-pc{
 	margin-bottom: 0;
}
}