
/* Header */
.header {
    background: linear-gradient(135deg, #8B6F47 0%, #A0826D 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.1;
}

.header-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Container principal */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sección de Historia */
.historia-section {
    background: white;
    padding: 60px 40px;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.historia-section h2 {
    font-size: 2rem;
    color: #8B6F47;
    margin-bottom: 30px;
    border-bottom: 3px solid #8B6F47;
    padding-bottom: 15px;
    display: inline-block;
}

.historia-section p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;
}

/* Sección Misión y Visión */
.mision-vision-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px auto;
}

@media (max-width: 768px) {
    .mision-vision-section {
        grid-template-columns: 1fr;
    }
}

.mision-box,
.vision-box {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #8B6F47;
}

.mision-box h3,
.vision-box h3 {
    font-size: 1.8rem;
    color: #8B6F47;
    margin-bottom: 20px;
}

.mision-box p,
.vision-box p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    text-align: justify;
}

/* Sección de Valores */
.valores-section {
    background: white;
    padding: 60px 40px;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.valores-section h2 {
    font-size: 2rem;
    color: #8B6F47;
    margin-bottom: 40px;
    border-bottom: 3px solid #8B6F47;
    padding-bottom: 15px;
    display: inline-block;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.valor-card {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid #8B6F47;
    transition: all 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(139, 111, 71, 0.15);
}

.valor-card h4 {
    font-size: 1.3rem;
    color: #8B6F47;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.valor-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.valor-icon {
    font-size: 1.5rem;
}

/* Sección de Sostenibilidad */
.sostenibilidad-section {
    background: linear-gradient(135deg, #8B6F47 0%, #A0826D 100%);
    color: white;
    padding: 60px 40px;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sostenibilidad-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 15px;
    display: inline-block;
}

.sostenibilidad-intro {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-left: 5px solid white;
    margin-bottom: 30px;
    border-radius: 4px;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
}

.sostenibilidad-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.sostenibilidad-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.sostenibilidad-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.sostenibilidad-item h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sostenibilidad-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Footer */
.footer-section {
    background: white;
    padding: 40px;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 5px solid #8B6F47;
}

.footer-section p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
}



/* Responsive */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }

    .header p {
        font-size: 1rem;
    }

    .historia-section,
    .valores-section,
    .sostenibilidad-section {
        padding: 40px 20px;
    }

    .historia-section h2,
    .valores-section h2,
    .sostenibilidad-section h2 {
        font-size: 1.5rem;
    }
}

/* Animación de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.historia-section,
.mision-box,
.vision-box,
.valores-section,
.sostenibilidad-section,
.footer-section {
    animation: fadeInUp 0.6s ease-out;
}

.mision-box {
    animation-delay: 0.1s;
}

.vision-box {
    animation-delay: 0.2s;
}

.valores-section {
    animation-delay: 0.3s;
}

.sostenibilidad-section {
    animation-delay: 0.4s;
}

#hero h2 {
    color: #fff;
    /* margin-bottom: 153px; */
    font-size: 48px;
    margin-top: -301px;
    font-weight: 900;
}

#hero {
    height: calc(52vh - 144px) !important;
}

 .cta-button {
    display: inline-block;
    background: #fd7e14;
    color: white;
    padding: 15px 40px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background: #fd7e14;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 111, 71, 0.3);
} 