* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    color: #1B4F4F;
    background-color: #FFF7E7;
    line-height: 1.6;
    padding-top: 80px;
}

header {
    background-color: #1B4F4F;
    color: white;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 100;
}

    nav ul {
        display: flex;
        list-style: none; /* supprime les bullets */
        gap: 20px;
        padding-left: 0;
        margin: 0;
    }

        nav ul li a {
            color: white;
            text-decoration: none; /* supprime le soulignement */
            font-weight: 600;
            font-size: 16px;
            transition: color 0.3s;
        }

            nav ul li a:hover {
                color: #b2dfdb;
            }

.nosotros {
    background-color: #FFF7E7;
    color: #1B1F1F;
    font-family: 'Source Sans Pro', sans-serif;
    padding: 60px 20px;
}

    .nosotros h2 {
        color: #1B4F4F;
        font-size: 2.2em;
        font-weight: 600;
        margin-bottom: 30px;
    }

    .nosotros h3 {
        color: #3A5D5D;
        font-size: 1.5em;
        font-weight: 500;
    }

.section-title {
    text-align: center;
    color: #5C7D75;
    font-size: 2.2rem;
    margin-bottom: 40px;
}
.section-title2 {
	text-align: center;
	color: #5C7D75;
	font-size: 2.2rem;
	margin-bottom: 40px;
	background-color: rgba(247, 237, 233, 0.85);
	
}



.area-box h3 {
    color: #5C7D75;
    margin-bottom: 10px;
}

.btn, .btn-submit, .btn-cta {
    background-color: #5C7D75;
}

    .btn:hover, .btn-submit:hover, .btn-cta:hover {
        background-color: #4e6b64;
    }

.equipo {
    padding: 60px 20px;
    background-color: #FFF7E7;
    color: #1B4F4F;
    text-align: center;
}

    .equipo .container {
        max-width: 1200px;
        margin: auto;
    }

h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    font-weight: 400;
}

.miembros {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.perfil { /*text-align: center;*/
    flex: 1 1 400px;
    background-color: #ffffff;
    border: 1px solid #D9C4B0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    padding: 20px;
    margin-bottom: 40px;
}

    .perfil img {
        width: 250px;
        height: 250px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .perfil h3 {
        font-size: 1.8em;
        margin-bottom: 15px;
        color: #153535;
        font-weight: 400;
    }

    .perfil p {
        font-size: 1.05em;
        line-height: 1.6;
        margin-bottom: 15px;
        text-align: left;
    }

@media (max-width: 768px) {
    .perfil {
        flex: 1 1 100%;
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    cursor: pointer;
	padding-left: 20px;
}

    .menu-toggle span {
        height: 3px;
        width: 25px;
        background: white;
        margin: 4px 0;
        transition: 0.3s;
    }

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    #menu-principal {
        display: none;
        flex-direction: column;
        background-color: #1B4F4F;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 200px;
        border-radius: 4px;
        padding: 10px;
    }

        #menu-principal.active {
            display: flex;
        }

    nav ul {
        display: none;
    }
}

