/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/

@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap');

/* VARIABLES GLOBALES Y PALETA DE COLORES */
:root {
	--color-primario: #061B4D;
	--color-primario-rgb: 6, 27, 77;
	--color-secundario: #F97316;
    --text-color: #14213D;
	--bg: #FEFEFE;
	--fondo-card-soluciones: #EEE;
/*     --text-muted: #5A6E85; */
    --light: #F7F8FA;
    --white: #FEFEFE;
    --border: #DADCE6; 
    --max-width: 120rem;
    --padding-side: 40px;
    --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
	--menu-height: 9rem;
	--menu-height-movil: 7.5rem;
    /* ########## DESKTOP ############# */
    --size-titulo-desktop: 4rem;
	--weight-titulo-desktop: 500;
	--bottom-titulo-desktop: 3rem;
	
    --size-subtitulo-desktop: 3.2rem;
	--weight-subtitulo-desktop: 600;
	--bottom-subtitulo-desktop: 1rem;
	
    --size-subsubtitulo-desktop: 2rem;
	--weight-subsubtitulo-desktop: 600;
	--bottom-subsubtitulo-desktop: 1rem;
	
	--size-texto-desktop: 1.9rem;
	--weight-texto-desktop: 400;
	--bottom-texto-desktop: 2rem;
	--line-height-texto-desktop: 1.3;
    /* ########## TABLET ############# */
    --size-titulo-tablet: 3.4rem;
	--size-texto-tablet: 1.8rem;
	/* ########## MOVIL ############# */
    --size-titulo-movil: 2.6rem;
	--weight-titulo-movil: 600;
	--line-height-titulo-movil: 1.1;
	
    --size-texto-movil: 1.6rem;
	--weight-texto-movil: 400;
	--line-height-texto-movil: 1.3;
	--letter-spacing-texto-movil: 0;
    
    --container-max: 1200px;
}

/* RESET GENERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	scroll-behavior: smooth;
	font-family: "Google Sans Flex", sans-serif;
}

body {
    background-color: var(--bg) !important;
    overflow-x: hidden;
	
/* 	padding-top: var(--menu-height); */
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-shadow: none;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* COMPONENTES REUTILIZABLES */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: var(--padding-side);
    padding-right: var(--padding-side);
}

/* BOTONES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primario);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--color-secundario);
	color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--color-secundario);
    color: var(--color-secundario);
}

.btn-secondary:hover {
    background-color: var(--color-secundario);
    color: var(--white);
}

.btn-cta {
    background-color: var(--color-secundario);
    color: var(--white);
    padding: 14px 32px;
    font-weight: 600;
}

.btn-cta:hover {
    background-color: var(--color-primario);
}

/* MAQUETACIÓN DEL HEADER */
.main-header {
    height: var(--menu-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
	transition: background-color 0.3s ease,
                box-shadow 0.3s ease;
	
/* 	border: 1px solid blue; */
}

.main-header.scrolled {
    background-color: var(--bg);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
	gap: 5rem;
    height: 100%;
/*     max-width: var(--max-width); */
	width: 90%;
    margin: 0 auto;
/*     padding: 0 var(--padding-side); */
	
/* 	border: 1px solid red; */
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 4.5rem;
    width: auto;
    display: block;
    object-fit: contain;
}

.main-nav ul {
    display: flex;
    gap: 32px;
}

.main-nav a {
    position: relative;
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--text-color);
}

.main-nav a:hover, .main-nav a.active {
    color: var(--color-secundario);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-secundario);
    border-radius: 2px;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 3rem;
    color: var(--color-primario);
    cursor: pointer;
}

