/* Reset y variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --max-width: 1200px;
    --container-padding: 1rem;
    --primary-dark: #2c5530;
    --primary-light: #6b8e23;
    --accent-yellow: #FFBF00;
    --accent-brown: #875C4A;
    --text-dark: #181818;
    --text-light: #666;
    --background: #FEFDFC;
    --white: #FFFFFF;
    --border-light: #e8e8e8;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-smoothing: antialiased;
}

h1, h2 {
    font-family: 'Instrument Sans', sans-serif;

}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER CON IMAGOTIPO ===== */
.header {
    position: relative;
    padding: 30px 0 0;    
}

.logo-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;    
    transform: translateX(-50%);
    top: 30px;    
    background:#FFBF00;
    border-radius: 16px;
    z-index: 100;
    padding-right:15px;}

.logo-iso {
    width: auto;
    height: clamp(50px, 8vw, 80px);}

.logo-text {
    font-family: 'Instrument Sans', sans-serif;
    font-size:2.5em;
    color: #875c4a;
    font-weight:lighter;
}

/* ===== HERO SECTION CON 2 COLUMNAS ===== */
.hero-section {
    position: relative;
    background: url('tigrealoJA-home.jpg') center/cover;
    margin-top: 30px;
    padding: 30px;
    display: flex;
    align-items: center;
    border-radius: 40px;
    justify-content: space-between;!important
}

.hero-content {
    width: 70%;
    padding: 60px 30px 50px 0px;
    color: white;
}

h1.hero-title {
   font-size: clamp(4rem, 9vw, 7rem);
    text-align: left;
}

.hero-subtitle {
    font-size: 1.8rem;
    opacity: 0.95;
    line-height: 1;
    font-weight: 400;
    text-shadow: 2px 2px 2px rgba(0,0,0,1);
}

.hero-content2 {
    width: clamp(18rem, 3vw, 20rem);
    background: #FEFDFC;
    padding: 20px;
    border-radius: 16px;
}

.hero-content2 p:first-child {
    font-size: clamp(1.3rem, 1.4vw, 1.5rem)!important;
    line-height: 1.2;
    color: #333;
    margin-bottom: 25px;
}

.hero-content2 .cta-text {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 20px;
}

.cta-button {
    background: #FFBF00;
    color: #1a1a1a;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(255, 191, 0, 0.3);
}

.btn-icon {
      width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.cta-button a {
    color: inherit;
    text-decoration: none;
    flex-shrink: 0; 
}

/* ===== TWO COLUMNS SECTION ===== */
.two-columns-section {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-top: 40px;
    padding: 0 20px;
}

.left-column, .right-column {
    flex: 1;
    background: #FEFDFC;
    border-radius: 24px;
    padding: 20px; 
}

.left-column {
    border: 2px solid #FFBF00;
    display: flex;
    flex-direction: column;
    gap: 20px;    
}

.right-column {
    display: flex;
    flex-direction: column; 
    padding-top: 10px!important;   
}

.mission-intro {
    font-size: 1rem;
    color: #2c5530;
    line-height: 1.4;
}
.left-column p:not(.mission-intro) {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}
/* Iconos para los títulos */

.title-with-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    justify-content: center; /* para centrar el conjunto icono+texto */
}

/* Primer título - brújula */
.title-with-icon:nth-child(1)::before {
    content: '';
    width: 32px;
    height: 32px;
    background: url('brujula.png') center/contain no-repeat;
    flex-shrink: 0;
}

/* Segundo título - apretón de manos */
.title-with-icon:nth-child(3)::before {
    content: '';
    width: 32px;
    height: 32px;
    background: url('apreton-de-manos.png') center/contain no-repeat;
    flex-shrink: 0;
}

.nature-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    padding: 20px 0 0 0;
}

.features-list {
    display: flex;
    flex-direction: column;
}

.feature-item {
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
    font-weight: 500;
    color: #2c5530;
    font-size: 1.1rem;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
    font-weight: 500;
    color: #2c5530;
    font-size: 1.1rem;
}

.feature-item:nth-child(1)::before {
    content: '';
    width: 32px;
    height: 32px;
    background: url('arbol.png') center/contain no-repeat;
    flex-shrink: 0;
}

.feature-item:nth-child(2)::before {
    content: '';
    width: 32px;
    height: 32px;
    background: url('canoa.png') center/contain no-repeat;
    flex-shrink: 0;
}

.feature-item:nth-child(3)::before {
    content: '';
    width: 32px;
    height: 32px;
    background: url('cabana.png') center/contain no-repeat;
    flex-shrink: 0;
}

/* Responsive  */
@media (max-width: 900px) {
     .container {
        padding: 0px;    }
    
    .hero-section {
        border-radius: 0;
        padding: 30px 20px 20px 20px;
        flex-direction: column; }
    
    .hero-content {        
        width: 90%;
        padding: 40px 0px 40px 10px;
        text-align: left; }
    
    .hero-content2 { 
        width: 90%;
        text-align: justify;
        padding: 20px;
        margin: 0px 0px 0px 0;}
    
    .logo-text{font-size:1.8em;}
    h1.hero-title {font-size: auto; line-height: 1;}

    .hero-subtitle {
        font-size: 1.8em;
        line-height: 1.3;
    }

    .two-columns-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    margin: 40px auto;
    padding: 0 20px;
}

.left-column, .right-column {
    width: 100%;
    max-width: 800px;
    background: #FEFDFC;
    border-radius: 24px;
    padding: 20px; 
}

/* INVERTIR EL ORDEN */
.right-column {
    order: 1; /* Derecha primero */
}

.left-column {
    order: 2; /* Izquierda segundo */
    border: 2px solid #FFBF00;
    display: flex;
    flex-direction: column;
    gap: 20px;    
}
}



/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #e8e8e8;
}

.footer p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #666;
}