/* ============================================
   PLANNER - Asesoría en Gestión Empresarial
   CSS - Réplica exacta del sitio original
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&family=Alata&family=Oswald:wght@300;400;500;600;700&display=swap');

/* Variables */
:root {
    --orange: #F57C20;
    --blue-dark: #2D2A6E;
    --blue-purple: #3D3A8C;
    --gray-dark: #333333;
    --gray-light: #666666;
    --white: #ffffff;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'ABeeZee', sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   HEADER
   ============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--blue-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    transform: scaleX(1);
}

.nav-menu a.active {
    color: var(--orange);
}

/* Iconos sociales en header */
.header-social {
    display: flex;
    gap: 10px;
}

.social-circle {
    width: 40px;
    height: 40px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-circle:hover {
    background: #e06a10;
    transform: scale(1.1);
}

/* Barra naranja en header */
.header-bar {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 8px;
    background: var(--orange);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-left: 100px;
    margin-top: 80px;
}

.hero-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.hero-content h1 .text-orange {
    color: var(--orange);
}

.hero-content p {
    font-family: 'Alata', sans-serif;
    font-size: 24px;
    color: var(--white);
    font-weight: 300;
}

/* ============================================
   7 EJES DE ACCIÓN
   ============================================ */
.ejes-section {
    padding: 100px 50px;
    background: var(--white);
}

.ejes-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.ejes-left {
    flex: 1;
}

.ejes-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.ejes-title {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--gray-dark);
    line-height: 1.2;
}

.ejes-right {
    flex: 1;
}

.eje-circle-container {
    width: 450px;
    height: 450px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px;
    position: relative;
}

.eje-icon {
    width: 70px;
    height: 70px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.eje-icon i {
    color: var(--white);
    font-size: 28px;
}

.eje-item {
    display: none;
    padding-top: 40px;
}

.eje-item.active {
    display: block;
}

.eje-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.eje-item p {
    font-family: 'Alata', sans-serif;
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.8;
}

/* ============================================
   NUESTROS SERVICIOS
   ============================================ */
.servicios-section {
    padding: 80px 50px;
}

.servicios-header {
    text-align: center;
    margin-bottom: 60px;
}

.servicios-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.servicios-title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 600;
    font-style: italic;
    color: var(--orange);
}

/* Filas de servicios */
.servicio-row {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 80px;
    gap: 60px;
}

.servicio-row.reverse {
    flex-direction: row-reverse;
}

.servicio-img {
    flex: 1;
    position: relative;
}

.servicio-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 50% 50% 50% 0;
    border: 4px solid var(--orange);
    border-left-color: transparent;
    border-top-color: transparent;
}

.servicio-row.reverse .servicio-img img {
    border-radius: 50% 50% 0 50%;
    border-left-color: var(--orange);
    border-top-color: transparent;
    border-right-color: transparent;
}

.servicio-content {
    flex: 1;
    text-align: center;
}

.servicio-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 600;
    font-style: italic;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.servicio-content p {
    font-family: 'Alata', sans-serif;
    font-size: 17px;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-outline {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--orange);
    border: 2px solid var(--orange);
    padding: 12px 35px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--orange);
    color: var(--white);
}

/* ============================================
   PLANNER PLUS
   ============================================ */
.planner-plus {
    background: var(--orange);
    padding: 80px 50px;
    text-align: center;
}

.planner-plus-header {
    max-width: 1000px;
    margin: 0 auto 50px;
}

.planner-plus-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 600;
    font-style: italic;
    color: var(--white);
    margin-bottom: 20px;
}

.planner-plus-header .divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.5);
    margin: 20px 0;
}

.planner-plus-header p {
    font-family: 'Alata', sans-serif;
    font-size: 17px;
    color: var(--white);
    line-height: 1.8;
}

.planner-plus-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto 50px;
}

.planner-plus-img {
    flex: 0 0 400px;
}

.planner-plus-img img {
    width: 100%;
    border-radius: 50%;
    border: 4px solid var(--white);
}

