* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    line-height: 1.6;
}

.container {
    width: 70%;
    max-width: 1100px;
    margin: auto;
}

header {
    background: #0b5d3b;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 90px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    background: linear-gradient(135deg, #0b5d3b, #1f8f4e);
    color: white;
    padding: 80px 0;
}

.hero-content {
   /* display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;*/
	
	    display: flex;
    align-items: center;
    justify-content: center; /* Centra todo el bloque */
    gap: 00px; /* Controla la distancia entre logo y texto */
	
}

.hero-logo img {
    width: 350px;
    max-width: 100%;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 20px;
    opacity: 0.9;
}



.hero h1 {
    font-size: 48px;
}

.section {
    padding: 60px 20px;
}

.section h2 {
    margin-bottom: 20px;
    color: #0b5d3b;
}

.bg-light {
    background: #f4f9f6;
}

ul { 
    list-style: disc;
    padding-left: 20px;
}

.btn {
    background: #0b5d3b;
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 15px;
}

.btn:hover {
    background: #084c2f;
}

footer {
    background: #083d28;
    color: white;
    text-align: center;
    padding: 30px 20px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }

    nav {
        margin-top: 10px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-logo img {
        width: 250px;
        margin-bottom: 20px;
    }

    .hero-text {
        text-align: center;
    }
}


.titulo-centro {
    text-align: center;
}

.vida-centro {
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    color: #0b5d3b;
    margin: 20px 0;
}

.importante-section p {
    text-align: justify;
}



.hero-text {
    flex: 1;
    text-align: center; /* Centra todo el bloque */
}

.hero-text h1 {
    font-size: 48px;
  /*  margin-bottom: 20px;*/
}

.subtitulo {
    font-size: 22px;
    letter-spacing: 1px;
}

.inicial {
    font-family: "Times New Roman", serif;
    color: silver; /* Marrón oscuro elegante */
    font-weight: bold;
    font-size: 28px;
}