/* MEDIUM DEVICE (768px y menor) */
@media (max-width: 768px) {
	.header-container {
		justify-content: space-between;
		gap: 0;
		width: 85%;
	}
    
    .mobile-nav-toggle {
        display: block;
    }
	
    .mobile-nav-toggle:hover {
        background: transparent;
		color: var(--color-primario);
    }

    .main-nav {
        position: absolute;
        top: 7.5rem;
        left: -100%;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        transition: var(--transition);
        padding: 20px var(--padding-side);
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
	
    .header-actions {
        display: none;
    }
	
	.main-header {
		height: var(--menu-height-movil);
	}

	.logo-img {
		height: 4rem;
	}
}

/* ################################### */
/* FOOTER */
/* ################################### */
footer {
    width: 100%;
	background-color: var(--color-primario);
	color: white;
	font-size: 1.6rem;
	display: flex;
	justify-content: center;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
}

/* --- Estilos del Banner --- */
.hero-banner {
    width: 100%;
    min-height: 55rem;
	background-image: url('/wp-content/uploads/2026/09/fondo-aiva-home-2.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
    display: flex;
    align-items: center;
	
/* 	border-image: fill 0 linear-gradient(transparent 70%, #fff 100%); */
}

/* .hero-banner {
	position: relative;
	width: 100%;
	overflow: hidden;
} */

/* .hero-image {
	display: block;
	width: 100%;
	height: auto;
} */

.hero-container {
    width: 100%;
    margin-left: 5%;
/* 	position: absolute;
	left: 7.5%;
    top: 0;
    height: 100%;

    display: flex;
    align-items: center; */
}

/* --- Contenido (Texto y Botones) --- */
.hero-content {
  position: relative;
	width: 100%;
/*   z-index: 2; */
/*   max-width: 70rem; */
	
/* 	border: 1px solid red; */
}

.br-desktop {
	display: inline;
}

.orange-line {
    display: block;
    width: 6rem;
    height: 0.5rem;
    background: var(--color-secundario);
    margin-bottom: 1.2rem;
}

.hero-content h1 {
  font-size: 7rem;
  font-weight: 600;
  color: var(--color-primario);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.hero-content h1 .highlight {
  color: var(--color-secundario);
}

.hero-content p {
  font-size: 2rem;
	font-weight: 400;
  line-height: 1.3;
  color: var(--color-primario);
  margin-bottom: 3.5rem;
	
/* 	width: 35rem; */
}

.w-35{
	width: 35rem;
}

.w-50{
	width: 50rem;
}

/* ========================================
   BLOQUES
======================================== */

.nosotros-features {
/*     width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 3rem;
	
	justify-content: flex-start;
	
	border: 1px solid blue; */
	
	
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 3rem;
/*     margin-top: 3rem; */

/*     border: 1px solid blue; */
}


/* ========================================
   CADA ITEM
======================================== */

.nosotros-item {
/* 	width: 12rem; */
	
    display: flex;
    flex-direction: column;
    align-items: center;

    position: relative;

    color: var(--color-primario);
    text-align: center;

    box-sizing: border-box;

/*     border: 1px solid orange; */
}


/* Separadores verticales */

/* .nosotros-item:not(:last-child)::after {
    content: "";
    position: absolute;

    top: 0;
    right: 0;

    width: 1px;
    height: 100%;

	background: var(--color-primario);
} */

.nosotros-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nosotros-icon img {
    width: 3.5rem;
    height: 3.5rem;
    display: block;
}


/* ========================================
   LÍNEA NARANJA
======================================== */

.item-line {
    display: block;
    width: 2.5rem;
    height: 0.25rem;
    background: var(--color-secundario);
    margin: 0.9rem 0;
}


/* ========================================
   TEXTO
======================================== */

.nosotros-item h3 {
    margin: 0;
    color: var(--color-primario);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

/* --- Botones --- */
.hero-actions {
  display: flex;
  gap: 1.5rem;
}

.boton {
  display: inline-flex;
  align-items: center;
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.6rem;
  transition: all 0.3s ease;
}

.boton-primary {
  background-color: var(--color-primario);
  color: #ffffff;
  border: 2px solid var(--color-primario);
}

.boton-primary:hover {
  background-color: transparent;
  color: var(--color-primario);
  border: 2px solid var(--color-primario);
}

.boton-secondary {
  background-color: transparent;
  color: var(--color-secundario);
  border: 2px solid var(--color-secundario);
}

.boton-secondary:hover {
  background-color: var(--color-secundario);
  color: #ffffff;
}

.boton-secondary-white {
  background-color: transparent;
  color: var(--text-color);
  border: 2px solid var(--text-color);
}

.boton-secondary-white:hover {
  background-color: var(--color-primario);
  color: #ffffff;
  border: 2px solid var(--color-primario);
}

/* ################################### */
/* ESPACIO LUEGO DE PORTADA */
/* ################################### */
.espacio-portada{
	height: 3rem;
}
/* ################################### */
/* SECCIÓN TÍTULOS DOBLES */
/* ################################### */
.seccion-titulos-dobles{
	width: 80%;
	margin: 3rem auto;
	text-align: center;
}

.seccion-titulos-dobles h2{
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--color-secundario);
	text-transform: uppercase;
	margin: 0;
}

.seccion-titulos-dobles h3{
	font-size: 2.7rem;
	font-weight: 700;
	color: var(--color-primario);
	text-transform: uppercase;
	margin: 0;
}


/* ################################### */
/* CARTILLA DE SOLUCIONES */
/* ################################### */
/* ===== GRID ===== */
.soluciones-grid{
	width: 90%;
	margin: 0 auto;
	margin-bottom: 7rem;	
    display:grid;
	grid-template-columns:repeat(4,1fr);
	gap: 2rem;
}

/* ===== CARD ===== */
.sol-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:7px;
  overflow:hidden;
  box-shadow:0 2px 10px rgba(16,24,40,.07);
  display:flex;
  flex-direction:column;
  transition:transform .25s ease, box-shadow .25s ease;
	
/* 	border: 1px solid blue; */
}

.sol-card:hover{
/*   transform:translateY(-4px); */
  box-shadow:0 14px 34px rgba(16,24,40,.10);
}

/* ===== TOP CONTENT ===== */
.sol-card-content{
  padding: 2rem 1.5rem;
}

.sol-card-content p{
	font-size: 1.7rem;
	font-weight: 500;
	line-height: 1.4;
	color: var(--text-color);
}

.sol-card-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.sol-card-header h4{
  margin:2px 0 0;
  font-size:1.8rem;
  line-height:1.25;
  font-weight:700;
  text-transform:uppercase;
  color: var(--color-primario);
}

.sol-bg-icono {
    background: var(--color-primario);
    border-radius: 50%;
    width: 6rem;
    height: 6rem;

    display: flex;
    align-items: center;
    justify-content: center;
}

.sol-card-header img {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: contain;	
}

/* ===== IMAGE ===== */
.sol-card-image{
  position:relative;
  margin-top:auto;
}

.sol-card-image img{
  width:100%;
  height:18rem;
  object-fit:cover;
  display:block;
}

/* ===== FLOATING ARROW ===== */
.sol-arrow{
  position:absolute;
  right:1rem;
  bottom:1rem;
  width:5rem;
  height:3rem;
  border-radius: 2rem;
  background: var(--color-primario);
  color: white;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.85);
  box-shadow:0 8px 20px rgba(0,27,99,.28);
  transition:transform .2s ease, background .2s ease;
}

.sol-arrow:hover{
	transform:scale(1.06);
	color: white;
/*   background:#002A8A; */
}

.sol-arrow img{
  width: 2.4rem;
  height: 2.4rem;
}

/* ===== TABLET ===== */
@media (max-width: 1300px){
	.soluciones-grid{
	  width: 85%;
	  grid-template-columns:repeat(4,1fr);
	}
}

/* ################################### */
/* SECCIÓN DE SECTORES */
/* ################################### */
.sectores-grid{
	width: 90%;
	margin: 0 auto 6rem auto;
	display:grid;
    grid-template-columns:repeat(6,1fr);
    overflow:hidden;
}

.sector-item{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  text-align:center;
  gap:1rem;
}

.sector-item:not(:last-child)::after{
  content:"";
  position:absolute;
  top:18%;
  right:0;
  width:2px;
  height:64%;
  background: var(--border);
}

.sector-icon{
    display:flex;
    align-items:center;
    justify-content:center;
	margin-bottom: 0.7rem;
}

.sector-icon img{
  width: 7.5rem;
  height: auto;
}

.sector-item h3{
  margin:0;
  color: var(--color-primario);
  font-size:1.6rem;
  font-weight:700;
  line-height:1.2;
  text-transform:uppercase;
}

/* Tablet */
@media (max-width:1024px){
  .sectores-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .sector-item:nth-child(3)::after{
    display:none;
  }
}

/* ################################### */
/* SECCIÓN DOS COLUMNAS */
/* ################################### */
.about-section {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.subtitle-orange {
	font-size: 1.6rem;
    font-weight: 600;
	color: var(--color-secundario);
  	display: block;
  	margin-bottom: 0.5rem;
  	text-transform: uppercase;
}

/* --------------------------------------
   COLUMNA 1: FONDO AZUL
   -------------------------------------- */
.col-blue {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--color-primario);
	color: var(--white);
/*   flex: 1; */
	padding: 3rem 4rem;
}

.blue-content {
	width: 100%;
}

.blue-content h2 {
/* 	width: 85%; */
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.blue-content .description {
/* 	width: 70%; */
    font-size: 1.7rem;
    line-height: 1.3;
    margin-bottom: 3.5rem;
}

/* Grid de Estadísticas */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.stat-icon {
  margin-bottom: 0.7rem;
}

.stat-icon img{
  width: 4.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
}

/* --------------------------------------
   COLUMNA 2: FONDO BLANCO / IMAGEN
   -------------------------------------- */
.col-white {
  background-color: white;
/*   flex: 1; */
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.personal-aiva {
	background-image: url('/wp-content/uploads/2026/07/Personal-AIVA-Solutions.webp');
	background-position: 25% 0%;
	background-size: cover;
	background-repeat: no-repeat;
}

.white-content {
  z-index: 2;
}

.white-content .subtitle-orange {
  margin-bottom: 2.5rem;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.features-list li {
    position: relative;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-color);
    padding-left: 2.5rem;
    margin: 0;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-secundario);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
}

/* ################################### */
/* SECCIÓN BANNER CONTACTO */
/* ################################### */
/* Contenedor principal del banner */
.cta-banner {
	width: 100%;
  background-color: white;
  padding: 3rem 2rem;
}

.cta-container {
	margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
	justify-content: center;
  gap: 20rem;
  text-align: center;
}

.cta-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
}

.icon-wrapper {
  	display: flex;
  	align-items: center;
  	justify-content: center;
}

.icon-wrapper img{
  width: 5rem;
  height: 5rem;
}

.cta-text {
	text-align: left;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primario);
  margin-bottom: 0;
}