.planner-plus-actividades {
    text-align: left;
}

.planner-plus-actividades h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 600;
    font-style: italic;
    color: var(--white);
    margin-bottom: 20px;
}

.planner-plus-actividades ul li {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    gap: 15px;
}

.planner-plus-actividades ul li i {
    font-size: 18px;
}

.btn-blue {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    background: var(--blue-dark);
    padding: 18px 50px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-blue:hover {
    background: var(--blue-purple);
}

/* ============================================
   MÁS SERVICIOS
   ============================================ */
.mas-servicios {
    padding: 80px 50px;
    background: var(--white);
}

/* ============================================
   CONTACTO
   ============================================ */
.contacto-section {
    display: flex;
    min-height: 500px;
}

.contacto-info {
    flex: 1;
    background: var(--blue-dark);
    background-image: linear-gradient(rgba(45,42,110,0.9), rgba(45,42,110,0.9)),
                      url('https://www.plannerasesoria.com/wp-content/uploads/2021/10/Planner-Plus.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.contacto-datos {
    color: var(--white);
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    font-family: 'ABeeZee', sans-serif;
    font-size: 16px;
}

.contacto-item i {
    font-size: 20px;
    width: 25px;
}

.contacto-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.contacto-form {
    flex: 1;
    background: var(--blue-purple);
    padding: 60px 80px;
}

.contacto-form h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--orange);
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 8px;
    text-align: center;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-family: 'ABeeZee', sans-serif;
    font-size: 14px;
    background: var(--white);
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.btn-enviar {
    display: block;
    width: 200px;
    margin: 30px auto 0;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    background: var(--orange);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    cursor: pointer;
    text-transform: capitalize;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-enviar:hover {
    background: #e06a10;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--blue-dark);
    padding: 30px 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    font-family: 'ABeeZee', sans-serif;
    font-size: 14px;
    color: var(--white);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--orange);
}

.copyright {
    font-family: 'ABeeZee', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 45px;
    height: 45px;
    border: 2px solid var(--gray-dark);
    border-radius: 50%;
    background: var(--white);
    color: var(--gray-dark);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--gray-dark);
    color: var(--white);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .ejes-container {
        flex-direction: column;
        text-align: center;
    }

    .eje-circle-container {
        width: 350px;
        height: 350px;
    }

    .servicio-row,
    .servicio-row.reverse {
        flex-direction: column;
    }

    .planner-plus-content {
        flex-direction: column;
    }

    .contacto-section {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        padding: 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .ejes-section,
    .servicios-section,
    .planner-plus,
    .mas-servicios {
        padding: 60px 20px;
    }

    .servicios-title {
        font-size: 36px;
    }

    .servicio-content h3 {
        font-size: 26px;
    }

    .contacto-form {
        padding: 40px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================
   SECCIÓN PROBLEMAS - Identificación del cliente
   ============================================ */
.problemas-section {
    padding: 80px 50px;
    background: var(--gray-light, #f5f5f5);
}

.problemas-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.problemas-container h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 50px;
}

.problemas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.problema-item {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.problema-item:hover {
    transform: translateY(-5px);
}

.problema-item i {
    font-size: 32px;
    color: var(--orange);
    margin-bottom: 15px;
}

.problema-item p {
    font-family: 'Alata', sans-serif;
    font-size: 16px;
    color: var(--gray-dark);
    font-style: italic;
    line-height: 1.6;
}

.problemas-cta {
    font-family: 'Alata', sans-serif;
    font-size: 20px;
    color: var(--gray-dark);
}

.problemas-cta strong {
    color: var(--orange);
}

/* ============================================
   SERVICIOS GRID - Nueva estructura
   ============================================ */
.servicios-intro {
    font-family: 'Alata', sans-serif;
    font-size: 18px;
    color: var(--gray-light);
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.8;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.servicio-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.servicio-card:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
}

.servicio-card.destacado {
    border-color: var(--orange);
    background: linear-gradient(135deg, #fff 0%, #fff5f0 100%);
}

.servicio-icon {
    width: 80px;
    height: 80px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.servicio-icon i {
    font-size: 32px;
    color: var(--white);
}

.servicio-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 15px;
}

.servicio-card p {
    font-family: 'Alata', sans-serif;
    font-size: 16px;
    color: var(--gray-light);
    line-height: 1.7;
}

.servicio-card ul {
    text-align: left;
    padding-left: 0;
}

.servicio-card ul li {
    font-family: 'Alata', sans-serif;
    font-size: 15px;
    color: var(--gray-dark);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.servicio-card ul li i {
    color: var(--orange);
    font-size: 14px;
}

.servicios-cta {
    text-align: center;
}

.btn-orange {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    background: var(--orange);
    padding: 16px 45px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background: #e06a10;
    transform: scale(1.05);
}

/* ============================================
   SECCIÓN CLIENTES
   ============================================ */
.clientes-section {
    padding: 80px 50px;
    background: var(--white);
}

.clientes-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.clientes-container h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 50px;
}

.clientes-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
}

.cliente-logo {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cliente-logo.placeholder {
    background: #f0f0f0;
    border: 2px dashed #ccc;
    border-radius: 10px;
    min-height: 80px;
}

.cliente-logo.placeholder span {
    font-family: 'ABeeZee', sans-serif;
    font-size: 12px;
    color: #999;
}

.cliente-logo img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.cliente-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive para nuevas secciones */
@media (max-width: 1024px) {
    .problemas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clientes-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .problemas-section,
    .clientes-section {
        padding: 60px 20px;
    }

    .problemas-grid {
        grid-template-columns: 1fr;
    }

    .servicios-grid {
        grid-template-columns: 1fr;
    }

    .clientes-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .problemas-container h2,
    .clientes-container h2 {
        font-size: 28px;
    }
}

/* ============================================
   PÁGINA NOSOTROS
   ============================================ */
.page-title-section {
    background: var(--blue-dark);
    padding: 150px 50px 80px;
    text-align: center;
}

.page-title-section h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 3px;
}

/* Quienes Somos */
.quienes-section {
    padding: 80px 50px;
    background: var(--white);
}

.quienes-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quienes-container h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--orange);
    margin: 0 auto 30px;
}

.quienes-intro {
    font-family: 'Alata', sans-serif;
    font-size: 18px;
    color: var(--gray-light);
    line-height: 1.9;
}

/* Equipo */
.equipo-section {
    padding: 80px 50px;
    background: #f9f9f9;
}

.equipo-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.equipo-container h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 20px;
}

.equipo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.equipo-member {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.equipo-member:hover {
    transform: translateY(-10px);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
}

.member-photo.placeholder {
    background: linear-gradient(135deg, var(--orange), #ffaa66);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-photo.placeholder i {
    font-size: 50px;
    color: var(--white);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipo-member h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 8px;
}

.member-role {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.member-desc {
    font-family: 'Alata', sans-serif;
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.6;
}

/* Valores - Nuevo estilo */
.valores-section {
    padding: 80px 50px;
    background: var(--white);
}

.valores-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.valores-container h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 20px;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.valor-card {
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.valor-card:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.valor-card .valor-icon {
    width: 80px;
    height: 80px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.valor-card .valor-icon i {
    font-size: 32px;
    color: var(--white);
}

.valor-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 15px;
}

.valor-card p {
    font-family: 'Alata', sans-serif;
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.7;
}

/* Responsive Nosotros */
@media (max-width: 1024px) {
    .equipo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-title-section {
        padding: 120px 20px 60px;
    }

    .page-title-section h1 {
        font-size: 36px;
    }

    .quienes-section,
    .equipo-section,
    .valores-section {
        padding: 60px 20px;
    }

    .equipo-grid {
        grid-template-columns: 1fr;
    }

    .valores-grid {
        grid-template-columns: 1fr;
    }
}
