@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css');

/* ===============================
  BASE
=============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html, button {
  font-family: "Open Sans", sans-serif;
}

/* ===============================
  NAVBAR
=============================== */
.custom-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 15px 30px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.custom-navbar-logo img {
  height: 65px;
  width: auto;
  transition: all 0.3s ease;
}

.custom-navbar-links {
  display: flex;
  list-style: none;
}

.custom-navbar-links li {
  margin: 0 15px;
}

.custom-navbar-links a {
  text-decoration: none;
  color: #005096;
  font-weight: 600;
  font-size: 1.2em;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s ease;
}

.custom-navbar-links a:hover {
  color: #8CBB27;
}

.custom-navbar-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #8CBB27;
  transition: width 0.3s ease;
}

.custom-navbar-links a:hover::after {
  width: 100%;
}

.bigdata-link {
  font-weight: 700 !important;
}

.custom-navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: #005096;
  font-size: 2.4em;
  cursor: pointer;
  padding: 5px 10px;
  z-index: 1001;
  transition: all 0.3s ease;
}

.custom-navbar-toggle:hover {
  color: #8CBB27;
}

/* ===============================
  RESPONSIVE - MENU HAMBURGUESA
=============================== */
@media (max-width: 920px) {
  .custom-navbar {
    flex-wrap: wrap;
    padding: 10px 20px;
  }

  .custom-navbar-logo {
    flex: 1;
    order: 1;
  }

  .custom-navbar-logo img {
    height: 50px;
  }

  .custom-navbar-toggle {
    display: block;
    order: 2;
  }

  .custom-navbar-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .custom-navbar-links.active {
    display: flex !important;
    animation: fadeIn 0.3s ease-out;
  }

  .custom-navbar-links li {
    border-bottom: 1px solid #f0f0f0;
  }

  .custom-navbar-links a {
    display: block;
    padding: 15px 20px;
    font-size: 1.1em;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* ===============================
  SCROLLED NAV
=============================== */
.navbar-scrolled {
  padding: 10px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-scrolled .custom-navbar-logo img {
  height: 50px;
}

/* ============================
===============================
=============================== */




.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HERO COMPACTO */
.compact-hero {
    height: 70vh;
    min-height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px; /* Para compensar el navbar fijo */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(18, 46, 72) 0%, rgb(0, 0, 0) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 800px;
    color: white;
}

.hero-title {
    font-family: "Raleway", sans-serif;
    font-size: 4em;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.9em;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.3em;
    max-width: 600px;
    margin: 0 auto;
}

/* SECCIÓN DE PROCESO */
.process-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    color: #005096;
    margin-bottom: 15px;
    font-weight: 400;
}

.section-title span {
    color: #516c1a;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 60px;
    font-weight: 300;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-item {
    background: white;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.process-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,80,150,0.05);
    border-radius: 50%;
    color: #005096;
    font-size: 2.5em;
    transition: all 0.3s ease;
    position: relative;
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #8CBB27;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    font-weight: bold;
}

.process-item:hover .process-icon {
    background: linear-gradient(135deg, #005096, #8CBB27);
    color: white;
    transform: scale(1.1);
}

.process-item h3 {
    color: #005096;
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-item p {
    color: #555;
    font-size: 1.2em;
}

/* SECCIÓN QUIÉNES SOMOS */
.about-section {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 500px;
}

.about-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.about-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 50px;
    margin: 70px 20px;
    border-radius: 8px;
    max-width: 800px;
}

.about-content h2 {
    color: #005096;
    font-size: 2.5em;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.about-content h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: #8CBB27;
    bottom: 0;
    left: 0;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.3em;
    line-height: 1.8;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .compact-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 3em;
    }
    
    .hero-subtitle {
        font-size: 1.5em;
    }
    
    .about-content {
        margin: 40px 20px;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-section {
        min-height: 500px;
    }
    
    .about-content {
        margin: 20px;
        padding: 30px;
    }
    
    .about-content h2 {
        font-size: 2em;
    }
}

@media (max-width: 576px) {
    .compact-hero {
        height: 70vh;
        min-height: 300px;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 2.2em;
    }
    
    .hero-subtitle {
        font-size: 1.2em;
    }
    
    .hero-description {
        font-size: 1.2em;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .process-item {
        padding: 30px 25px;
    }
    
    .about-content {
        margin: 15px;
        padding: 20px;
    }
    
    .about-content h2 {
        font-size: 1.8em;
    }
    
    .about-text p {
        font-size: 1.2em;
    }
}
/* ========================
SECCION NUESTROS SERVICIOS
=======================*/
/* ESTILOS PARA SERVICIOS MINIMALISTAS */
.services-minimal {
    padding: 80px 0;
    background-color: #f9f9f9;
    font-family: "Open Sans", sans-serif;
}

.services-minimal .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.8em;
    color: #005096;
    margin-bottom: 15px;
    font-weight: 400;
    position: relative;
}

.section-title span {
    color: #8CBB27;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #355480, #8BB257);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.4em;
    color: #666;
    margin-bottom: 60px;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-item {
    background: white;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: rgba(0,80,150,0.1);
}

.service-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #005096, #8CBB27);
    transition: height 0.3s ease;
}

.service-item:hover:before {
    height: 100%;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,80,150,0.05);
    border-radius: 50%;
    color: #005096;
    font-size: 2em;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    background: linear-gradient(135deg, #005096, #8CBB27);
    color: white;
    transform: scale(1.1);
}

.service-item h3 {
    color: #005096;
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.service-item h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: #8CBB27;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    font-size: 1em;
    display: flex;
    font-size: 1.2em;
    align-items: flex-start;
    line-height: 1.5;
}

.service-features i {
    color: #8CBB27;
    margin-right: 10px;
    font-size: 1.2em;
    margin-top: 3px;
    flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.2em;
    }
    
    .service-item {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .services-minimal {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8em;
    }
    
    .section-subtitle {
        font-size: 1.2em;
        margin-bottom: 40px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8em;
    }
    
    .service-item h3 {
        font-size: 1.3em;
    }
    
    .service-features li {
        font-size: 1.2em;
    }
}


/* ======================
FOOTER PIE DE PAGINA 
=======================*/

.footer-distributed{
	background: #032e52;
	box-shadow: 0 1px 1px 0 black;
	box-sizing: border-box;
	width: 100%;
	text-align: left;
	font: bold 16px sans-serif;
	padding: 55px 50px;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
	display: inline-block;
	vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left{
	width: 40%;
}

/* The company logo */

.footer-distributed h3{
	color:  #ffffff;
	font-family: "Open Sans", sans-serif;
	margin: 0;
}

.footer-distributed h3 span{
	color:  lightseagreen;
}



.footer-distributed .footer-company-name{
	color:  #222;
	font-size: 14px;
	font-weight: normal;
	margin: 0;
}

/* Footer Center */

.footer-distributed .footer-center{
	width: 35%;
}

.footer-distributed .footer-center i{
	color: #8CBB27;
	font-size: 25px;
	width: 38px;
	height: 38px;
	text-align: center;
	line-height: 42px;
	margin: 10px 15px;
	vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope{
	font-size: 17px;
	line-height: 38px;
}

.footer-distributed .footer-center p{
	display: inline-block;
	color: #ffffff;
  font-weight:400;
	vertical-align: middle;
	margin:0;
}

.footer-distributed .footer-center p span{
	display:block;
	font-weight: normal;
	font-size:14px;
	line-height:2;
}

.footer-distributed .footer-center p a{
	color:  lightseagreen;
	text-decoration: none;;
}

.footer-distributed .footer-links a:before {
  content: "|";
  font-weight:300;
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}

/* Footer Right */

.footer-distributed .footer-right{
	width: 20%;
}

.footer-distributed .footer-company-about{
	line-height: 20px;
	color:  #92999f;
	font-size: 13px;
	font-weight: normal;
	margin: 0;
}

.footer-distributed .footer-company-about span{
	display: block;
	color:  #ffffff;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 20px;
}

.footer-distributed .footer-icons{
	margin-top: 25px;
}

.footer-distributed .footer-icons a{
	display: inline-block;
	width: 35px;
	height: 35px;
	cursor: pointer;
	border-radius: 2px;

	font-size: 40px;
	color: #8CBB27;
	text-align: center;
	line-height: 35px;

	margin-right: 3px;
	margin-bottom: 5px;
}

/* responsivo */

@media (max-width: 880px) {

	.footer-distributed{
		font: bold 14px sans-serif;
	}

	.footer-distributed .footer-left,
	.footer-distributed .footer-center,
	.footer-distributed .footer-right{
		display: block;
		width: 100%;
		margin-bottom: 40px;
		text-align: center;
	}

	.footer-distributed .footer-center i{
		margin-left: 0;
	}

}

footer img {
width: 300px;
max-width: 100%;
height: auto;
}


/* ======================
INICIAN ESTILOS PARA ABOUT.PHP
======================== */

/* ESTILOS PARA LA SECCIÓN ABOUT-SECTION */
.about-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.about-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content-wide {
    background: rgba(255, 255, 255, 0.9);
    padding: 60px;
    margin: 80px auto; 
    border-radius: 8px;
    max-width: 900px; 
    width: 100%; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-content-wide h2 {
    color: #005096;
    font-size: 2.5em;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
    text-align: center; 
}

.about-content-wide h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: #8CBB27;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); 
}

.about-text {
    text-align: justify; 
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.8;
    color: #333;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-section {
        min-height: 500px;
    }
    
    .about-content-wide {
        padding: 50px;
        margin: 60px auto;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .about-content-wide {
        padding: 40px;
        margin: 40px auto;
        max-width: 90%; /* Más ancho en móviles */
    }
    
    .about-content-wide h2 {
        font-size: 2em;
    }
}

@media (max-width: 576px) {
    .about-section {
        min-height: 400px;
    }
    
    .about-content-wide {
        padding: 30px 20px;
        margin: 30px auto;
    }
    
    .about-content-wide h2 {
        font-size: 1.8em;
    }
    
    .about-text p {
        font-size: 1.2em;
        text-align: left; /* Mejor legibilidad en móviles */
    }
}


/* ___________________________
ESTILOS ABOUT.PHP
____________________________ */

/* ESTILOS PARA HERO MINIMALISTA CON FLECHA */
.minimal-hero {
    height: 50vh;
    margin-top: 15vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-family: "Raleway", sans-serif;
    font-size: 5vw;
    font-weight: 700;
    color: #005096;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-title span {
    color: #8CBB27;
    position: relative;
}

.hero-title span:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: #8CBB27;
}

.hero-subtitle {
    font-size: 1.8vw;
    color: #333;
    font-weight: 300;
    letter-spacing: 1px;
    max-width: 800px;
    margin: 0 auto;
}

/* Flecha animada */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.arrow-down {
    width: 30px;
    height: 30px;
    border-right: 3px solid #005096;
    border-bottom: 3px solid #005096;
    transform: rotate(45deg);
    margin: -15px auto 0;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* EFECTO OPCIONAL DE PARTÍCULAS (descomentar si se desea) */
/*
.minimal-hero:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%23005096" opacity="0.05" d="M30,30 Q50,10 70,30 T90,50 T70,70 T50,90 T30,70 T10,50 T30,30 Z"></path></svg>');
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: 1;
}
*/

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5em;
    }
    
    .hero-subtitle {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .minimal-hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.8em;
    }
    
    .hero-subtitle {
        font-size: 1.3em;
    }
    
    .arrow-down {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 576px) {
    .minimal-hero {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2.2em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .scroll-indicator {
        bottom: 30px;
    }
}


.bdm-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.424) 0%, rgba(0, 0, 0, 0.17) 100%);
}


/* INTRO IMPACTO */
.impact-intro {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.intro-statement {
    font-size: 1.8em;
    line-height: 1.6;
    color: #005096;
    font-weight: 400;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
}

.intro-statement .highlight {
    font-weight: 700;
    color: #8CBB27;
}

.decoration-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, #005096, #8CBB27);
    margin: 30px auto;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text p {
    font-size: 1.5em;
    color: #555;
}

/* ESTILOS PARA SECCIÓN DE CONFIANZA Y RECONOCIMIENTOS */
.trust-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    color: #005096;
    margin-bottom: 15px;
    font-weight: 400;
}

.section-title span {
    color: #8CBB27;
}

.section-subtitle {
    text-align: center;
    font-size: 1.5em;
    color: #666;
    margin-bottom: 60px;
    font-weight: 300;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.trust-card {
    background: white;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: rgba(0,80,150,0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,80,150,0.05);
    border-radius: 50%;
    color: #005096;
    font-size: 2em;
    transition: all 0.3s ease;
}

.trust-card:hover .card-icon {
    background: linear-gradient(135deg, #005096, #8CBB27);
    color: white;
    transform: scale(1.1);
}

.card-content h3 {
    color: #005096;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-content p {
    color: #555;
    font-size: 1.4em;
}

/* SECCIÓN RECONOCIMIENTOS */
.awards-section {
    background: white;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 40px;
}

.awards-title {
    text-align: center;
    font-size: 2.2em;
    color: #005096;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
}

.awards-title:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: #8CBB27;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.awards-subtitle {
    text-align: center;
    font-size: 1.4em;
    color: #666;
    margin-bottom: 40px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.award-item {
    text-align: center;
}

.award-item img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.award-item img:hover {
    transform: scale(1.03);
}

.award-item p {
    font-size: 1.1em;
    color: #333;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .award-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .awards-section {
        padding: 40px 20px;
    }
    
    .awards-title {
        font-size: 1.6em;
    }
}

/* FILOSOFÍA */
.philosophy-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.philosophy-icon {
    font-size: 2.5em;
    color: #8CBB27;
    margin-bottom: 15px;
}

.philosophy-item p {
    font-size: 1.5em;
    color: #333;
}

/* IDENTIDAD REGIONAL */
.identity-section {
    padding: 60px 0;
    background-color: white;
    text-align: center;
}

.identity-title {
    font-size: 2.2em;
    color: #005096;
    margin-bottom: 20px;
}

.identity-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.4em;
    color: #555;
}

/* CLIENTES */
.clients-section {
    padding: 60px 0;
    background-color: #005096;
    color: white;
    text-align: center;
}

.clients-title {
    font-size: 2.2em;
    margin-bottom: 30px;
}

.clients-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    padding-left: 20px;
}

.clients-list li {
    position: relative;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.5em;
}

.clients-list li:before {
    color: #8CBB27;
    font-size: 1.4em;
    position: absolute;
    left: 0;
    top: -3px;
}

/* CTA COMPACTO */
.compact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #005096 0%, #003366 100%);
    color: white;
    text-align: center;
}