.cta-description {
  font-size: 1.6rem;
	font-weight: 500;
  color: var(--color-primario);
  margin: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 1.5rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
	
	    background-color: var(--color-secundario);
	color: var(--white);
}

.cta-button:hover {
    background-color: transparent;
    border-color: var(--color-secundario);
    color: var(--color-secundario);
}

.bx-chevron-right {
  font-size: 2.5rem;
}

/* ################################### */
/* RESPONSIVE */
/* ################################### */
@media (max-width: 768px) {
  .hero-banner {
/*     background: #ffffff; */
    background-image: url('/wp-content/uploads/2026/09/fondo-aiva-home-vertical.webp');
    background-size: cover;
    background-position: center 100%;
    background-repeat: no-repeat;
	  min-height: 65rem;
	  height: auto;

align-items: flex-start;
    overflow: visible;
  }

  .hero-container {
    max-width: 100%;
    margin: 9rem 2.5rem;
    height: auto;
    display: block;
  }

  /* Texto abajo sobre fondo blanco */
  .hero-content {
    max-width: 100%;
    position: relative;
    z-index: 2;
  }
	
	.br-desktop {
		display: none;
	}
	
	.orange-line {
		height: 0.3rem;
		margin-bottom: 1rem;
	}

  .hero-content h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1rem;
	  font-weight: 600;
  }

  .hero-content p {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 2rem;
  }
	
	.w-35{
		width: 30rem;
	}

	.w-50{
		width: 30rem;
	}
	
	
	.nosotros-features {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(2, max-content);
		column-gap: 3rem;
		row-gap: 1rem;
		justify-items: center;
		align-items: start;
		text-align: left;

/* 		border: 1px solid blue; */
	}

	.nosotros-icon img {
		width: 3rem;
		height: 3rem;
	}
	
	.item-line {
		width: 3rem;
		height: 0.2rem;
		margin: 0.7rem 0;
	}

	.nosotros-item h3 {
		font-size: 1rem;
		font-weight: 600;
	}
	
	
	
	
	
	

  /* Botones verticales */
  .hero-actions {
	  flex-direction: column;
	  width: 75%;
  }

  .hero-actions .boton {
	  width: 100%;
	  justify-content: center;
/*     text-align: center; */
	  padding: 1.2rem 0.5rem;
	  font-size: 1.5rem;
  }
	
/* ################################### */
/* SECCIÓN TÍTULOS DOBLES */
/* ################################### */
	.seccion-titulos-dobles{
		width: 90%;
		margin: 2rem auto;
	}

	.seccion-titulos-dobles h2{
		font-size: 1.6rem;
	}

	.seccion-titulos-dobles h3{
		font-size: 2rem;
	}


/* ################################### */
/* CARTILLA DE SOLUCIONES */
/* ################################### */
	.soluciones-grid{
		grid-template-columns:repeat(2,1fr);
	}

	
/* ################################### */
/* SECCIÓN DE SECTORES */
/* ################################### */
  .sectores-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .sector-item{
	  padding: 2rem 0;
	  gap: 0.5rem;
  }
	
	.sector-item h3{
	  font-size:1.4rem;
	  line-height:1.15;
	}
	
	.sector-icon{
		width: 8rem;
		height: 8rem;
		min-width: 8rem;

/* 		border: 1px solid red; */
	}

	.sector-icon svg{
	  width: 7.5rem;
	  height: 7.5rem;
	}
	
