
@font-face {
    font-family: 'lasticaregular';
    src: url('./resources/fonts/fontsfree-net-lastica-webfont.woff2') format('woff2'),
         url('./resources/fonts/fontsfree-net-lastica-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'adlanta';
    src: url('./resources/fonts/Adlanta.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
/* Global Styles */
body {
	font-family: Arial, sans-serif; 
    margin: 0;
    padding: 0;
	align-items: center;
    background-color:#e9edef; 
	justify-content: center;
	height: 100vh;
	background: url('./resources/fondo.png') center;
	background-size: cover;
}

h1 {
    font-family: 'lasticaregular', sans-serif;
    font-size: 50px; 
    margin: 0 0 15px 0;
	color:  #FFFFFF;
}

h2 {
    font-family: 'adlanta', sans-serif;
    font-size: 30px; 
    margin: 0 0 15px 0;
	color: #03989E;
}

 h3, h4 {
	font-family: Arial, sans-serif; 
    margin: 0 0 15px 0;
	color: #595959; /*#002060;*/
}
p {
	font-family: Arial, sans-serif; 
    margin: 0 0 15px 0;
	color:#595959; /*#002060;*/
}
}
a {
    text-decoration: none;
    color:#595959; /*#000000;/*#fff;*/
}

/* Hero Section */
.hero {
    background-color: #FFFFFF;
    color: #030E1F;
    padding: 10px 0;
}

.hero-content {
    display: flex;
    align-items: stretch;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    position: relative;
}

.hero-left {
    flex: 1;
    display: flex;
    justify-content: flex-end; /* Alinea el logo a la derecha dentro de su contenedor */
}

.hero-right {
    flex: 1;
    padding-left: 0px;
	padding-right:10px;
    max-width: 50%; /* Asegura que el texto no ocupe más del 50% del ancho */
    background: linear-gradient(60deg, rgba(2,178,148,1) 0%, rgba(56,182,255,1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centra el contenido verticalmente */
	position: relative; /* los hijos tendran posición relativa*/
}
.waves {
  position:absolute;/*relative;*/ /*ubica las olas en posición absoluta dentro de su padre*/
  bottom:0;
  flex: 1;
  max-width: 100%;
  width: 100%;
  height:15vh;
  margin-bottom:-7px; /*Fix for safari gap*/
  min-height:100px;
  max-height:150px;
}
/* Animation */

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
.hero-logo {
    width: 100%; /* Ajusta el tamaño según sea necesario */
    height: auto;
}

.cta-button {
    background-color: #e74c3c;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
}

.cta-button:hover {
    background-color: #c0392b;
}
.hero-description {
    font-family: Arial, sans-serif;
    font-size: 20px; /* Ajusta el tamaño según tus necesidades */
	font-style: italic;
    color: #FFFFFF ; /* #FFFFFF Color blanco para el texto descriptivo */
    margin: 0 0 10px 0;
	text-align: center;
	
	
}
.hero-title {
    text-align: center;
    margin-bottom: 10px; /* Ajusta el valor según el espacio que desees */
}
/* Section Styles */
section {
    padding: 60px 20px;
    text-align: center;
	background-color: rgba(233, 237, 239, 0.5); /* Semitransparente para ver el fondo */
    backdrop-filter: blur(10px); /* Aplica el desenfoque */
}


.feature-cards, .sector-cards, .pricing-table {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.feature-card, .sector-card, .pricing-plan {
    background-color: rgba(207, 244, 227, 0.9); /* Semitransparente */ /*#cff4e3;*/
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 30%;
    text-align: left;
	color:#595959;;
}


.testimonial {
    margin: 20px auto;
    max-width: 600px;
    font-style: italic;
}

.pricing-plan {
    width: 30%;
}

/* Contact Form */
.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact input, .contact textarea {
    padding: 10px;
    font-size: 16px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.contact button {
    padding: 10px 20px;
    background-color: #38B6FF;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.contact button:hover {
    background-color: #27ae60;
}
/* Datos de contacto */
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
	color: #595959;;
}

.contact-item {
    display: flex;
    align-items: center;
}

.icon {
    margin-right: 10px;
}

/* Footer */
footer {
    background-color: #fff;
    color: #333;
    padding: 20px;
    text-align: center;
}
