
:root {
    --primary: #1f2f3f;
    --secondary: #2f3e2f;
    --accent: #008866;
    --light: #f5f7fa;
}


.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;

    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.container-header {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 18px;
    color: #1f2f3f;
}

.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #1f2f3f;
    font-weight: 500;
    transition: 0.3s;
}

.nav a:hover {
    color: #008866;
}

.hero {
    height: 100vh;
    background: linear-gradient(
        rgba(20,30,40,0.7),
        rgba(20,30,40,0.7)
    ), url('../img/hero1.png') center/cover;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 52px;
    color: white;
    max-width: 800px;
}

.hero p {
    color: #d1d5db;
    margin: 20px 0;
    font-size: 18px;
}

.beneficios {
    background: #f5f7fa;
    padding: 60px 20px;
}

.container {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.beneficio {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 300px;
}

.servicios {
    padding: 80px 20px;
    background-image: url('../img/servicios.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;

}

.grid-servicios {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.card {
    padding: 30px;
    border-radius: 10px;
    background: #f1f3f5;
    width: 300px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.cta {
    background: #1f224d;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.btn-primary {
    background: #ffffff;
    color: rgb(0, 0, 0);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #ffffff;
}

.btn-secondary {
    margin-left: 15px;
    border: 1px solid white;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-secondary:hover {
    background:#008866;;
    color: #1f2f3f;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999; /* 👈 sube prioridad */
}
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;

    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
}

.hero {
    margin-top: 80px; /* espacio para header */
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 9999;

    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.container-header {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    height: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero {
    margin-top: 80px;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f5f7fa;
    color: #1f2f3f;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 9999;

    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
}

.nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #1f2f3f;
    font-weight: 500;
    position: relative;
}

.nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #008866;
    transition: 0.3s;
}

.nav a:hover::after {
    width: 100%;
}
.hero {
    height: 100vh;
    margin-top: 5px;

    background: linear-gradient(
        rgba(10,15,20,0.75),
        rgba(10,15,20,0.75)
    ), url('../img/hero1.png') center/cover;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 50px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.hero p {
    color: #ffffff;
    margin: 25px 0;
    font-size: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, #008866, #00a87a);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0,200,150,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0,200,150,0.4);
}

.btn-secondary {
    margin-left: 15px;
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: #1f2f3f;
}

.card {
    padding: 30px;
    border-radius: 16px;
    background: white;
    width: 300px;
    transition: 0.3s;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.hero-slider {
    position: relative;
    height: 100vh;
    margin-top: 5px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide:nth-child(1) {
    background: url('../img/hero1.png') center/cover;
}

.slide:nth-child(2) {
    background: url('../img/hero2.png') center/cover;
}

.slide:nth-child(3) {
    background: url('../img/HERO3.png') center/cover;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.342);
}

.content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
}

.content h1 {
    font-size: 48px;
    font-weight: 700;
}

.content p {
    margin: 20px 0;
    color: #cbd5e1;
}

.buttons {
    margin-top: 20px;
}

/* 🔥 GLASS CARDS */

.glass-container {
    position: relative;
    z-index: 2;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.glass-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);

    padding: 30px;
    width: 260px;
    border-radius: 10px;

    color: white;
    text-align: center;
}


.proceso-radial {
    padding: 90px 20px;
    background: #ffffff;
}

.proceso-radial h2{
   font-size: 35px;
     max-width: 750px;
    margin: 0 auto;
    text-align:center;
    color: #39485c;
}

.sub {
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
    text-align:center;
    margin: 15px auto 60px;
    color: #64748b;
}

/* CONTENEDOR BASE */
.radial {
    position: relative;
    width: 900px;
    height: 600px;
    margin: auto;
    margin-right: 20px;
    align-items: center;
}

/* CENTRO */
.centro {
    position: absolute;
    top: 300px;
    left: 300px;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.centro img {
    width: 270px;
}

/* SVG LÍNEAS */
.lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.lines line {
    stroke: #94a3b8;
    stroke-width: 2;
    stroke-dasharray: 6;
    stroke-dashoffset: 200;
    transition: 1.5s ease;
}

.radial.show .lines line {
    stroke-dashoffset: 0;
}

/* 🔥 NODOS (IMPORTANTE: centrados) */
.node {
    position: absolute;
    width: 190px;
    height: 190px;

    transform: translate(-50%, -50%) scale(0.6);

    background: white;
    border-radius: 50%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.281);

    opacity: 0;
    transition: 0.5s ease;
}

/* 🔥 POSICIONES EXACTAS (COINCIDEN CON EL SVG) */

/* EXACT MATCH CON LAS LINEAS */

.n1 { left: 300px; top: 60px; }
.n2 { left: 520px; top: 150px; }
.n3 { left: 520px; top: 450px; }
.n4 { left: 300px; top: 540px; }
.n5 { left: 80px;  top: 450px; }
.n6 { left: 80px;  top: 150px; }

/* ICONO */
.node span {
    font-size: 22px;
    margin-bottom: 6px;
}

/* TEXTO */
.node p {
    font-size: 13px;
    text-align: center;
    padding: 0 10px;
    line-height: 1.3;
}

/* ACTIVACIÓN */
.radial.show .node {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* DELAY PROGRESIVO */
.radial.show .n1 { transition-delay: 0.2s; }
.radial.show .n2 { transition-delay: 0.4s; }
.radial.show .n3 { transition-delay: 0.6s; }
.radial.show .n4 { transition-delay: 0.8s; }
.radial.show .n5 { transition-delay: 1s; }
.radial.show .n6 { transition-delay: 1.2s; }


.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    margin-top: -25px;
    background: rgba(255, 255, 255, 0.116);
    backdrop-filter: blur(10px);

    transition: all 0.3s ease;
}

/* CONTENEDOR */
.header-container {
    max-width: 1200px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 10px
}

/* LOGO */
.logo img {
    height: 150px;
    transition: 0.3s;
}

/* NAV */
.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #1f2f3f;
    font-weight: 500;
    position: relative;
}

/* efecto línea */
.nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #008866;
    transition: 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

.header.scrolled {
    background: rgba(255,255,255,0.95);
}

.header.scrolled .header-container {
    padding: 10px 30px;
}

.header.scrolled .logo img {
    height: 35px;
}

/* HEADER BASE */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;

    background: transparent;
    transition: all 0.3s ease;
}

/* CONTENEDOR */
.header-container {
    max-width: 1200px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 45px 30px;
    transition: all 0.3s ease;
}

/* LOGO */
.logo img {
    height: 150px;
    transition: 0.3s;
}

/* NAV LINKS */
.nav a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    transition: 0.3s;
}

/* HOVER */
.nav a:hover {
    color: #008866;
}

/* ========================= */
/* SCROLL EFECTO PRO */
/* ========================= */

.header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* achica header */
.header.scrolled .header-container {
    padding: 12px 30px;
}

/* logo más chico */
.header.scrolled .logo img {
    height: 90px;
}

/* cambia color links */
.header.scrolled .nav a {
    color: #1f2f3f;
}

.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* NAV */
.hero-nav {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 40px;
}

/* LOGO */
.logo img {
    height: 150px;
}

/* NAV LINKS */
.nav a {
    color: white;
    margin-left: 30px;
    text-decoration: none;
}

/* SLIDES CONTENEDOR */
.slides {
    height: 100%;
    position: relative;
}

/* SLIDE */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

    opacity: 0;
    transition: opacity 0.8s ease;
}