/* ################################### */
/* SECCIÓN DOS COLUMNAS */
/* ################################### */
  .about-section {
    flex-direction: column;
  }
	
	.about-grid {
		grid-template-columns: 1fr;
	}
	
	.col-blue,
	.col-white{
		flex: none;
		width: 100%;
	}

  .col-blue {
    padding: 2.5rem 2rem;
/*     justify-content: flex-end; */
  }

  .col-white {
	  padding: 2.5rem 2rem;
	  min-height: 320px;
  }
	
	.subtitle-orange {
		font-size: 1.5rem;
	}
	
	.blue-content h2,
	.blue-content .description {
		width: 100%;
	}
	
	.blue-content h2 {
		font-size: 2.2rem;
	}

	.blue-content .description {
		font-size: 1.6rem;
		line-height: 1.4;
	}
	
	.stats-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 0;
	}
	
	.white-content{
		margin-left: 0;
	}

  .stat-item {
    padding: 0 15px;
  }

  .stat-item:last-child {
    border-right: none;
  }
	
	.stat-icon img{
	  width: 3.5rem;
	  height: 3.5rem;
	}

	.stat-number {
	  font-size: 2.2rem;
	  font-weight: 600;
	  margin-bottom: 0.5rem;
	}

	.stat-label {
	  font-size: 1.2rem;
	  font-weight: 500;
	  line-height: 1.2;
	}

  .team-image-container {
    margin-top: 0;
    align-self: flex-end;
    max-width: 50%;
  }

  .team-image-container img {
    max-height: 80rem;
  }
	
	/* ################################### */
	/* SECCIÓN BANNER CONTACTO */
	/* ################################### */
	.cta-container {
		flex-direction: column;
		justify-content: space-between;
		gap: 2rem;
	}

	.cta-content {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}

	.icon-wrapper img{
		width: 4.5rem;
	    height: 4.5rem;
	}

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

	.cta-title {
	  font-size: 1.8rem;
	}

	.cta-description {
		font-size: 1.5rem;
	}

	.cta-button {
		padding: 1rem 2rem;
		font-size: 1.5rem;
	}
	
/* ################################### */
/* FOOTER */
/* ################################### */
	footer {
		font-size: 1.4rem;
		padding: 2rem 0;
	}
}

/* ===== MOBILE ===== */
@media (max-width: 640px){
  .soluciones-grid{
    grid-template-columns:1fr;
    gap: 2rem;
  }
}

/* MÓVIL (480px y menor) */
@media (max-width: 480px) {
    .sector-item::after {
        display: none !important;
    }
	
	/* ################################### */
	/* SECCIÓN DE SECTORES */
	/* ################################### */
	  .sectores-grid{
		grid-template-columns:repeat(2,1fr);
	  }
	
	/* ################################### */
	/* SECCIÓN DOS COLUMNAS */
	/* ################################### */
	
	/* --------------------------------------
   COLUMNA 1: FONDO AZUL
   -------------------------------------- */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
		gap: 2rem 0;
    }
	
	.stat-icon img{
	  width: 4rem;
	  height: 4rem;
	}

	.stat-number {
	  font-size: 2.6rem;
	}

	.stat-label {
	  font-size: 1.4rem;
	}
	
	/* --------------------------------------
	   COLUMNA 2: FONDO BLANCO / IMAGEN
	   -------------------------------------- */
	.col-white {
		padding: 2rem;
		height: 50rem;
	}
	
	.personal-aiva {
		background-image: url('/wp-content/uploads/2026/07/Personal-AIVA-Solutions-vertical.webp');
		background-position: center 77%;
	}

	.white-content .subtitle-orange {
		margin-bottom: 1.5rem;
	}

	.features-list {
	    gap: 0.5rem;
	}

	.features-list li {
		gap: 0.7rem;
		line-height: 1.3;
	    font-size: 1.5rem;
	    font-weight: 400;
	}


	/* ################################### */
	/* SECCIÓN BANNER CONTACTO */
	/* ################################### */
	.cta-container {
		flex-direction: column;
		justify-content: space-between;
		gap: 2rem;
	}

	.cta-content {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}

	.icon-wrapper img{
		width: 4.5rem;
	    height: 4.5rem;
	}

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

	.cta-title {
	  font-size: 1.8rem;
	}

	.cta-description {
		font-size: 1.5rem;
	}

	.cta-button {
		padding: 1rem 2rem;
		font-size: 1.5rem;
	}
}

/* ################################### */
/* NOSOTROS */
/* ################################### */
.section {
  width: 85%;
  margin: 0 auto;
  padding: 4rem 0 7rem 0;
}

.section-child {
  width: 85%;
  margin: 0 auto;
  padding-bottom: 7rem;
}

/* GRID DOS COLUMNAS */
.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* SECCIONES */
/* .text-content {
	border: 1px solid red;
} */

.text-content h3 {
	font-size: var(--size-subtitulo-desktop);
	font-weight: var(--weight-subtitulo-desktop);
	margin-bottom: var(--bottom-subtitulo-desktop);
	color: var(--color-primario);
}

.text-content p {
	font-size: var(--size-texto-desktop);
	font-weight: var(--weight-texto-desktop);
	line-height: var(--line-height-texto-desktop);
	margin-bottom: var(--bottom-texto-desktop);
	color: var(--text-color);
}

.text-content p:last-of-type {
    margin-bottom: 0;
}




/* .image-content {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #fefefe;
}

.image-content img {
    display: block;
    width: 100%;
    height: auto;

    clip-path: polygon(
        8% 0%,
        100% 0%,
        100% 100%,
        3% 100%
    );
} */




.image-content img {
  width: 100%;
  border-radius: 12px;
}

/* VALUES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.values-card {
  padding: 3rem 2rem;
  border-radius: 7px;	
  border:1px solid var(--border);
  box-shadow:0 2px 10px rgba(16,24,40,.07);
  transition:transform .25s ease, box-shadow .25s ease;
}

/* CABECERA: ICONO + TÍTULO */
.values-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.values-header img {
    width: 4.5rem;
    height: 4.5rem;
    object-fit: contain;
}

.values-card h4 {
	font-size: var(--size-subsubtitulo-desktop);
	font-weight: var(--weight-subsubtitulo-desktop);
	margin-bottom: var(--bottom-subsubtitulo-desktop);
	color: var(--color-primario);
}

.values-card p {
	font-size: 1.7rem;
	font-weight: 500;
	line-height: 1.4;
	color: var(--text-color);
}

/* LISTA */
.values-card ul {
    list-style: none;
    padding: 0;
    margin: 0;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0;
    row-gap: 1rem;
}


