/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: #2f2f2f;
    background-color: #ffffff;
}

.header {
    text-align: center;
    padding: 25px 15px;
}

.logo {
    max-width: 340px;
    width: 100%;
}

.hero {
    background: linear-gradient(135deg, #2d8a57, #65b96e);
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.hero h2 {
    font-size: 1.3rem;
    font-weight: 400;
}

.content {
    padding: 50px 20px;
    background-color: #f4faf6;
}

.info {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.image-wrapper {
    display: flex;
    justify-content: center;
}

.image-auto {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #65b96e;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.features {
    list-style: none;
}

.features li {
    font-size: 1.05rem;
    margin-bottom: 14px;
    background: #ffffff;
    padding: 12px 16px;
    border-left: 5px solid #65b96e;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contactos {
    max-width: 800px;
    margin: auto;
    padding: 50px 20px;
    text-align: center;
}

.contactos h3 {
    font-size: 1.8rem;
    color: #2d8a57;
    margin-bottom: 25px;
}

.contactos p {
    margin-bottom: 15px;
}

.contactos a {
    color: #2d8a57;
    text-decoration: none;
    font-weight: 500;
}

.contactos a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #2d8a57;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .info {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .image-auto {
        width: 220px;
        height: 220px;
    }
}