/* ACTIVO */
.slide.active {
    opacity: 1;
    z-index: 2;
}

/* OVERLAY */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

/* CONTENIDO */
.content {
    position: relative;
    z-index: 3;

    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: white;
    padding: 0 20px;
}


.proceso-radial {
    background-image: url('../img/fondo.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.stats-full{
    position:relative;
    margin-top:-70px; /* 🔥 flota sobre hero */
    z-index:10;
}

/* BANNER COMPLETO */
.stats-box{
    width:100%;
    background:#1f224d;

    padding:20px 40px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

    box-shadow:0 20px 50px rgba(0, 0, 0, 0.479);
}

/* ITEMS */
.stat{
    text-align:center;
}

.stat h3{
    font-size:2.5rem;
    color:#ffffff;
}

.stat p{
    font-size:0.9rem;
    color:#ffffff;
}

/* HEADER BASE */
.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:20px 0;

    background: #1f224d;
    transition: all 0.3s ease;

    z-index:999;
}

/* CONTENEDOR */
.header-container{
    max-width:1200px;
    margin:0 auto;
    padding:0 30px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* LOGO */
.logo img{
    max-height:120px;
    transition: all 0.3s ease;
}

/* NAV */
.nav{
    display:flex;
    gap:30px;
}

.nav a{
    color:#ffffff;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.nav a:hover{
    color:#ffffff;
}

.header.scrolled{
    background:#ffffff18;
    padding:10px 0;
    box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

/* logo más chico */
.header.scrolled .logo img{
    max-height:50px;
}

.footer{
    background:#1f2f3f; /* verde similar al ejemplo */
    color:#ffffff;
    padding:20px 0 20px;
}

/* CONTENEDOR */
.footer-container{
    max-width:1200px;
    margin:0 auto;
    padding:0 30px;
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:10px;
}

/* LOGO */
.footer-brand{
    display:flex;
    align-items:center;
}

.footer-brand img{
    width:180px;
    height:auto;
}

/* TITULOS */
.footer-col h4{
    margin-bottom:15px;
    font-size:1rem;
    position:relative;
}

.footer-col h4::after{
    content:'';
    display:block;
    width:30px;
    height:2px;
    background:#008866;
    margin-top:5px;
}

/* LINKS */
.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col li{
    margin-bottom:8px;
}

.footer-col a{
    color:#fff9f9;
    text-decoration:none;
    font-size:0.9rem;
}

.footer-col a:hover{
    color:#ffffff;
}

/* CONTACTO */
.footer-col p{
    font-size:0.9rem;
    margin-bottom:8px;
}

/* REDES */
.footer-social{
    margin-top:15px;
    display:flex;
    gap:10px;
}

.footer-social a{
    width:35px;
    height:35px;
    display:flex;
    align-items:center;
    justify-content:center;

    background: rgba(255,255,255,0.15);
    border-radius:50%;
    transition:.3s;
}

.footer-social svg{
    width:18px;
    color:#fff;
}

.footer-social a:hover{
    background:#008866;
}

/* COPYRIGHT */
.footer-bottom{
    text-align:center;
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,0.2);
    font-size:0.8rem;
}

html, body{
    overflow-x: hidden;
}

.video-slide{
    position:relative;
    height:100vh;
    overflow:hidden;
}

/* VIDEO */
.bg-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

/* OVERLAY */
.video-slide .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
    z-index:2;
}