/* CADA VALOR */
.values-card ul li {
    position: relative;

    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-color);

    padding-left: 2.5rem;
    margin: 0;
}


/* CHECK NARANJA */
.values-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-secundario);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
}

@media (max-width: 480px) {
	.section {
	  width: 100%;
	  padding: 2rem 0 5rem 0;
	}

	.section-child {
	  width: 100%;
	  padding-bottom: 5rem;
	}
	
  .two-columns {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
	
  /* TITULOS */
	.text-content {
		width: 85%;
		margin: 0 auto;
	}
	
	.text-content h3 {
		font-size: var(--size-titulo-movil);
		font-weight:var(--weight-titulo-movil);
		margin-bottom: 1.5rem;
		line-height: var(--line-height-titulo-movil);
		text-align: center;
	}
	.text-content p {
		font-size: var(--size-texto-movil);
		font-weight:var(--weight-texto-movil);
		line-height: var(--line-height-texto-movil);
		letter-spacing: var(--letter-spacing-texto-movil);
	}
	
  /* IMAGEN */
  .image-content img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
	  border-radius: 0;
  }
	
  /* VALUES */
  .values-grid {
	  width: 90%;
	  margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
	
	.values-card p {
		font-size: 1.5rem;
		font-weight:var(--weight-texto-movil);
		line-height: var(--line-height-texto-movil);
		letter-spacing: var(--letter-spacing-texto-movil);
	}
	
	.values-card ul li {
		font-size: 1.5rem;
		font-weight:var(--weight-texto-movil);
		line-height: var(--line-height-texto-movil);
		letter-spacing: var(--letter-spacing-texto-movil);
	}	
}




/* TÍTULO */
.aliados-titulo {
	font-size: var(--size-subtitulo-desktop);
	font-weight: var(--weight-subtitulo-desktop);
	margin-bottom: var(--bottom-titulo-desktop);
	color: var(--color-primario);
    text-align: center;
}

/* FILA DE LOGOS */
.aliados-logos {
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* CADA LOGO */
.aliado-logo {
    flex: 1 1 0;
    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.aliado-logo img {
    display: block;
    width: 100%;
    max-width: 23rem;
    height: 7.5rem;

    object-fit: contain;
}

/* SEPARADORES */
.aliado-separador {
    flex: 0 0 1px;
    width: 1px;
    height: 75px;
    background: var(--border);
}

/* MÓVILES */
@media (max-width: 480px) {
    .aliados-titulo {
        font-size: var(--size-titulo-movil);
        margin-bottom: 2rem;
    }

    .aliados-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.8rem;
    }

    .aliado-logo {
        flex: 0 0 calc(50% - 12px);
    }

    .aliado-logo img {
        max-width: 150px;
        height: 48px;
    }

    /* Ocultar separadores en móvil */
    .aliado-separador {
        display: none;
    }
}

/* ################################### */
/* SOLUCIONES */
/* ################################### */
/* =========================================================
   NUESTRAS SOLUCIONES
   ========================================================= */

.soluciones-section {
    width: 100%;
    max-width: 130rem;
    margin: 0 auto;
    padding: 3rem 0 5rem 0;
    box-sizing: border-box;
}


/* =========================================================
   TÍTULO
   ========================================================= */

.soluciones-header {
    text-align: center;
    margin-bottom: 3rem;
}

.soluciones-header h2 {
    margin: 0;
    padding: 0;
    color: var(--color-primario);
    font-size: 27px;
    font-weight: 700;
    line-height: 1.2;
}

.soluciones-header span {
    display: block;
    width: 5rem;
    height: 3px;
    background: var(--color-secundario);
    margin: 8px auto 0;
}


/* =========================================================
   LISTA
   ========================================================= */

.soluciones-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}


/* =========================================================
   CARD
   ========================================================= */

.solucion-card {
    position: relative;
    display: grid;
    grid-template-columns: 50% 50%;
    width: 100%;
    min-height: 30rem;
    overflow: hidden;
    border-radius: 12px;
    background: var(--fondo-card-soluciones);
}


/* =========================================================
   IMAGEN
   ========================================================= */

.solucion-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 190px;
    overflow: hidden;
    z-index: 1;
}

.solucion-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* =========================================================
   CONTENIDO
   ========================================================= */

.solucion-content {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    z-index: 2;
}

.solucion-text {
    width: 100%;
    max-width: 430px;
    box-sizing: border-box;
}


/* =========================================================
   ITEMS IMPARES
   IMAGEN IZQUIERDA / AZUL DERECHA
   ========================================================= */

.solucion-impar .solucion-content {
    background: var(--color-primario);
/*     color: red; */
    padding: 25px 42px 25px 75px;
}

.solucion-impar .solucion-image {
    grid-column: 1;
    grid-row: 1;
}

.solucion-impar .solucion-content {
    grid-column: 2;
    grid-row: 1;
}


/* =========================================================
   ITEMS PARES
   BLANCO IZQUIERDA / IMAGEN DERECHA
   ========================================================= */

.solucion-par {
    grid-template-columns: 50% 50%;
}

.solucion-par .solucion-content {
    grid-column: 1;
    grid-row: 1;
    background: var(--fondo-card-soluciones);
    color: #17285a;
    padding: 25px 75px 25px 42px;
    z-index: 3;
}

.solucion-par .solucion-image {
    grid-column: 2;
    grid-row: 1;
    z-index: 2;

    /* CORTE DIAGONAL */
    clip-path: polygon(
        12% 0%,
        100% 0%,
        100% 100%,
        0% 100%
    );
}


/* =========================================================
   NÚMERO
   ========================================================= */

.solucion-numero {
    display: block;
    margin-bottom: 2px;

    color: #f58220;

    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
}


/* =========================================================
   TÍTULO
   ========================================================= */

.solucion-content h3 {
    margin: 5px 0 7px;

    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.18;
/*     letter-spacing: 0; */
}

.solucion-impar .solucion-content h3 {
    color: var(--white);
}

.solucion-par .solucion-content h3 {
    color: var(--text-color);
}


/* =========================================================
   DESCRIPCIÓN
   ========================================================= */

