﻿:root {
    --rosa-claro: rgb(235, 199, 206);
    --rosa-medio: rgb(228, 137, 164);
    --rosa-fondo: rgb(249, 230, 225);
    --rosa-profundo: rgb(209, 167, 180);
    --rosa-suave: rgb(250, 236, 239);
    --beige: #f5f5dc;
    --moka: #b89b82;
}

body {
    background-color: var(--rosa-suave);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-section {
    background-color: white;
    padding: 2rem 2rem;
    border-radius: 12px;
    margin: 20px 60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--rosa-profundo); /* color igual al filtro */ /* rosa profundo */
    font-weight: 700;
}

.about-content {
    line-height: 1.8;
    color: #555;
    font-size: 1.1rem;
}



.intro-text {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: #444;
}

.mission-section, .community-section {
    margin-top: 35px;
}

    .mission-section h3,
    .community-section h3 {
        font-size: 1.7rem;
        margin-bottom: 15px;
        color: #2b2b2b;
    }

.benefits-list,
.community-list {
    list-style: none;
    padding-left: 0;
}

    .benefits-list li,
    .community-list li {
        margin-bottom: 12px;
        display: flex;
        align-items: flex-start;
    }

    .benefits-list i,
    .community-list i {
        color: #d1a7b4;
        margin-right: 10px;
        font-size: 1.2rem;
        min-width: 25px;
    }

.team-signature {
    text-align: center;
    font-style: italic;
    margin-top: 40px;
    font-size: 1.15rem;
    color: #666;
}


.logo-eterea-container {
    animation: fadeInLogo 1.5s ease-in-out;
}

.logo-eterea {
    max-height: 200px;
    width: auto;
    border-radius: 100px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
    animation: floatLogo 3s ease-in-out infinite;
}

    .logo-eterea:hover {
        transform: scale(1.05);
        cursor: pointer;
    }

/* Animación de entrada */
@keyframes fadeInLogo {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animación de flotación suave */
@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }


}

.faq-section h3 {
    font-weight: bold;
    color: #aa667a;
}

.accordion-button {
    background-color: #f9f1f3;
    font-weight: 500;
    color: #5a2e3f;
}

    .accordion-button:not(.collapsed) {
        background-color: #e7d1d7;
        color: #3a1c25;
    }

.section-subtitle {
    color: #973f5c;
    font-weight: 600;
    border-bottom: 2px solid #e2c3cc;
    padding-bottom: 6px;
    margin-bottom: 15px;
}

/* Quita bordes y sombreado al seleccionar una pregunta */
.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
    outline: none;
}

.accordion-button:not(.collapsed) {
    /*
    background-color: #f9f1f3; /* o el fondo que uses normalmente 
    color: #aa667a;
    */
    box-shadow: none;
    border-color: transparent;
}

/* Ajustes visuales para los bloques */
.contact-box {
    background-color: var(--rosa-suave);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    flex-wrap: nowrap; /* todo en una línea */
    margin-bottom: 10px;
}

    .benefit-item i {
        margin-right: 5px; /* separación mínima del icono */
    }

.benefit-title {
    margin-right: 5px; /* separación mínima del título de la descripción */
}

.benefit-desc {
    display: inline; /* aparece junto al título */
}



@media (max-width: 768px) {
    .about-section {
        padding: 12px !important;
    }

    .contact-box .section-subtitle {
        text-align: center !important;
    }

    .contact-box p {
        text-align: center !important;
    }

    .contact-box {
        padding: 15px 8px 8px 8px !important;
    }
}

    @media (max-width: 1280px) {

        .contact-box .section-subtitle {
            text-align: center !important;
        }

        .contact-box p {
            text-align: center !important;
        }

        .benefit-item {
            display: flex; /* necesario */
            flex-direction: column;
            align-items: center; /* ahora sí centra */
            text-align: center; /* para el texto dentro de los spans */
        }

        .benefit-title,
        .benefit-desc {
            display: block; /* cada uno ocupa su línea */
            margin-right: 0;
            width: 100%; /* para ocupar todo el ancho del li */
            text-align: center; /* centra el contenido dentro del span */
        }

        .benefit-item i {
            margin-bottom: 5px; /* espacio entre icono y título */
        }
    }