.hero {
    background: #E0F2F1;
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

    .hero h1 {
        font-size: 2rem;
        color: #1B4F4F;
    }

    .hero p {
        font-size: 1.2rem;
        margin-top: 10px;
    }

.btn {
    background-color: #1B4F4F;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

    .btn:hover {
        background-color: #15403f;
    }

.hero-photo {
    width: 250px;
    height: 250px;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background-color: #FDEEEF;
}

section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
}

.services, .about, .testimonials {
    text-align: center;
}

.service-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.box {
    background: #F1F8F6;
    padding: 20px;
    border-radius: 8px;
    flex: 1 1 250px;
    max-width: 300px;
}

.photo-section {
    display: none;
}

.caption {
    margin-top: 15px;
    font-size: 1rem;
    color: #1B4F4F;
    font-weight: 500;
}

footer {
    background-color: #1B4F4F;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

    footer form {
        display: flex;
        flex-direction: column;
        gap: 15px;
        max-width: 600px;
        margin: auto;
        margin-bottom: 30px;
    }

    footer input, footer textarea {
        padding: 12px;
        font-size: 16px;
        border: none;
        border-radius: 8px;
    }

    footer textarea {
        resize: vertical;
    }

.areas-wrapper {
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    background-attachment: fixed;
    border-radius: 20px;
    background-image: url('/img/building.jpg');
    filter: opacity(0.5);
    -webkit-filter: opacity(0.9);
    -moz-filter: opacity(0.9);
}

.section-title {
    text-align: center;
    color: #1B4F4F;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.area-box {
    background: #FFFCFA;
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

    .area-box h3 {
        color: #1B4F4F;
        margin-bottom: 10px;
    }

    .area-box ul {
        padding-left: 20px;
        list-style: disc;
    }

        .area-box ul li {
            margin-bottom: 20px;
        }

.feature-list {
    padding-left: 20px;
    list-style: disc;
    color: #1B4F4F;
    font-size: 1rem;
    margin-top: 20px;
}

    .feature-list li {
        margin-bottom: 10px;
        line-height: 1.6;
    }

.modal {
    display: none;
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

    .modal-content input, .modal-content button {
        width: 100%;
        padding: 10px;
        margin: 10px 0;
        font-size: 1rem;
    }

.cerrar {
    float: right;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1B4F4F;
}

.input {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    resize: none;
}

.form-container {
    max-width: 650px;
    margin: auto;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    font-family: 'Source Sans Pro', sans-serif;
}

    .form-container h2 {
        text-align: center;
        margin-bottom: 25px;
        color: #1B4F4F;
        font-weight: 400;
    }

.form-input, .form-textarea {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 17px;
    background-color: #ffffff;
}

.form-textarea {
    resize: vertical;
    min-height: 160px;
}

.btn-submit {
    background-color: #1B4F4F;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    border-radius: 12px;
    cursor: pointer;
    display: block;
    margin: auto;
    transition: background 0.3s ease;
}

    .btn-submit:hover {
        background-color: #145858;
    }

.form-result {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
    color: green;
    font-size: 16px;
}

.area-box {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.area-toggle {
    background-color: #E0F2F1;
    color: #5C7D75;
    font-weight: 600;
    padding: 14px 20px;
    border: none;
    border-radius: 0;
    text-align: left;
    font-size: 18px;
    transition: background-color 0.3s;
}

    .area-toggle:hover {
        background-color: #FFF7E7; /* remplacé ici */
    }

.area-content {
    display: none;
    padding: 16px 20px;
    background-color: #ffffff;
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
}

.area-toggle {
    font-family: 'Source Sans Pro', sans-serif;
}

.area-content {
    font-family: 'Source Sans Pro', sans-serif;
}

.area-toggle {
    width: 100%;
    text-align: left;
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 600;
    background-color: #E0F2F1;
    border: none;
    cursor: pointer;
    color: #1B4F4F;
    outline: none;
    transition: background 0.3s;
}

    .area-toggle:hover {
        background-color: #d2ebe9;
    }

.area-content {
    display: none;
    padding: 16px 20px;
    background-color: #ffffff;
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

.area {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.hero-illustration {
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 1s ease-out;
}

    .hero-illustration img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 6px 12px rgba(0,0,0,0.1);
        transition: transform 0.5s ease;
    }

        .hero-illustration img:hover {
            transform: scale(1.02);
        }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-cta {
    background-color: #1B4F4F;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .btn-cta:hover {
        background-color: #15403f;
    }

.frase-destacada {
    background-color: #EDEAE0; /* couleur neutre élégante */
    color: #1B4F4F; /* couleur corporativa */
    text-align: center;
    padding: 60px 20px;
    font-family: 'Source Sans Pro', sans-serif;
}

    .frase-destacada h1 {
        font-size: 2em;
        font-weight: 600;
        max-width: 900px;
        margin: 0 auto;
        line-height: 1.4;
    }

.hero-panel {
    background-image: url('/img/WhatsApp Image 2025-06-20 à 20.45.07_d40462ad.jpg'); /* idéalement dans les tons nude / terre / vert gris */
    background-size: cover;
    background-position: center;
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero-panel .overlay {
        background-color: rgba(27, 79, 79, 0.5); /* légèrement plus clair pour ne pas saturer */
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.hero-content h1 {
    color: #ffffff;
    font-size: 2em;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-content p {
    color: #ffffffcc;
    font-size: 1.5em;
    font-weight: 400;
}

.frase-central-img {
    position: relative;
    height: 120vh;
    background-image: url('/img/libros.jpg'); /* image de fond */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Source Sans Pro', sans-serif;
}

    .frase-central-img .overlay {
        background-color: rgba(247, 237, 233, 0.8); /* fond nude semi-transparent */
        width: 80%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .frase-central-img .contenedor {
        /*text-align: center;*/
        color: #1B4F4F;
        padding: 20px;
        max-width: 900px;
    }

    .frase-central-img h1 {
        font-size: 2em;
        font-weight: 400;
        margin-bottom: 20px;
    }

    .frase-central-img p {
        font-size: 1.5em;
        font-weight: 400;
        color: #3A5D5D;
    }

.contacto {
    background-color: #FFFCFA;
    padding: 80px 20px;
    font-family: 'Source Sans Pro', sans-serif;
    color: #5C7D75;
}

    .contacto .container {
        max-width: 800px;
        margin: auto;
        text-align: center;
    }

    .contacto h2 {
        font-size: 2.4em;
        margin-bottom: 20px;
        color: #835E54;
    }

    .contacto .intro {
        font-size: 1.2em;
        margin-bottom: 40px;
        color: #3A5D5D;
    }

.formulario-contacto {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

    .formulario-contacto input, .formulario-contacto textarea {
        padding: 15px 20px;
        border-radius: 10px;
        border: 1px solid #D9C4B0;
        font-size: 1em;
        background-color: #FFF7E7;
        resize: vertical;
    }

    .formulario-contacto textarea {
        min-height: 150px;
    }

.btn-contacto {
    background-color: #5C7D75;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

    .btn-contacto:hover {
        background-color: #4e6b64;
    }

.info-contacto {
    font-size: 1em;
    color: #3A5D5D;
    text-align: left;
    line-height: 1.8;
}

.contacto-sexy {
    background-color: #FFF7E7;
    padding: 100px 20px;
    font-family: 'Source Sans Pro', sans-serif;
    color: #5C7D75;
}

.form-wrapper {
    max-width: 700px;
    margin: auto;
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.form-intro {
    color: #5C7D75;
    font-size: 1.1em;
    margin-bottom: 30px;
}

.form-elegante input, .form-elegante textarea {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 20px;
    border: 1px solid #D9C4B0;
    border-radius: 12px;
    font-size: 1em;
    background-color: #FFFCFA;
    color: #3A5D5D;
}

.form-elegante textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-enviar {
    background-color: #835E54;
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .btn-enviar:hover {
        background-color: #6e493f;
    }
	
	.menu-toggle {
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:flex-end;
  cursor:pointer;
}
.menu-toggle span {
  height:3px;
  width:25px;
  background:white;
  margin:4px 0;
  transition:0.3s;
}

@media (max-width:768px){
  .menu-toggle{ display:flex; }

  #menu-principal {
    display:none;
    flex-direction:column;
    background:#1B4F4F;
    position:absolute;
    top:60px; right:20px;
    width:200px;
    border-radius:8px;
    padding:10px;
  }
  #menu-principal.active{ display:flex; }

  /* cache le menu horizontal classique */
  nav ul{ display:none; }
}

/* Bouton de fermeture du menu mobile */
#menu-principal .close-btn {
  display:none; /* caché par défaut */
}

#menu-principal .close-btn button {
  background:none;
  border:none;
  color:#fff;
  font-size:2rem;
  cursor:pointer;
  line-height:1;
}

#menu-principal .close-btn button:hover {
  color:#b2dfdb;
}

/* Mobile : on affiche le bouton */
@media (max-width:768px){
  #menu-principal .close-btn {
    display:block;
    text-align:right;
    margin-bottom:10px;
  }
}