.solucion-content p {
    max-width: 390px;

    margin: 0 0 12px;
	
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.4;
}

.solucion-impar .solucion-content p {
    color: rgba(255, 255, 255, 0.85);
}

.solucion-par .solucion-content p {
    color: #596273;
}


/* =========================================================
   BOTÓN
   ========================================================= */

.solucion-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-width: 128px;
    height: 30px;

    padding: 1rem 1.5rem;

    box-sizing: border-box;

    border: 1px solid currentColor;
    border-radius: 4px;

    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;

    text-decoration: none;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.solucion-btn span {
    font-size: 2.5rem;
    line-height: 0;
    margin-top: -1px;
}

.solucion-impar .solucion-btn {
    color: #fff;
}

.solucion-impar .solucion-btn:hover {
    background: #fff;
    color: #071d52;
}

.solucion-par .solucion-btn {
    color: #f58220;
}

.solucion-par .solucion-btn:hover {
    background: #f58220;
    color: #fff;
}


/* =========================================================
   CÍRCULO CENTRAL
   ========================================================= */

.solucion-icon {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 84px;
    height: 84px;

    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;

    border-radius: 50%;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);

    z-index: 10;
}

.solucion-icon img {
    display: block;

    width: 39px;
    height: 39px;

    object-fit: contain;
}


/* =========================================================
   DECORACIÓN SUTIL EN LOS ITEMS AZULES
   ========================================================= */

.solucion-impar .solucion-content::after {
    content: "";
    position: absolute;

    right: 20px;
    top: 50%;

    width: 100px;
    height: 100px;

    transform: translateY(-50%);

    opacity: 0.08;

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    pointer-events: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .solucion-card {
        min-height: 180px;
    }

    .solucion-impar .solucion-content {
        padding-left: 65px;
        padding-right: 30px;
    }

    .solucion-par .solucion-content {
        padding-left: 30px;
        padding-right: 65px;
    }

    .solucion-content h3 {
        font-size: 18px;
    }

    .solucion-content p {
        font-size: 9px;
    }

    .solucion-icon {
        width: 72px;
        height: 72px;
    }

    .solucion-icon img {
        width: 34px;
        height: 34px;
    }
}


/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 767px) {

    .soluciones-section {
        padding: 0 15px;
    }

    .soluciones-header {
        margin-bottom: 18px;
    }

    .soluciones-header h2 {
        font-size: 23px;
    }

    .soluciones-list {
        gap: 12px;
    }


    /* -----------------------------------------
       TODOS LOS ITEMS:
       IMAGEN ARRIBA
       TEXTO ABAJO
       ----------------------------------------- */

    .solucion-card {
        display: flex;
        flex-direction: column;

        min-height: 0;

        border-radius: 10px;
    }


    /* -----------------------------------------
       IMAGEN
       ----------------------------------------- */

    .solucion-image,
    .solucion-impar .solucion-image,
    .solucion-par .solucion-image {

        order: 1;

        width: 100%;
        height: 210px;
        min-height: 210px;

        clip-path: none;

        overflow: hidden;
    }

    .solucion-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    /* -----------------------------------------
       CONTENIDO
       TODOS AZULES EN MÓVIL
       ----------------------------------------- */

    .solucion-content,
    .solucion-impar .solucion-content,
    .solucion-par .solucion-content {

        order: 2;

        width: 100%;

        padding: 25px 25px 28px;

        background: #071d52;

        color: #fff;

        box-sizing: border-box;
    }	

    /* -----------------------------------------
       QUITAR GRID DESKTOP
       ----------------------------------------- */

    .solucion-impar .solucion-image,
    .solucion-impar .solucion-content,
    .solucion-par .solucion-image,
    .solucion-par .solucion-content {

        grid-column: auto;
        grid-row: auto;
    }


    /* -----------------------------------------
       TEXTO
       ----------------------------------------- */

    .solucion-text {
        max-width: none;
    }

    .solucion-numero {
        font-size: 27px;
    }

    .solucion-content h3,
    .solucion-impar .solucion-content h3,
    .solucion-par .solucion-content h3 {

        color: #fff;

        font-size: 19px;
        line-height: 1.2;

        margin-top: 6px;
        margin-bottom: 9px;
    }

    .solucion-content p,
    .solucion-impar .solucion-content p,
    .solucion-par .solucion-content p {

        color: rgba(255, 255, 255, 0.85);

        max-width: 100%;

        font-size: 10px;
        line-height: 1.55;

        margin-bottom: 15px;
    }


    /* -----------------------------------------
       BOTÓN
       ----------------------------------------- */

    .solucion-btn,
    .solucion-par .solucion-btn {

        color: #fff;

        border-color: rgba(255, 255, 255, 0.8);
    }

    .solucion-btn:hover,
    .solucion-par .solucion-btn:hover {

        background: #fff;
        color: #071d52;
    }


    /* -----------------------------------------
       CÍRCULO OCULTO
       ----------------------------------------- */

    .solucion-icon {
        display: none;
    }
}

/* Página NOSOTROS */
.page-id-30 .hero-banner {
    background-image: url('/wp-content/uploads/2026/09/portada-nosotros.webp');
}

.page-id-78 .hero-banner {
    background-image: url('/wp-content/uploads/2026/09/portada-soluciones.webp');
}

.page-id-96 .hero-banner {
    background-image: url('/wp-content/uploads/2026/09/portada-nosotros.webp');
}

.paginas-v2 .logo img {
    display: none;
}

