/* Fonts */
@font-face {
    font-family: 'PlusJakartaSans-ExtraBold';
    src: url('PlusJakartaSans-ExtraBold.woff2') format('woff2'),
         url('PlusJakartaSans-ExtraBold.woff') format('woff'),
         url('PlusJakartaSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-display: swap;
    font-style: normal;
  }

@font-face {
font-family: 'PlusJakartaSans-Regular';
src: url('PlusJakartaSans-Regular.woff2') format('woff2'),
     url('PlusJakartaSans-Regular.woff') format('woff'),
     url('PlusJakartaSans-Regular.ttf') format('truetype');
font-weight: 400;
font-display: swap;
font-style: normal;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'PlusJakartaSans-Regular';
    font-size: 15px;
}

/* ----------------------------------------------
                HOMEPAGE
---------------------------------------------- */

/* Fondo hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/background.avif') no-repeat center center/cover;
    opacity: 0.9; 
    z-index: -1; 
}

/* Logo */
.logo {
    max-width: 1000px;
    margin-bottom: 15%;
}

/* Botones */
.buttons button, .cta-button {
    background-color: #1c3e35;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 5px;
    font-family: 'PlusJakartaSans-ExtraBold';
    font-size: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buttons button:hover, .cta-button:hover {
    background-color:#00a19a;
}

/* ----------------------------------------------
                ABOUT
---------------------------------------------- */

.about-container {
    display: flex;
    justify-content: space-between;
    height: 100vh;
}

.left-section {
    width: 60%;
    background-color: #1c3e35;
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

/* Logo y icono */
.logo-container {
    text-align: center;
}

.home-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 35px; 
    color: white;
    transition: color 0.3s ease; 
}

.icon-contact{
    right: 900px;
}

.home-icon:hover {
    color: #00a19a; 
}


.text-section p {
    margin: 5px 0;
}

.text-left ol li {
    margin-bottom: 5px;
    line-height: 1.2;
}

.mission-title {
    margin-top: 3rem;
    text-align: center;
}


.right-section {
    width: 40%;
    background-color: white;
    padding: 20px;
}

.about-title {
    text-align: center;
    font-family: 'PlusJakartaSans-ExtraBold';
    font-size: 30px;
}

.about-subtitle {
    text-align: center;
    margin-bottom: 15px;
    font-family: 'PlusJakartaSans-ExtraBold';
    font-size: 20px;
    color: #1c3e35;
    line-height: 1.2;
}


.section {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image-text-container {
    display: flex;
    align-items: center;
}

.image-left {
    width: 40%;
    margin-right: 20px;
}

.text-right {
    width: 55%;
}

.reverse .text-left {
    order: 2;
}

.text-left, .text-right {
    width: 50%;
    margin-left: 30px;
}

.image-right {
    width: 40%;
    margin-left: 20px;
}

.cta-button {
    font-size: 20px;
    cursor: pointer;
    display: block;
}

/* ----------------------------------------------
                CONTACT
---------------------------------------------- */
.contact-container {
    display: flex;
    height: 100vh;
    font-family: Arial, sans-serif;
}
  
.info-section {
    position: relative; /* Para posicionar la marca de agua */
    flex: 1;
    background-color: #fff;
    color: #333;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.watermark {
    position: absolute;
    bottom: 10px; 
    left: -10px; 
    width: auto; 
    height: auto;
    pointer-events: none;
}
  
.contact-info p {
    font-size: 1rem;
    margin: 10px 0;
    display: flex;
    align-items: center;
}
  
.contact-info i {
    margin-right: 10px;
    color: #1c3e35;
}
  
.form-section {
    flex: 1;
    background-color: #1c3e35;
    color: white;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    position: relative;
}
  
.form-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}
  
.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #fff;
}
  
input, textarea {
    font-family: 'PlusJakartaSans-Regular';
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
  
input::placeholder, textarea::placeholder {
    color: #aaa;    
}

button.cta-button {
    background-color: #00a19a;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: 'PlusJakartaSans-ExtraBold';
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button.cta-button:hover {
    background-color: #fff;
    color: #1c3e35;
    border: 1px solid #1c3e35;
}