.compact-cta h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.compact-cta p {
    font-size: 1.4em;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 35px;
    background: #8CBB27;
    color: white;
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    border: 2px solid #8CBB27;
}

.cta-button:hover {
    background: transparent;
    color: #8CBB27;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3em;
    }
    
    .hero-subtitle {
        font-size: 1.2em;
    }
    
    .intro-statement {
        font-size: 1.5em;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .reason-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .compact-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 2.5em;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
}







/* ======================
ESTILOS PARA SERVICIOS
=======================*/
.services-page {
    font-family: "Open Sans", sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Hero Section */
.services-hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f9f9f9;
    padding-top: 80px;
}

.services-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5em;
    color: #005096;
    margin-bottom: 15px;
    font-family: "Raleway", sans-serif;
}

.hero-subtitle {
    font-size: 1.5em;
    color: #8CBB27;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Parallax Sections */
.parallax-bg {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.parallax-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.service-title {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 3em;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    padding: 0 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Content Blocks */
.service-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.service-block {
    margin-bottom: 40px;
}

.block-title {
    color: #005096;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
}

.block-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: #8CBB27;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.service-block p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* Rutas corregidas para imágenes */
.servicio-consumidores {
    background-image: url('../../images/servicios-page/3servicios.jpg');
}
.servicio-productos {
    background-image: url('../../images/servicios-page/3servicios2.jpg');
}
.servicio-ciencia {
    background-image: url('../../images/servicios-page/3servicios3.jpg');
}
.servicio-medios {
    background-image: url('../../images/servicios-page/3medios.jpg');
}
.servicio-electorales {
    background-image: url('../../images/servicios-page/3electorales.jpg');
}


/* ======================
RESPONSIVE DESIGN
=======================*/
@media (max-width: 1200px) {
    .parallax-bg {
        height: 60vh;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8em;
    }
    .service-title {
        font-size: 2.5em;
    }
    .parallax-bg {
        height: 50vh;
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    /* Desactivar parallax en móviles */
    .parallax-bg {
        background-attachment: scroll !important;
        height: 50vh;
        min-height: 300px;
    }
    
    .services-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 2.2em;
    }
    
    .hero-subtitle {
        font-size: 1.2em;
    }
    
    .service-title {
        font-size: 2em;
        letter-spacing: 2px;
    }
    
    .block-title {
        font-size: 1.5em;
    }
}

@media (max-width: 576px) {
    .parallax-bg {
        height: 40vh;
        min-height: 250px;
    }
    
    .hero-title {
        font-size: 2em;
    }
    
    .service-title {
        font-size: 1.5em;
        letter-spacing: 1px;
    }
    
    .service-content {
        padding: 40px 15px;
    }
}

/* ==================
CONTACT PHP
********************* */

/* ESTILOS PARA FORMULARIO DE CONTACTO */
.contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    font-family: "Open Sans", sans-serif;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.social-icons-contact {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.social-icons-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #005096;
    color: white;
    font-size: 1.3em;
    transition: all 0.3s ease;
}

.social-icons-contact a:hover {
    background-color: #8CBB27;
    transform: translateY(-3px);
}

/* Cambiado a selector más específico */
.contact-section .section-title {
    font-size: 2.5em;
    color: #005096;
    margin-bottom: 15px;
    font-weight: 400; /* Esto solo aplicará a títulos dentro de contact-section */
    position: relative;
}

.contact-section .section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: #8CBB27;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-section .section-subtitle {
    font-size: 1.4em;
    color: #666;
    margin-top: 25px;
}

.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #005096, transparent);
    margin: 40px auto;
    max-width: 200px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.form-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1em;
    color: #005096;
    margin-bottom: 8px;
    font-weight: 600;
}

.required {
    color: #e74c3c;
}

.form-input, .form-textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    font-family: "Open Sans", sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #8CBB27;
    box-shadow: 0 0 0 3px rgba(140, 187, 39, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background-color: #005096;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #8CBB27;
    transform: translateY(-2px);
}

/* RECAPTCHA STYLING */
.g-recaptcha {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-section .section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .social-icons-contact {
        gap: 15px;
    }
    
    .social-icons-contact a {
        width: 45px;
        height: 45px;
        font-size: 1.1em;
    }
    
    .submit-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .contact-section .section-title {
        font-size: 1.8em;
    }
    
    .contact-section .section-subtitle {
        font-size: 1.3em;
    }
    
    .contact-section {
        padding: 40px 0;
    }
}