.paginas-v2 .logo {
    display: block;
    width: 180px;
    height: 4.5rem;

    background-image: url('/wp-content/uploads/2026/09/AIVA-SOLUTIONS-LOGO-BLANCO-PNG.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.paginas-v2 .main-nav a {
    color: var(--white);
}

.paginas-v2 .mobile-nav-toggle {
    color: var(--white);
}

@media (max-width: 768px) {
    .paginas-v2 .main-nav {
        background-color: var(--color-primario);
    }
	
    .paginas-v2 .mobile-nav-toggle:hover {
		color: var(--white);
    }
}

.paginas-v2 .scrolled {
    color: var(--color-primario);
	background-color: var(--color-primario);
}

.paginas-v2 .orange-line {
    background: var(--white);
}

.paginas-v2 .hero-content h1 {
  color: var(--color-secundario);
}

.paginas-v2 .hero-content p {
  color: var(--white);
}

.paginas-v2 .boton-primary {
  background-color: var(--color-primario);
  color: #ffffff;
  border: 2px solid var(--color-primario);
}

.paginas-v2 .boton-primary:hover {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.paginas-v2 .boton-secondary-white {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.paginas-v2 .boton-secondary-white:hover {
  background-color: var(--color-primario);
  color: #ffffff;
  border: 2px solid var(--color-primario);
}

.paginas-v2 .nosotros-item h3 {
    color: var(--white);
}

/* ################################### */
/* PÁGINA DE CONTACTO */
/* ################################### */
/* =========================================================
   VARIABLES
   ========================================================= */

.contact-page {
    --aiva-blue: #061a3a;
    --aiva-blue-2: #071d42;
    --aiva-orange: #ff6a00;
    --aiva-text: #16213b;
    --aiva-gray: #6c7078;
    --aiva-border: #dddddd;
    --aiva-white: #ffffff;

    width: 100%;
    font-family: "Poppins", sans-serif;
    color: var(--aiva-text);
}


/* =========================================================
   SECCIÓN 1
   ========================================================= */

.contact-main {
    width: 100%;
    display: grid;
    grid-template-columns: 58% 42%;
}


/* =========================================================
   COLUMNA FORMULARIO
   ========================================================= */

.contact-form-column {
    background: #ffffff;
    padding: 55px 50px;
}

.contact-inner {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}


/* TITULOS */

.contact-label {
    display: block;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--aiva-text);
    letter-spacing: .2px;
}

.contact-label-white {
    color: #ffffff;
}

.contact-orange-line {
    width: 32px;
    height: 3px;
    background: var(--aiva-orange);
    margin-top: 9px;
    margin-bottom: 16px;
}

.contact-description {
    margin: 0 0 22px;
    max-width: 600px;
    font-size: 13px;
    line-height: 1.55;
    color: #666b73;
}


/* =========================================================
   FORMULARIO
   ========================================================= */

.aiva-contact-form {
    width: 100%;
}

.aiva-contact-form input,
.aiva-contact-form select,
.aiva-contact-form textarea {

    width: 100%;
    box-sizing: border-box;

    border: 1px solid #dedede;
    border-radius: 4px;

    background: #ffffff;

    color: #333;

    font-family: inherit;
    font-size: 12px;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.aiva-contact-form input,
.aiva-contact-form select {
    height: 42px;
    padding: 0 13px;
    margin-bottom: 12px;
}

.aiva-contact-form textarea {
    min-height: 86px;
    padding: 12px 13px;
    resize: vertical;
    margin-bottom: 10px;
}

.aiva-contact-form input:focus,
.aiva-contact-form select:focus,
.aiva-contact-form textarea:focus {
    border-color: var(--aiva-orange);
    box-shadow: 0 0 0 2px rgba(255, 106, 0, .08);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-select-label {
    display: block;
    margin: -2px 0 5px 1px;
    font-size: 10px;
    color: #777;
}


/* PRIVACIDAD */

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 7px;

    font-size: 10px;
    line-height: 1.5;

    color: #6c6c6c;

    margin-bottom: 15px;
}

.privacy-check input {
    width: 12px;
    height: 12px;
    margin: 1px 0 0;
    flex-shrink: 0;
}

.privacy-check a {
    color: #2878c7;
    font-weight: 600;
    text-decoration: none;
}


/* BOTÓN */

.contact-submit {
    height: 34px;

    padding: 0 15px;

    border: 0;
    border-radius: 4px;

    background: var(--aiva-blue);

    color: #ffffff;

    font-family: inherit;
    font-size: 10px;

    cursor: pointer;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    transition:
        background .2s ease,
        transform .2s ease;
}

.contact-submit:hover {
    background: var(--aiva-orange);
    transform: translateY(-1px);
}

.contact-submit span {
    font-size: 14px;
}


/* =========================================================
   COLUMNA CONTACTO
   ========================================================= */

.contact-methods-column {
    background: var(--aiva-blue);
    color: #ffffff;

    padding: 55px 50px;
}

.contact-methods-inner {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}


/* MÉTODO */

.contact-method {
    display: flex;
    align-items: center;

    gap: 18px;

    padding: 15px 0;

    border-bottom: 1px solid rgba(255,255,255,.13);
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-method-icon {

    width: 52px;
    height: 52px;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}


.contact-method-content {
    min-width: 0;
}

.contact-method-content h3 {
    margin: 0 0 2px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;
}

.contact-method-content a {
    display: block;

    color: var(--aiva-orange);

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    margin-bottom: 2px;
}

.contact-method-content p {
    margin: 0;

    color: rgba(255,255,255,.8);

    font-size: 10px;
    line-height: 1.5;
}


/* =========================================================
   BOTÓN REUNIÓN
   ========================================================= */

.meeting-button {

    margin-top: 12px;

    height: 35px;

    padding: 0 13px;

    border: 1px solid rgba(255,255,255,.65);
    border-radius: 4px;

    background: transparent;

    color: #ffffff;

    font-family: inherit;
    font-size: 10px;
    font-weight: 600;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    cursor: pointer;

    transition: all .2s ease;
}

.meeting-button img {
    width: 14px;
    height: 14px;
}

.meeting-button:hover {
    background: #ffffff;
    color: var(--aiva-blue);
}


/* =========================================================
   SECCIÓN MAPA
   ========================================================= */

.contact-location {
    width: 100%;

    display: grid;
    grid-template-columns: 58% 42%;

    background: #ffffff;
}


/* MAPA */

.contact-map {
    min-height: 330px;
    padding: 25px 35px;
    box-sizing: border-box;
}

.contact-map iframe {
    display: block;

    width: 100%;
    height: 100%;
    min-height: 280px;

    border: 0;
    border-radius: 8px;

    filter: grayscale(.15);
}


/* =========================================================
   VISÍTANOS
   ========================================================= */

.contact-visit {
    padding: 40px 50px;
}

.contact-visit-inner {
    width: 100%;
    max-width: 500px;
}


/* DIRECCIÓN */

.visit-item {
    display: flex;
    align-items: flex-start;

    gap: 16px;

    padding: 5px 0 17px;

    border-bottom: 1px solid #dedede;
}

.visit-item img {
    width: 25px;
    height: 25px;
    object-fit: contain;

    margin-top: 2px;
}

.visit-item h3,
.visit-reference h3,
.social-section h3 {

    margin: 0 0 4px;

    font-size: 11px;
    font-weight: 700;

    color: var(--aiva-text);
}

.visit-item p,
.visit-reference p {

    margin: 0;

    font-size: 10px;
    line-height: 1.5;

    color: #666;
}


/* REFERENCIAS */

.visit-reference {

    padding: 15px 0;

    border-bottom: 1px solid #dedede;
}

.visit-reference p {
    max-width: 280px;
}


/* REDES */

.social-section {
    padding-top: 15px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons a {

    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
}

.social-icons img {

    width: 27px;
    height: 27px;

    object-fit: contain;

    transition: transform .2s ease;
}

.social-icons a:hover img {
    transform: translateY(-2px);
}


/* =========================================================
   CTA INFERIOR
   ========================================================= */

.contact-cta {

    width: calc(100% - 48px);

    margin: 0 24px 24px;

    min-height: 90px;

    box-sizing: border-box;

    background: var(--aiva-blue);

    border-radius: 10px;

    display: flex;
    align-items: center;

    padding: 17px 38px;

    gap: 20px;
}


/* ICONO */

.cta-icon {

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: var(--aiva-orange);

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.cta-icon img {
    width: 34px;
    height: 34px;
}


/* TEXTO */

.cta-text {
    flex: 1;
}

.cta-text h2 {

    margin: 0 0 3px;

    font-size: 17px;
    font-weight: 800;

    color: #ffffff;
}

.cta-text h2 span {
    color: var(--aiva-orange);
}

.cta-text p {

    margin: 0;

    color: #ffffff;

    font-size: 10px;
}


/* WHATSAPP */

.cta-whatsapp {

    min-width: 190px;
    height: 38px;

    padding: 0 17px;

    box-sizing: border-box;

    border-radius: 5px;

    background: var(--aiva-orange);

    color: #ffffff;

    text-decoration: none;

    font-size: 10px;
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    transition: background .2s ease;
}

.cta-whatsapp:hover {
    background: #e85e00;
}

.cta-whatsapp img {
    width: 16px;
    height: 16px;
}


/* =========================================================
   MODAL
   ========================================================= */

.meeting-modal {

    position: fixed;

    inset: 0;

    z-index: 99999;

    display: none;

    align-items: center;
    justify-content: center;
}

.meeting-modal.active {
    display: flex;
}

.meeting-modal-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,.65);
}

.meeting-modal-box {

    position: relative;

    z-index: 2;

    width: min(480px, calc(100% - 30px));

    max-height: calc(100vh - 30px);

    overflow-y: auto;

    box-sizing: border-box;

    background: #ffffff;

    border-radius: 8px;

    padding: 35px;

    box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

.meeting-modal-box h2 {

    margin: 0 0 7px;

    font-size: 22px;

    color: var(--aiva-text);
}

.meeting-modal-box > p {

    margin: 0 0 22px;

    font-size: 11px;

    color: #666;
}

.meeting-modal-box input,
.meeting-modal-box select,
.meeting-modal-box textarea {

    width: 100%;

    box-sizing: border-box;

    margin-bottom: 11px;

    padding: 0 12px;

    height: 42px;

    border: 1px solid #ddd;

    border-radius: 4px;

    font-family: inherit;

    font-size: 11px;

    outline: none;
}

.meeting-modal-box textarea {

    height: 80px;

    padding: 12px;

    resize: vertical;
}

.meeting-modal-box input:focus,
.meeting-modal-box select:focus,
.meeting-modal-box textarea:focus {
    border-color: var(--aiva-orange);
}

.meeting-close {

    position: absolute;

    right: 15px;
    top: 10px;

    border: none;

    background: transparent;

    color: #555;

    font-size: 26px;

    cursor: pointer;
}

.meeting-submit {

    width: 100%;

    height: 42px;

    border: none;

    border-radius: 4px;

    background: var(--aiva-blue);

    color: #ffffff;

    font-family: inherit;

    font-size: 11px;
    font-weight: 600;

    cursor: pointer;
}

.meeting-submit:hover {
    background: var(--aiva-orange);
}


/* =========================================================
   RESPONSIVE TABLET
   ========================================================= */

@media (max-width: 900px) {

    .contact-main,
    .contact-location {
        grid-template-columns: 1fr;
    }

    .contact-form-column,
    .contact-methods-column {
        padding: 45px 30px;
    }

    .contact-map {
        padding: 25px 30px 0;
    }

    .contact-visit {
        padding: 35px 30px 45px;
    }

    .contact-inner,
    .contact-methods-inner,
    .contact-visit-inner {
        max-width: none;
    }

    .contact-cta {
        width: calc(100% - 30px);
        margin: 0 15px 15px;
    }
}


/* =========================================================
   RESPONSIVE MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .contact-form-column,
    .contact-methods-column {
        padding: 35px 20px;
    }

    .contact-label {
        font-size: 18px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-method {
        gap: 13px;
    }

    .contact-method-icon {
        width: 46px;
        height: 46px;
    }

    .contact-method-icon img {
        width: 22px;
        height: 22px;
    }

    .contact-location {
        display: flex;
        flex-direction: column;
    }

    .contact-map {
        padding: 20px;
        min-height: auto;
    }

    .contact-map iframe {
        min-height: 300px;
    }

    .contact-visit {
        padding: 30px 20px 40px;
    }

    .contact-cta {

        flex-direction: column;

        align-items: flex-start;

        padding: 25px;

        gap: 15px;
    }

    .cta-icon {
        width: 50px;
        height: 50px;
    }

    .cta-text h2 {
        font-size: 16px;
    }

    .cta-whatsapp {
        width: 100%;
    }

    .meeting-modal-box {
        padding: 28px 20px;
    }
}