/* CONTENIDO */
.hero-content{
    position:relative;
    z-index:3;
    max-width:600px;
    margin-left:80px;
    margin-top:120px;
    color:#fff;
}

.hero-content h1{
    font-size:clamp(32px,5vw,48px);
    margin-bottom:15px;
}

.hero-content p{
    margin-bottom:20px;
    font-size:1rem;
}

/* BOTONES */
.hero-buttons{
    display:flex;
    gap:15px;
}

.btn-primary{
    background:#008866;
    color:#fff;
    padding:12px 22px;
    border-radius:25px;
}

.btn-secondary{
    border:1px solid #fff;
    color:#fff;
    padding:12px 22px;
    border-radius:25px;
}

/* GENERAL */
.services-page{
    background: linear-gradient(135deg, #eef2f3, #dfe9f3);
}

/* HERO */
.services-hero{
    background:url('../img/servicios.jpg') center/cover;
    position:relative;
    height:60vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background-size:cover;
    background-position:center;
}

.services-hero .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6);
}

.services-hero .container{
    position:relative;
    z-index:2;
    max-width:700px;
    margin:0 auto;
    padding:0 20px;
}

/* INTRO */
.services-intro{
    padding:50px 0;
    text-align:center;
    max-width:800px;
}

/* GRID */
.services-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    padding:80px 0;
}

/* CARD GLASS */
.service-card{
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border:1px solid rgba(255,255,255,0.2);
    border-radius:18px;

    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);

    transition:.3s;
}

.service-card:hover{
    transform:translateY(-5px);
}

/* HEADER */
.card-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* BOTÓN + */
.toggle{
    width:38px;
    height:38px;
    border-radius:50%;
    border:none;

    background:#1f4d36;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:18px;
    cursor:pointer;

    transition:.3s;
}

/* CONTENIDO */
.card-content{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease;
}

/* ACTIVO */
.service-card.active .card-content{
    max-height:400px;
    margin-top:15px;
}

.service-card.active .toggle{
    transform:rotate(45deg);
    background:#c9a45c;
}

/* LISTA */
.card-content ul{
    margin-bottom:15px;
    padding-left:15px;
}

.card-content li{
    margin-bottom:6px;
}

/* BOTÓN */
.btn-primary{
    background:#1f4d36;
    color:#fff;
    padding:10px 16px;
    border-radius:20px;
    display:inline-block;
}

/* RESPONSIVE */
@media (max-width:900px){
    .services-cards{
        grid-template-columns:1fr;
    }
}

.card-content{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease;
}

