/* CONFIGURACIÓN GENERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #FFFFFF;
    color: #0F253F;
}

/* DISEÑO DEL MENÚ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: #FFFFFF;
    border-bottom: 2px solid #0F253F;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo-texto {
    font-weight: 800;
    font-size: 1.3rem;
    color: #0F253F;
    letter-spacing: 1px;
    border-bottom: 3px solid #0F253F;
    padding-bottom: 2px;
  line-height: 1.5;         /* Le da más espacio vertical entre las líneas de texto */
    margin-bottom: 4px;       /* Separa el texto de las líneas decorativas de abajo */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #0F253F;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #D49E35;
}

/* SECCIÓN DE INICIO (HERO) */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 40px;
    background-color: #FFFFFF;
}

.hero-content {
    max-width: 850px;
}

.subtitulo-hero {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #0F253F;
    display: block;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #0F253F;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-content h1 .resaltado {
    color: #0F253F;
    background: transparent;
    box-shadow: inset 0 -15px 0 rgba(212, 158, 53, 0.3);
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #4A5568;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-whatsapp {
    display: inline-block;
    padding: 12px 35px;
    background-color: #D49E35;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(212, 158, 53, 0.3);
}

.btn-whatsapp:hover {
    background-color: #B88428;
    transform: translateY(-2px);
}

/* CONTENEDORES GENERALES */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* SECCIÓN NOSOTRAS Y CÓMO TRABAJAMOS */
.nosotras-section {
    background-color: #F8F9FA;
}

.como-trabajamos-vertical {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.valores-grid-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
    margin-top: 40px;
}

.valor-card-nueva {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-top: 4px solid #D49E35;
    padding: 35px 30px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(15, 37, 63, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.valor-card-nueva:hover {
    transform: translateY(-5px);
    border-color: #0F253F;
    box-shadow: 0 10px 25px rgba(15, 37, 63, 0.06);
}

.valor-icono-wrapper {
    background-color: rgba(214, 158, 53, 0.1);
    color: #D49E35;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.valor-svg {
    width: 24px;
    height: 24px;
}

.valor-card-nueva h3 {
    font-size: 1.4rem;
    color: #0F253F;
    font-weight: 700;
    margin-bottom: 15px;
}

.valor-card-nueva p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4A5568;
}

/* SECCIÓN SERVICIOS Y EQUIPO */
.titulo-seccion {
    text-align: center;
    margin-bottom: 50px;
}

.titulo-seccion h2 {
    font-size: 2.3rem;
    color: #0F253F;
    margin-bottom: 10px;
}

.titulo-seccion p {
    color: #D49E35;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.servicio-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(15, 37, 63, 0.02);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.servicio-card:hover {
    transform: translateY(-5px);
    border-color: #0F253F;
    box-shadow: 0 10px 25px rgba(15, 37, 63, 0.08);
}

.profesional-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #F8F9FA;
    padding: 15px;
    border-radius: 4px;
}

.foto-placeholder {
    width: 60px;
    height: 60px;
    background-color: #0F253F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid #D49E35;
}

.iniciales-logo {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.9rem;
}

.profesional-info h4 {
    font-size: 0.95rem;
    color: #0F253F;
    font-weight: 700;
    margin-bottom: 4px;
}

.profesional-bio {
    font-size: 0.8rem;
    color: #5A6A80;
    line-height: 1.4;
}

.servicio-card h3 {
    font-size: 1.15rem;
    color: #0F253F;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #D49E35;
}

.servicio-card ul {
    list-style: none;
    margin-top: 15px;
}

.servicio-card ul li {
    font-size: 0.95rem;
    color: #4A5568;
    margin-bottom: 10px;
    position: relative;
    padding-left: 18px;
}

.servicio-card ul li::before {
    content: "•";
    color: #D49E35;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* SECCIÓN CONTACTO */
.contacto-section {
    background-color: #0F253F;
    color: #FFFFFF;
    padding: 70px 0;
}

.contacto-header-destacado {
    text-align: center;
    margin-bottom: 45px;
}

.contacto-header-destacado h2 {
    font-size: 2.5rem;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 12px;
}

.linea-decorativa-contacto {
    width: 80px;
    height: 4px;
    background-color: #D49E35;
    margin: 0 auto 18px auto;
    border-radius: 2px;
}

.contacto-subtitulo-principal {
    font-size: 1.1rem;
    color: #D49E35;
    font-weight: 600;
    font-style: italic;
}

.container-contacto {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contacto-info-box {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.texto-introductorio-contacto {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #E2E8F0;
    margin-bottom: 20px;
}

.datos-contacto p {
    font-size: 1rem;
    line-height: 1.6;
    color: #F7FAFC;
    margin-bottom: 10px;
}

.zonas-destacadas {
    font-size: 1.2rem;
    color: #D49E35;
    margin: 15px 0 25px 0;
}

.btn-whatsapp-directo {
    display: inline-block;
    padding: 16px 30px;
    background-color: #D49E35;
    color: #0F253F;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-whatsapp-directo:hover {
    background-color: #FFFFFF;
    color: #0F253F;
    transform: translateY(-3px);
}

.contacto-mapa-box {
    flex: 1;
    min-width: 300px;
    height: 350px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(214, 158, 53, 0.4);
}

/* BLOQUE DE CONTACTO DIRECTO (TELÉFONO Y EMAIL) */
.contacto-canales-directos {
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid rgba(212, 158, 53, 0.3);
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    text-align: center;
}

.canal-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.canal-label {
    font-size: 0.85rem;
    color: #D49E35;
    text-transform: none;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.canal-valor {
    font-size: 1.15rem;
    color: #FFFFFF;
    font-weight: 700;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .container {
        padding: 50px 20px;
    }
}


/* 1 y 2. Grillas de 2 por fila (profesionales y áreas) */
.team-grid, .profesionales-container, .services-grid, .especialidades-container, .areas-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 30px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  width: 100% !important;
}

/* 3. Texto alineado a lo ancho */
.team-description, .equipo-texto, .section-description {
  max-width: 1200px !important;
  width: 100% !important;
  margin: 0 auto 30px auto !important;
}





