body{
    font-family:'Montserrat',sans-serif;
    background:#FAFAFA;
    color:#4A4A4A;
}

/* HERO */
.hero{
    background:linear-gradient(rgba(107,142,35,0.85),rgba(169,186,157,0.9)),
               url('assets/img/hero-holistico.png') center/cover no-repeat;
    color:white;
    padding:110px 20px;
    text-align:center;
}
.hero h1{
    font-family:'Playfair Display',serif;
    font-size:3rem;
    margin-bottom:15px;
}
.hero p{
    font-size:1.2rem;
    max-width:650px;
    margin:auto;
    margin-bottom:30px;
}
.hero .btn{
    padding:12px 35px;
    font-size:1.1rem;
    border-radius:50px;
    font-weight:500;
}

/* SECCIONES */
.section{
    padding:70px 0;
}
.section-title{
    font-family:'Playfair Display',serif;
    font-size:2.3rem;
    text-align:center;
    margin-bottom:15px;
}
.section-subtitle{
    text-align:center;
    max-width:600px;
    margin:auto;
    margin-bottom:50px;
    color:#777;
}

/* SERVICIOS */
.service-card {
    background: #f8f9fa;
    padding: 30px 25px;
    border-radius: 25px;
    text-align: center;
    height: 100%;

    display: flex;
    flex-direction: column;
}
.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 35px rgba(0,0,0,0.12);
}
.service-icon{
    font-size:40px;
    color:#6B8E23;
    margin-bottom:20px;
}
.service-card h5{
    font-weight:600;
    margin-bottom:10px;
}
.service-card p{
    font-size:0.95rem;
    color:#666;
}

/* CTA FINAL */
.cta{
    background:#6B8E23;
    color:white;
    padding:70px 20px;
    text-align:center;
}
.cta h2{
    font-family:'Playfair Display',serif;
    margin-bottom:15px;
}
.cta .btn{
    background:white;
    color:#6B8E23;
    border-radius:50px;
    padding:12px 40px;
    font-size:1.1rem;
}

/* FOOTER */
footer{
    background:#2f3d1f;
    color:#ccc;
    padding:20px;
    text-align:center;
    font-size:0.9rem;
}

/* FORMULARIO AGENDA */
.agenda-form{
    max-width:100%;
}

.form-section-title{
    font-family:'Playfair Display',serif;
    font-size:1.3rem;
    margin-bottom:15px;
    color:#6B8E23;
    border-bottom:1px solid rgba(0,0,0,0.05);
    padding-bottom:5px;
}

.form-label{
    font-weight:500;
    color:#444;
}

.form-control,
.form-select{
    border-radius:15px;
    border:1px solid #ddd;
    padding:14px 16px;
}

.form-control:focus,
.form-select:focus{
    border-color:#6B8E23;
    box-shadow:0 0 0 0.15rem rgba(107,142,35,.25);
}

.card.service-card{
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}
#doc_msg {
    display: block;
    margin-top: 5px;
}

.service-desc {
    font-size: 14px;
    color: #666;
    min-height: 60px; /* clave para equilibrio */
}

.service-footer {
    margin-top: auto; /* empuja al fondo */
}

.service-meta {
    font-weight: 600;
    margin-top: 15px;
}


/* BLOG */
.blog-card {
    border-radius: 20px;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.blog-detalle h1 {
    font-weight: 700;
}

.blog-detalle .contenido {
    line-height: 1.8;
    font-size: 1.1rem;
}