.service-card.active .card-content{
    margin-top:15px;
}
.services-page{
      background-image: url('../img/fondo.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

/* HERO */
.services-hero{
    position: relative;
    min-height: 50vh;
    background: url('../img/servicios.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.services-hero .overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.services-hero .container{
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-hero h1{
    margin: 0 0 12px;
}

.services-hero p{
    margin: 0;
}

/* INTRO */
.services-intro{
    padding: 50px 0;
    text-align: center;
    max-width: 800px;
}

/* GRID */
.services-cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 40px 0;
    align-items: start; /* CLAVE */
}

/* CARD */
.service-card{
    align-self: start; /* CLAVE */
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
    transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.14);
}

/* HEADER */
.card-header{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.card-header h3{
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.3;
}

/* BOTÓN + */
.toggle{
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #1f4d36;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform .25s ease, background .25s ease;
}

/* CONTENIDO */
.card-content{
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, margin-top .35s ease;
    margin-top: 0;
}

.service-card.active .card-content{
    margin-top: 15px;
}

.service-card.active .toggle{
    transform: rotate(45deg);
    background: #c9a45c;
}

/* LISTA */
.card-content ul{
    margin: 0 0 15px;
    padding-left: 18px;
}

.card-content li{
    margin-bottom: 8px;
}

/* BOTÓN */
.btn-primary{
    display: inline-block;
    background: #1f4d36;
    color: #fff;
    padding: 10px 16px;
    border-radius: 20px;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px){
    .services-cards{
        grid-template-columns: 1fr;
    }
}

.services-hero{
    position:relative;
    height:65vh;
    background:url('../img/hero2.png') center/cover no-repeat;
    align-items:center;
    justify-content:center;
    text-align:center;
    background-size:cover;
    background-position:center;
}

/* OSCURECER IMAGEN (CLAVE) */
.services-hero .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
}

/* CONTENIDO */
.hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
    margin:0 auto;
    padding:0 20px;
}

/* TÍTULO */
.services-hero h1{
    font-size:3rem;
    margin-bottom:15px;
    line-height:1.2;
}

/* TEXTO */
.services-hero p{
    font-size:1.1rem;
    opacity:0.9;
    max-width:600px;
    margin-top:50px;
    margin:0 auto;
}

.services-intro{
      max-width:900px;
    margin:0 auto;
}

.services-intro p{
    max-width:900px;
    margin:0 auto;
    text-align: justify;
    font-size:1.1rem;
    line-height:1.6;
    color:#000000;
}

.about-hero{
    position:relative;
    height:75vh;
    background:url('../img/nosotros.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
}

.about-hero .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
}

.hero-content{
    position:relative;
    z-index:2;
}

.about-hero h1{
    font-size:2.8rem;
    margin-bottom:10px;
}

.hero-line{
    display:block;
    width:60px;
    height:3px;
    background:#c9a45c;
    margin:10px auto 15px;
}

.about-hero p{
    opacity:0.9;
}

.about-section{
    padding:80px 20px;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-text{
    max-width:520px;
}

.about-text ul{
    margin-top:15px;
}

.about-slider img{
    width:100%;
    border-radius:14px;
}

.about-mission{
    background:#1f4d36;
    color:#fff;
    padding:80px 20px;
    text-align:center;
}

.mission-text{
    max-width:600px;
    margin:0 auto 30px;
}

.mission-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.about-section{
    padding: 80px 20px;
}

.about-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text{
    max-width: 520px;
    margin-left: 20px;
}

.about-slider{
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.about-slider .swiper-wrapper{
    align-items: stretch;
}

.about-slider .swiper-slide{
    width: 100%;
}

.about-slider .swiper-slide img{
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
}

.about-slider .swiper-pagination{
    margin-top: 12px;
    position: relative;
    bottom: auto !important;
}

.about-slider .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    opacity: 1;
    background: rgba(31,77,54,0.35);
}

.about-slider .swiper-pagination-bullet-active{
    background: #1f4d36;
}

@media (max-width: 900px){
    .about-grid{
        grid-template-columns: 1fr;
    }

    .about-text{
        max-width: 100%;
    }

    .about-slider .swiper-slide img{
        height: 320px;
    }
}

.about-mission-pro{
    padding:100px 20px;
    background:#1f2f3f;
}

.mission-grid{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:80px;
    align-items:center;
}

.mission-left h2{
    font-size:3rem;
    line-height:1.1;
    margin-left: 25px;
     color:#ffffff;
}

.mission-tag{
    font-size:0.8rem;
    letter-spacing:2px;
    color:#ffffff;
}

.mission-right p{
    margin-bottom:20px;
    line-height:1.6;
     color:#ffffff;
}

.mission-right ul{
    padding-left:18px;
     color:#ffffff;
}

.mission-right li{
    margin-bottom:8px;
     color:#ffffff;
}

.about-values-pro{
    padding:80px 20px;
    background:#f5f7fa;
    text-align:center;
}

.section-title{
    margin-bottom:40px;
}

.values-pro-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:30px;
}

.value-pro img{
    width:40px;
    margin-bottom:10px;
}

.value-pro h3{
    color:#c43c3c;
    font-size:0.9rem;
    letter-spacing:1px;
    margin-bottom:8px;
}

.value-pro p{
    font-size:0.85rem;
    color:#555;
}

.about-values-pro{
    padding:90px 20px;
    background:#f7f7f7;
    text-align:center;
}

.values-pro-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:30px;
}

/* CARD */
.value-pro{
    padding:25px;
    border-radius:14px;
    transition:0.3s;
}

.value-pro:hover{
    transform:translateY(-5px);
}

/* ICONOS */
.value-pro svg{
    width:38px;
    height:38px;
    stroke:#3f9b6d;
    margin-bottom:12px;
}

/* TITULO */
.value-pro h3{
    font-size:0.9rem;
    letter-spacing:1px;
    color:#1f2f3f;
    margin-bottom:8px;
}

/* TEXTO */
.value-pro p{
    font-size:0.85rem;
    color:#000000;
}

.contact-section{
    position:relative;
    padding:100px 20px;
    background:url('../img/2.JPG') center/cover no-repeat;
}

.contact-section .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
}

/* CONTENEDOR */
.contact-container{
    position:relative;
    z-index:2;
}

/* GRID */
.contact-grid{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:60px;
}

/* INFO */
.contact-info{
    color:#fff;
    max-width:400px;
}

/* DERECHA */
.contact-right{
    display:flex;
    flex-direction:column;
    gap:25px;
}

/* FORM GLASS REAL */
.contact-form-glass{
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(16px);
    padding:30px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,0.25);
}

/* INPUTS BONITOS */
.contact-form-glass input,
.contact-form-glass select,
.contact-form-glass textarea{
    width:100%;
    padding:12px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,0.3);
    background:rgba(255,255,255,0.25);
    color:#fff;
    margin-bottom:12px;
}

/* PLACEHOLDER */
.contact-form-glass input::placeholder,
.contact-form-glass textarea::placeholder{
    color:rgba(255,255,255,0.7);
}

/* FILAS */
.form-row{
    display:flex;
    gap:10px;
}

/* BOTÓN */
.contact-form-glass button{
    width:100%;
    background:#1f4d36;
    color:#fff;
    padding:14px;
    border:none;
    border-radius:25px;
    font-weight:600;
}

/* CALENDARIO */
.calendar-box{
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(16px);
    padding:20px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,0.25);
    color:#fff;
}

.calendar-box h3{
    margin-bottom:15px;
}

/* RESPONSIVE */
@media(max-width:900px){
    .contact-grid{
        grid-template-columns:1fr;
    }

    .form-row{
        flex-direction:column;
    }
}


.services-hero{
    position: relative;
    min-height: 60vh;
    background: url('../img/hero2.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    overflow: hidden;
}

.services-hero .overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.60);
}

.services-hero-content{
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.services-hero-content h1{
    margin: 0 0 14px;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.1;
    color: #fff;
}

.services-hero-content p{
    margin: 0 auto;
    max-width: 620px;
    font-size: 1.08rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.92);
}

.about-hero{
    position: relative;
    min-height: 68vh;
    background: url('../img/nosotros.jpg') center/cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 120px 20px 60px;
    overflow: hidden;
}

.about-hero .overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.60);
}

.about-hero-content{
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.about-hero-content h1{
    margin: 0 0 14px;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.1;
    color:  rgba(255,255,255,0.92);
}

.about-hero-content p{
    margin: 0 auto;
    max-width: 620px;
    font-size: 1.08rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.92);
}

.about-text{
    max-width: 600px;
}

/* TÍTULO */
.about-text h2{
    font-size: 2.2rem;
    margin-bottom: 15px;
}

/* TEXTO PRINCIPAL */
.about-description{
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 20px;
    color: #2f3e4f;
}

/* BLOQUE */
.about-help{
    margin-top: 10px;
}

/* SUBTÍTULO */
.about-help h3{
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* TEXTO */
.about-sub{
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: #4b5d6f;
}

/* LISTA */
.about-list{
    padding-left: 18px;
    margin: 0;
}

.about-list li{
    margin-bottom: 10px;
    line-height: 1.5;
    text-align: justify;
    font-size: 0.95rem;
}

.about-mission-pro{
    padding: 100px 20px;
    background: #1f2f3f;
}

/* GRID MÁS EQUILIBRADO */
.mission-grid{
    display: grid;
    grid-template-columns: 1fr 1fr; /* 🔥 antes 1fr 1.2fr */
    gap: 60px;
    align-items: center;
}

/* IZQUIERDA */
.mission-left{
    max-width: 420px;
}

.mission-tag{
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    text-align: left;
    margin-bottom: 10px;
    display: block;
}

.mission-left h2{
    font-size: 2.2rem; /* 🔥 BAJAMOS tamaño */
    line-height: 1.3;
    color: #ffffff;
}

/* DERECHA */
.mission-right{
    max-width: 520px; /* 🔥 controla ancho lectura */
}

/* TEXTO PRINCIPAL */
.mission-right p{
    font-size: 0.95rem; /* 🔥 igual que valores */
    line-height: 1.7;
    text-align: justify; /* 🔥 clave */
    margin-bottom: 20px;
    color: #ffffff;
}

/* LISTA */
.mission-right ul{
    padding-left: 18px;
}

/* ITEMS */
.mission-right li{
    margin-bottom: 10px;
    font-size: 0.9rem; /* 🔥 mismo tamaño que valores */
    line-height: 1.6;
    color: #ffffff;
}

/* MEJORA VISUAL LISTA */
.mission-right li::marker{
    color: #c9a45c;
}

/* RESPONSIVE */
@media(max-width: 900px){
    .mission-grid{
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mission-right{
        max-width: 100%;
    }

    .mission-right p{
        text-align: center;
    }
}

.about-values-pro{
    padding: 100px 20px;
    background: #f7f9fb;
}

/* TÍTULO */
.section-title{
    max-width: 1200px;
    margin: 0 auto 60px;
    font-size: 2rem;
    color: #1f2f3f;
    text-align: left;
}

/* GRID */
.values-pro-grid{
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

/* CARD */
.value-pro{
    text-align: center;
    padding: 25px 15px;
    border-radius: 14px;
    transition: 0.3s ease;

    background: transparent;
}

/* HOVER PRO */
.value-pro:hover{
    transform: translateY(-6px);
}

/* ICONOS */
.value-pro svg{
    width: 42px;
    height: 42px;
    stroke: #3f9b6d;
    margin-bottom: 15px;
}

/* TITULO */
.value-pro h3{
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1f2f3f;
}

/* TEXTO */
.value-pro p{
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.5;
}

/* RESPONSIVE */
@media(max-width:900px){
    .values-pro-grid{
        grid-template-columns: 1fr 1fr;
    }
}

/* DIRECCIONES */
.footer-address{
    margin-bottom:10px;
}

.footer-address strong{
    display:block;
    font-size:0.85rem;
    color:#c9a45c;
}

.footer-address span{
    font-size:0.8rem;
    color:#d1d5db;
}

/* TELÉFONO Y MAIL */
.footer-phone,
.footer-mail{
    font-size:0.85rem;
    margin-bottom:6px;
    color:#ffffff;
}

/* ESPACIADO GENERAL */
.footer-col p{
    margin:5px 0;
}

/* REDUCIR ALTURA GENERAL */
.footer{
    padding:35px 0 15px;
}

/* LOGO MÁS CHICO */
.footer-brand img{
    width:160px;
}

/* GRID MÁS COMPACTO */
.footer-container{
    gap:40px;
    align-items:flex-start;
}

/* COPYRIGHT MÁS PEGADO */
.footer-bottom{
    margin-top:15px;
    padding-top:10px;
}


/* FOOTER GENERAL */
.footer{
    background:#1f2f3f;
    padding:30px 0 15px; /* 🔥 MÁS COMPACTO */
}

/* CONTENEDOR */
.footer-container{
    max-width:1100px;
    margin:0 auto;
    padding:0 20px;

    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:40px;

    align-items:center; /* 🔥 centra vertical */
}

/* LOGO CENTRADO */
.footer-brand{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

/* LOGO */
.footer-brand img{
    width:180px; /* 🔥 mejor tamaño */
    height:auto;
    margin-bottom:15px;
}

/* REDES */
.footer-social{
    display:flex;
    gap:12px;
}

/* ICONOS */
.footer-social svg{
    width:20px;
    height:20px;
    stroke:#ffffff;
}

/* BOTONES REDES */
.footer-social a{
    width:38px;
    height:38px;
    border-radius:50%;
    background:rgba(255,255,255,0.1);

    display:flex;
    align-items:center;
    justify-content:center;

    transition:0.3s;
}

.footer-social a:hover{
    background:#008866;
}

/* TITULOS */
.footer-col h4{
    margin-bottom:10px;
    font-size:0.95rem;
}

/* LINKS */
.footer-col a{
    font-size:0.85rem;
}

/* CONTACTO COMPACTO */
.footer-address{
    margin-bottom:8px;
}

.footer-address strong{
    font-size:0.8rem;
    color:#c9a45c;
}

.footer-address span{
    font-size:0.8rem;
}

/* COPYRIGHT */
.footer-bottom{
    margin-top:15px;
    padding-top:10px;
    font-size:0.75rem;
}

.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;

    width:55px;
    height:55px;

    background:#25D366;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:9999;
}

.whatsapp-float svg{
    width:26px;
    height:26px;
}

.footer{
    font-family: 'Inter', sans-serif;
}

/* 🔥 UNIFICAR TODA LA TIPOGRAFÍA DEL FOOTER */
.footer,
.footer *{
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9rem;
    font-weight: 400;
    color: #ffffff;
}

/* TITULOS */
.footer h4{
    font-size: 0.95rem;
    font-weight: 600;
}

/* DIRECCIONES (QUITAR DIFERENCIA) */
.footer-address strong{
    font-weight: 500;
    color: #ffffff; /* 🔥 antes dorado */
}

.footer-address span{
    color: #ffffff;
}

/* TELEFONO Y CORREO */
.footer-phone,
.footer-mail{
    font-size: 0.9rem;
    font-weight: 400;
    color: #ffffff;
}

/* LINKS */
.footer a{
    color: #ffffff;
    text-decoration: none;
}

/* CONTENIDO HERO (UNIFICADO) */
.content{
    position: relative;
    z-index: 3;

    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* 🔥 centra horizontal */
    
    text-align: center;
    color: white;
    padding: 0 20px;

    max-width: 700px;
    margin: 0 auto;
}

@media (max-width:768px){

    .content{
        padding: 0 20px;
        text-align: center;
    }

    .content h1{
        font-size: 26px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .content p{
        font-size: 14px;
    }

    .buttons,
    .hero-buttons{
        display:flex;
        flex-direction: column;
        gap:10px;
        margin-top:15px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        max-width:260px;
        margin:0 auto;
    }
}

@media (max-width:768px){

    .radial{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:15px;
        height:auto;
        width:100%;
        margin:0 auto;
    }

    .centro{
        position:relative;
        transform:none;
        top:auto;
        left:auto;
        margin-bottom:20px;
    }

    .centro img{
        width:120px;
    }

    .node{
        position:relative;
        transform:none;
        width:90%;
        max-width:320px;
        height:auto;
        border-radius:12px;
        padding:15px;
    }

    .node p{
        font-size:13px;
    }

    .lines{
        display:none;
    }
}

@media (max-width:768px){

    .stats-box{
        grid-template-columns:1fr 1fr;
        gap:10px;
        padding:20px;
    }

    .stat h3{
        font-size:1.6rem;
    }
}

@media (max-width:768px){

    .grid-servicios{
        flex-direction:column;
        align-items:center;
    }

    .card{
        width:90%;
        max-width:320px;
    }
}

/* =========================
   MISIÓN
========================= */

.mision-banner {
  background: #1f2f3f;
  padding: 100px 0;
}

.mision-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.mision-title h2 {
  font-size: 48px;
  color: #fff;
  margin: 0;
}

.mision-content p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.mision-content ul {
  padding-left: 20px;
}

.mision-content li {
  color: #ffffff;
  margin-bottom: 12px;
}

.mision-content li::marker {
  color: #ff3c3c;
}


/* =========================
   VALORES
========================= */

.valores-section {
  padding: 100px 0;
  background: #ffffff;
}

.valores-heading {
  text-align: left;
  margin-bottom: 60px;
}

.valores-heading h2 {
  font-size: 48px;
  color: #1f2f3f;
  margin: 0;
  white-space: nowrap;
}

/* grid */
.valores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* card */
.valor-item {
  text-align: left;
}

.valor-item svg {
  width: 40px;
  height: 40px;
  stroke: #1f2f3f;
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 15px;
}

.valor-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ff3c3c;
}

.valor-item p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .mision-wrap {
    grid-template-columns: 1fr;
  }

  .valores-grid {
    grid-template-columns: 1fr 1fr;
  }

  .valores-heading h2 {
    white-space: normal;
  }
}


@media (max-width:768px){

    /* 🔥 RESET TOTAL DEL RADIAL */
    .radial{
        all: unset;
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:15px;
        padding:40px 20px;
    }

    .centro{
        all: unset;
        display:flex;
        justify-content:center;
        margin-bottom:20px;
    }

    .centro img{
        width:120px;
    }

    .node{
        all: unset;
        background:#fff;
        width:100%;
        max-width:320px;
        padding:15px;
        border-radius:12px;
        box-shadow:0 10px 25px rgba(0,0,0,0.1);

        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .node span{
        font-size:20px;
        margin-bottom:5px;
    }

    .node p{
        font-size:13px;
        line-height:1.4;
    }

    .lines{
        display:none !important;
    }
}

@media (max-width:768px){

    .buttons,
    .hero-buttons{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:12px;
        margin-top:20px;
    }

    .buttons a,
    .hero-buttons a{
        width:100%;
        max-width:260px;
        text-align:center;
    }

    .btn-primary,
    .btn-secondary{
        display:block;
    }
}

.valores-section {
  padding: 100px 0;
  background: #ffffff;
}

/* encabezado */
.valores-heading {
  margin-bottom: 60px;
  max-width: 700px;
}

.valores-heading h2 {
  font-size: 44px;
  color: #0f3d3e; /* verde agua oscuro */
  margin-bottom: 10px;
}

.valores-heading p {
  color: #5f6f73;
  font-size: 16px;
}

/* grid */
.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* card */
.valor-item {
  padding: 25px;
  border-radius: 14px;
  transition: 0.3s;
}

/* hover elegante */
.valor-item:hover {
  background: rgba(15, 61, 62, 0.05);
  transform: translateY(-4px);
}

/* iconos */
.valor-item svg {
  width: 42px;
  height: 42px;
  stroke: #0f3d3e;
  fill: none;
  stroke-width: 1.6;
  margin-bottom: 15px;
}

/* título */
.valor-item h3 {
  font-size: 18px;
  color: #0f3d3e;
  margin-bottom: 8px;
}

/* texto */
.valor-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* responsive */
@media (max-width: 900px) {
  .valores-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .valores-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:768px){

    /* 🔥 MATAR EL RADIAL ORIGINAL */
    .radial{
        width:100% !important;
        height:auto !important;
        display:flex !important;
        flex-direction:column !important;
        align-items:center !important;
        gap:15px !important;
        margin:0 auto !important;
    }

    .lines{
        display:none !important;
    }

    /* 🔥 CENTRO */
    .centro{
        position:relative !important;
        top:auto !important;
        left:auto !important;
        transform:none !important;
        margin-bottom:20px;
    }

    .centro img{
        width:120px;
    }

    /* 🔥 NODOS → TARJETAS */
    .node{
        position:relative !important;
        transform:none !important;
        top:auto !important;
        left:auto !important;

        width:90% !important;
        max-width:320px;

        height:auto !important;

        padding:15px;
        border-radius:12px;

        background:#fff;
        box-shadow:0 10px 25px rgba(0,0,0,0.1);

        opacity:1 !important;
    }

}

.valores-section {
  padding: 100px 0;
  background: #ffffff;
}

/* HEADER */
.valores-header {
  margin-bottom: 60px;
}

/* 🔥 TÍTULO EN UNA SOLA LÍNEA */
.valores-title {
  font-size: 35px;
  font-weight: 700;
  margin-left: 10px;
  color: #0f3d3e;

  white-space: nowrap;
  width: auto;
  max-width: none;
}

/* línea */
.valores-line {
  width: 100%;
  height: 4px;
  background: #d94c4c;
  margin-top: 15px;
}

/* GRID HORIZONTAL */
.valores-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

/* ITEM */
.valor-item {
  text-align: left;
}

/* ICONOS */
.valor-item svg {
  width: 40px;
  height: 40px;
  stroke: #0f3d3e;
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 15px;
}

/* TITULO */
.valor-item h3 {
  font-size: 16px;
  color: #16beb6;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

/* TEXTO */
.valor-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .valores-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .valores-title {
    white-space: normal; /* evita que se rompa en móvil */
  }
}

@media (max-width: 500px) {
  .valores-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:768px){

    .radial{
        gap:20px !important;
        padding:20px 15px;
    }

    .node{
        margin-bottom:10px;
    }

}

@media (max-width:768px){

    .node{
        background:#ffffff;
        border-radius:16px;
        padding:18px;

        box-shadow:0 15px 35px rgba(0,0,0,0.12);

        text-align:center;
    }

    .node span{
        font-size:22px;
        display:block;
        margin-bottom:8px;
    }

    .node p{
        font-size:14px;
        color:#1f2f3f;
        line-height:1.4;
    }

}


.valores-section {
  padding-top: 40px; /* 🔥 antes estaba muy abajo */
}


.mision-hero .container,
.valores-section .container {
  max-width: 1200px;
  margin: 0 auto;
}



/* BOTÓN HAMBURGUESA */
.menu-toggle{
    display:none;
    flex-direction:column;
    cursor:pointer;
    gap:5px;
}

.menu-toggle span{
    width:25px;
    height:3px;
    background:#fff;
    border-radius:2px;
    transition:0.3s;
}

/* MOBILE */
@media (max-width:768px){

    .menu-toggle{
        display:flex;
        z-index:1001;
    }

    .nav{
        position:fixed;
        top:0;
        right:-100%;
        width:70%;
        height:100vh;

        background:#1f2f3f;

        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:30px;

        transition:0.3s;
        z-index:1000;
    }

    .nav a{
        color:#fff;
        font-size:18px;
    }

    /* ACTIVO */
    .nav.active{
        right:0;
    }

    /* ANIMACIÓN HAMBURGUESA → X */
    .menu-toggle.active span:nth-child(1){
        transform:rotate(45deg) translate(5px,5px);
    }

    .menu-toggle.active span:nth-child(2){
        opacity:0;
    }

    .menu-toggle.active span:nth-child(3){
        transform:rotate(-45deg) translate(6px,-6px);
    }

}

@media (max-width:768px){

    .menu-toggle{
        display:flex;
        position:relative;
        z-index:1001;
    }

    .nav{
        position:fixed;
        top:0;
        right:-100%;
        width:75%;
        height:100vh;

        background:#1f2f3f;

        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:30px;

        transition:0.3s;
    }

    .nav.active{
        right:0;
    }

}

/* ===== FOOTER PRO ===== */

.footer-pro {
  background: linear-gradient(180deg, #0f2b3a, #0b1f2a);
  color: #cfd8dc;
  padding-top: 10px;
  font-family: 'Inter', sans-serif;
}

/* GRID */
.footer-pro-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding: 0 20px;
}

/* COLUMNAS */
.footer-pro-col h4 {
  color: #00bfa6; /* verde agua */
  margin-bottom: 20px;
  font-size: 16px;
  letter-spacing: 0.5px;
}

/* BRAND */
.footer-pro-col.brand img {
  width: 250px;
  margin-bottom: 15px;
}

.footer-desc {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* LINKS */
.footer-pro-col ul {
  list-style: none;
  padding: 0;
}

.footer-pro-col ul li {
  margin-bottom: 10px;
}

.footer-pro-col ul li a {
  color: #cfd8dc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-pro-col ul li a:hover {
  color: #00bfa6;
}

/* CONTACTO */
.footer-item span {
  color: #00bfa6;
  font-size: 13px;
  font-weight: 600;
}

.footer-item p {
  margin: 3px 0 12px;
  font-size: 14px;
  opacity: 0.8;
}

.footer-contact {
  font-size: 14px;
  margin-top: 5px;
}

/* REDES */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #00bfa6;
  transform: translateY(-3px);
}

/* BOTTOM */
.footer-pro-bottom {
  margin-top: 50px;
  padding: 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  opacity: 0.7;
}

@media (max-width: 1024px) {

  .footer-pro-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-pro-col.brand {
    grid-column: span 2; /* 🔥 marca ocupa todo el ancho */
    text-align: center;
  }

  .footer-desc {
    max-width: 400px;
    margin: 0 auto 20px;
  }

  .footer-social {
    justify-content: center;
  }

}

.contact-pro {
  padding: 100px 20px;
  background: #f7f9fb;
}

.contact-pro-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* IZQUIERDA */
.contact-pro-info h2 {
  font-size: 42px;
  color: #1f2f3f;
  margin-bottom: 20px;
}

.contact-pro-info p {
  color: #5a6b7b;
  line-height: 1.6;
}

.contact-items p {
  margin: 8px 0;
}

.btn-whatsapp {
  display: inline-block;
  margin-top: 20px;
  background: #00bfa6;
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  background: #009e8a;
}

/* FORM */

.contact-pro{
  position: relative;
  padding: 120px 20px;
  background: url('../img/nosotros.jpg') center/cover no-repeat;
  background-attachment: fixed;
}

.contact-pro-form {
  background: #ffffff34;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-pro-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-pro-form input,
.contact-pro-form select,
.contact-pro-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.row {
  display: flex;
  gap: 10px;
}

.contact-pro-form button {
  background: #1f2f3f;
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.contact-pro-form button:hover {
  background: #00bfa6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-pro-grid {
    grid-template-columns: 1fr;
  }

  .row {
    flex-direction: column;
  }
}
