*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;

background:
linear-gradient(rgba(5,15,30,0.85), rgba(5,15,30,0.95)),
url("https://static.vecteezy.com/system/resources/thumbnails/021/916/079/small/oil-gas-industry-business-free-photo.jpg");

background-size:cover;
background-position:center;
background-attachment:fixed;

color:white;
padding-top:80px;
}

/* NAVBAR */

.navbar{
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.logo{
  width: 200px;
  filter: brightness(1.15) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.nav-links{
  position: absolute;
  top: 100%;
  right: 8%;
  width: 260px;

  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;

  list-style: none;
  background: #FFFF;
  backdrop-filter: blur(12px);

  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(-10px);
  transition: all 0.3s ease;
}

/* CUANDO SE ABRE */
.nav-links.active{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-links a{
  color: #0a1428eb;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 5px;
  transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active{
  color: #6FD34A;
  transform: translateX(5px);
}

/* BOTÓN MENÚ OCULTO EN DESKTOP */
.menu-toggle{
  display: block;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
}

.menu-toggle:hover{
  color: #6FD34A;
}
/* MOBILE */
@media (max-width: 768px){

  .menu-toggle{
    display: block;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .menu-toggle:hover{
    color: rgb(62, 252, 20);
    text-shadow: 0 0 10px rgba(62, 252, 20, 0.6);
  }

  .nav-links{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    background: #ffffff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* oculto real */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-20px);
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  }

  .nav-links.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a{
    font-size: 1.1rem;
  }
}


/* HERO */

.hero{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;

background:
linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.9)),
url("https://www.sas.com/es_mx/customers/local/ypf/_jcr_content/par/styledcontainer_f77/par/styledcontainer_2079/image.img.jpg/1519186191834.jpg");

background-size:cover;
background-position:center;
}

.hero h1{
font-size:3rem;
}

.hero p{
opacity:.8;
margin:20px 0;
}

.btn{
display:inline-block;
padding:14px 40px;
background:#3EFC14;
color:white;
border-radius:30px;
text-decoration:none;
font-weight:600;
letter-spacing:1px;
transition:.4s;
}


.btn:hover{
transform:translateY(-5px);
box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

/* ===== QUIENES SOMOS ===== */

.about-section{
padding:120px 10%;
background:#ffffff;
color:#333;
}
.about-section h2 i {
  color: #3EFC14;
  margin-right: 10px;
  transition: 0.3s;
}

.about-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.about-image img{
width:100%;
border-radius:15px;
box-shadow:0 25px 50px rgba(0,0,0,0.3);
}

.about-text h2{
font-size:2.5rem;
color:#123769;
margin-bottom:20px;
}

.about-text p{
margin-bottom:20px;
line-height:1.7;
}

/* MINI CARDS */

.about-cards{
display:flex;
gap:20px;
margin-top:30px;
}

.mini-card{
background:#f4f6fb;
padding:20px;
border-radius:12px;
text-align:center;
flex:1;
transition:.4s;
}

.mini-card i{
font-size:30px;
color:#3EFC14;
}

.mini-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 30px rgba(0,0,0,0.2);
}
.about-btn{
text-align:center;
margin-top:60px;
}

.btn-conocenos{
display:inline-block;
padding:14px 40px;
background:#3EFC14;
color:white;
border-radius:30px;
text-decoration:none;
font-weight:600;
letter-spacing:1px;
transition:.4s;
}

.btn-conocenos:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,0.4);
background:#3EFC14;
}

/* 📱 RESPONSIVE */
@media (max-width: 900px) {

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
  }

  .about-text {
    max-width: 100%;
  }

  .about-cards {
    flex-direction: column;
    gap: 15px;
  }

  .mini-card {
    width: 100%;
  }
}

/* ===== MVV ===== */

.mvv-section{
padding:120px 10%;
background:#0b1c2c;
text-align:center;
}

.mvv-container{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
margin-top:60px;
}

/* CARD */

.mvv-card{
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.1);
backdrop-filter:blur(10px);

padding:40px;
border-radius:15px;

transition:.4s;
color:white;
}

/* ICONOS */

.mvv-card i{
font-size:45px;
color:#3EFC14;
margin-bottom:20px;
}

.mvv-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* HOVER */

.mvv-card:hover{
transform:translateY(-15px) scale(1.03);
box-shadow:0 25px 60px rgba(0,0,0,0.5);
}

/* LISTA */

.mvv-card ul{
list-style:none;
padding:0;
}

.mvv-card ul li{
margin:10px 0;
}

/* RESPONSIVE */

@media(max-width:900px){
.mvv-container{
grid-template-columns:1fr;
}
}

/* CARRUSEL PRO */
.exp-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.exp-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: scrollLoop 20s linear infinite;
}

/* TARJETAS MEDIANAS */
.exp-card {
  width: 280px;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: 0.4s;
  text-align: center;
}

.exp-card i {
  font-size: 2.2rem;
  color: #3EFC14;
  margin-bottom: 10px;
}

.exp-card:hover {
  transform: translateY(-12px) scale(1.05);
  background: #3EFC14;
  color: black;
  box-shadow: 0 20px 40px rgba(255,165,0,0.5);
}

/* ANIMACION LOOP */
@keyframes scrollLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* SECCION */
.experience-section {
  padding: 80px 10%;
  background: #f4f6fb;
  color: #0f172a;
}

.experience-section h2 {
  color: #123769;
}

.experience-section h2 i{
  color: #3EFC14;
}
/* CONTENEDOR */
.exp-zigzag {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 50px;
}

/* FILA */
.exp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* INVERTIDO */
.exp-row.reverse {
  flex-direction: row-reverse;
}

/* TEXTO */
.exp-text {
  flex: 1;
  background: #ffffff0d;
  padding: 25px;
  border-radius: 15px;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.exp-text:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px #000;
}

/* ICONO */
.exp-icon {
  width: 80px;
  height: 80px;
  background: #3EFC14;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
  color: black;
  flex-shrink: 0;
  box-shadow: 0 10px 25px #000;
  transition: 0.4s;
}

.exp-icon:hover {
  transform: scale(1.2) rotate(10deg);
}



/* RESPONSIVE */
@media (max-width: 768px) {

  .exp-row,
  .exp-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .exp-icon {
    margin-bottom: 10px;
  }

  .exp-zigzag::before {
    display: none;
  }
}

/* BOTONES */
.exp-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #3EFC14;
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.exp-btn i {
  font-size: 1.5rem;
  color: black;
}

.prev { left: 10px; }
.next { right: 10px; }
/* ===== SERVICIOS ===== */

.services-container{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:50px; /* MÁS ESPACIO */
max-width:1100px;
margin:auto;

}.services-section{
padding:140px 10%;
background: #0f172a;
text-align:center;
}

.services-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #fff;
}

.services-pro .section-title{
  color: #123769;
}

.services-section h2 i {
  color: #3EFC14;
  margin-right: 10px;
  transition: 0.3s;
}

.services-section h2:hover i {
  transform: rotate(10deg) scale(1.2);
}
/* CARD */

.service-card{
position:relative;
height:360px; /* más alto */
border-radius:15px;
overflow:hidden;
cursor:pointer;
transition:.5s;
}

/* IMAGEN */

.service-card img{
width:100%;
height:100%;
object-fit:cover;
transition:.5s;
}

/* OVERLAY OSCURO */

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
top:0;
left:0;
}

/* CONTENIDO */

.content{
position:absolute;
bottom:30px;
left:30px;
right:30px;
color:white;
z-index:2;
transition:.5s;
}

.content i{
font-size:40px;
margin-bottom:10px;
color:rgba(255,255,255,0.8); /* ICONO TRANSPARENTE */
}

/* HOVER */

.service-card:hover img{
transform:scale(1.1);
}

.service-card:hover{
transform:translateY(-15px);
box-shadow:0 25px 60px rgba(0,0,0,0.6);
}

.service-card:hover .overlay{
background:rgba(0,0,0,0.4);
}

.service-card:hover .content{
transform:translateY(-10px);
}

.services-btn{
text-align:center;
margin-top:60px;
}

.btn-servicios{
display:inline-block;
padding:14px 40px;
background:#3EFC14;
color:white;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:.4s;
}

.btn-servicios:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,0.4);
background:#3EFC14;
}

/* RESPONSIVE */

@media(max-width:900px){
.services-container{
grid-template-columns:1fr 1fr;
}
}

@media(max-width:600px){
.services-container{
grid-template-columns:1fr;
}
}
/* ===== SERVICIOS PRO ===== */

.services-pro{
padding:120px 10%;
background:linear-gradient(180deg,#ffffff,#eef2f7);
}

.section-title{
text-align:center;
font-size:2.5rem;
color:#123769;
margin-bottom:60px;
}



/* GRID */

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

/* CARD */

.service-pro-card{
position:relative;
overflow:hidden;
border-radius:20px;
cursor:pointer;

height:380px;

box-shadow:0 10px 30px rgba(0,0,0,0.15);
transition:.5s;
}

/* IMAGEN */

.service-pro-card img{
width:100%;
height:100%;
object-fit:cover;
transition:1s;
}

/* OVERLAY */

.service-pro-card .overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(180deg,rgba(0,0,0,0.1),rgba(0,0,0,0.8));
}

/* CONTENIDO */

.service-content{
position:absolute;
bottom:0;
left:0;
padding:25px;
color:white;
z-index:2;

transform:translateY(40px);
transition:.5s;
}

/* ICONO */

.service-content i{
font-size:35px;
color:#ffffff;
margin-bottom:10px;
display:block;
}

/* TEXTO */

.service-content h3{
margin-bottom:10px;
}

.service-content p{
font-size:.9rem;
opacity:0;
transition:.5s;
}

/* HOVER EFECTO */

.service-pro-card:hover img{
transform:scale(1.1);
}

.service-pro-card:hover .service-content{
transform:translateY(0);
}

.service-pro-card:hover p{
opacity:1;
}

/* SOMBRA PRO */

.service-pro-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 60px rgba(0,0,0,0.3);
}
/* SECCIONES GENERALES */
.info-section {
  padding: 80px 10%;
  text-align: center;
  background: #f4f6fb;
  color: white;
}

.info-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #123769;
}

.info-section h2 i {
  color: #3EFC14;
  margin-right: 10px;
  transition: 0.3s;
}

.info-section h2:hover i {
  transform: rotate(10deg) scale(1.2);
}

/* CARD PRINCIPAL */
.info-card {
  max-width: 800px;
  margin: auto;
  padding: 30px;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: 0.4s;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255,140,0,0.3);
}

/* GRID */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
}

/* ITEMS */
.info-item {
  padding: 20px;
  border-radius: 15px;
  background: rgba(255,255,255,0.05);
  transition: 0.3s;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.info-item:hover {
  transform: translateY(-8px) scale(1.05);
  background: #3EFC14;
  color: black;
  box-shadow: 0 15px 40px rgba(255,165,0,0.5);
}

/* REVEAL ANIMATION (si no lo tienes bien hecho) */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* MAPA PROFESIONAL */
.map-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.map-card {
  position: relative;
  width: 90%;
  max-width: 900px;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transition: 0.5s;
}

/* MAPA */
.map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(110%);
}

/* OVERLAY TEXTO */
.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
}

.map-overlay h3 {
  margin: 0;
  font-size: 1.5rem;
}

.map-overlay p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* EFECTO HOVER */
.map-card:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 70px rgba(255,140,0,0.4);
}

/* EFECTO BRILLO */
.map-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.1);
  transform: skewX(-25deg);
}

.map-card:hover::after {
  left: 120%;
  transition: 0.7s;
}
/* ===== PROYECTOS ZIG ZAG ===== */

.projects-section{
padding:120px 10%;
background:#0f172a;
color:#333;
}

.projects-section h2 i {
  color: #3EFC14;
  margin-right: 10px;
  transition: 0.3s;
}

.section-title{
text-align:center;
font-size:2.5rem;
color:#ffff;
margin-bottom:80px;
}

.project-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
margin-bottom:100px;
}

.project-row.reverse{
direction:rtl;
}

.project-row.reverse .project-text{
direction:ltr;
}

.project-image img{
width:100%;
border-radius:15px;
box-shadow:0 25px 50px rgba(0,0,0,0.3);
transition:.5s;
}

.project-image img:hover{
transform:scale(1.05);
}

.project-text{
  background: white;
  padding: 30px;
  border-radius: 12px;

  /* sombra base */
  box-shadow:
    0 15px 30px rgba(0,0,0,0.2),

    /* ✨ sombra blanca suave */
    0 0 15px rgba(255,255,255,0.25);

  transition: 0.3s ease;
}
.project-text:hover{
  transform: translateY(-5px);

  box-shadow:
    0 20px 40px rgba(0,0,0,0.25),
    0 0 25px rgba(255,255,255,0.4);
}
.project-text h3{
color:#123769;
margin-bottom:10px;
}

/* ===== FOOTER ===== */

.footer {
  background: #0f172a;
  padding: 80px 10%;
  color: #fff;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

/* TITULOS */
.footer-col h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #00c853; /* verde corporativo */
  display: flex;
  align-items: center;
  gap: 8px;
}

/* TEXTO */
.footer-col p {
  font-size: 14px;
  margin: 8px 0;
  color: #d1d1d1;
  line-height: 1.6;
}

/* ICONOS GENERALES */
.footer i {
  font-size: 18px;
}

/* REDES */
.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-socials a {
  color: #fff;
  font-size: 20px;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  color: #00c853;
  transform: translateY(-3px);
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.15);
  opacity: 0.7;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

/* LINKS DEL FOOTER */
.footer-col a {
  color: #d1d1d1;        /* mismo color que el texto */
  text-decoration: none; /* sin subrayado */
  transition: 0.3s ease;
}

/* HOVER (efecto pro) */
.footer-col a:hover {
  color: #00c853;        /* verde corporativo */
}

/* EVITA QUE SE PONGAN MORADOS (visitados) */
.footer-col a:visited {
  color: #d1d1d1;
}

/* COLORES POR RED SOCIAL */
.footer-socials a:hover .bi-facebook {
  color: #1877f2;
}

.footer-socials a:hover .bi-linkedin {
  color: #0a66c2;
}

.footer-socials a:hover .bi-tiktok {
  color: #ffff;
}

.footer-socials a:hover .bi-globe {
  color: #00c853; /* tu color corporativo */
}
/* ===== ANIMACIONES ===== */

.reveal{
opacity:0;
transform:translateY(60px);
transition:1s;
}

.reveal.show{
opacity:1;
transform:translateY(0);
}

/* ===== RESPONSIVE ===== */

@media(max-width:900px){

.about-container{
grid-template-columns:1fr;
}

.project-row{
grid-template-columns:1fr;
}

.project-row.reverse{
direction:ltr;
}

}


/* =========================
   CANAL DE NOTICIAS
========================= */

.home-news{
  padding: 90px 8%;
  background: #f4f6fb;
}

.home-news h2{
  text-align: center;
  font-size: 2.2rem;
  color:#123769;
  margin-bottom: 40px;

}
.home-news h2 i {
  color: #3EFC14;
  margin-right: 10px;
  transition: 0.3s;
}

.home-news h2{
  text-align: center;
  font-size: 2.2rem;
  color:#123769;
  margin-bottom: 40px;
  text-shadow: none; /* 🔥 esto elimina cualquier sombra heredada */
}
.news-channel-container{
  display: flex;
  justify-content: center;
  align-items: center;
}

.news-channel-card{
  position: relative;
  width: 100%;
  max-width: 620px;
  border-radius: 22px;
  overflow: hidden;
  background: #f4f6fb;
  border: 1px solid rgba(111, 211, 74, 0.15);
  box-shadow:
    0 15px 40px rgba(0,0,0,0.30),
    0 0 20px rgba(111, 211, 74, 0.05);
  transition: 0.35s ease;
  margin: 0 auto;
}

.news-channel-card:hover{
  transform: translateY(-4px);
  box-shadow:
    0 20px 45px rgba(0,0,0,0.35),
    0 0 24px rgba(111, 211, 74, 0.10);
}

.facebook-frame-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 20px 0 20px;
  background: transparent;
}

.facebook-frame-wrap iframe{
  width: 100%;
  max-width: 500px;
  height: 620px;
  border: none;
  display: block;
  background: #fff;
  border-radius: 16px;
}

.news-channel-overlay{
  margin: 20px;
  background: rgba(13, 35, 58, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(111, 211, 74, 0.18);
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
}

.news-channel-overlay h3{
  color: rgb(230, 230, 230);
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.news-channel-overlay p{
  color: rgba(230, 230, 230, 0.78);
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 0.96rem;
}

.btn-news-channel{
  display: inline-block;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 12px;
  background:#3EFC14;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-news-channel:hover{
  transform: translateY(-2px);
  color: #ffffff;
  border-color: #3EFC14;
  box-shadow:
    0 10px 22px rgba(0,0,0,0.24),
    0 0 12px rgba(111, 211, 74, 0.10);
}

/* RESPONSIVE */
@media (max-width: 768px){
  .home-news{
    padding: 75px 6%;
  }

  .home-news h2{
    font-size: 1.8rem;
    margin-bottom: 28px;
  }

  .news-channel-card{
    max-width: 100%;
    border-radius: 18px;
  }

  .facebook-frame-wrap{
    padding: 16px 16px 0 16px;
  }

  .facebook-frame-wrap iframe{
    max-width: 100%;
    height: 560px;
    border-radius: 14px;
  }

  .news-channel-overlay{
    margin: 16px;
    padding: 20px;
    border-radius: 16px;
  }
}

@media (max-width: 480px){
  .home-news h2{
    font-size: 1.6rem;
  }

  .facebook-frame-wrap iframe{
    height: 500px;
  }

  .news-channel-overlay h3{
    font-size: 1.15rem;
  }

  .news-channel-overlay p{
    font-size: 0.92rem;
  }

  .btn-news-channel{
    width: 100%;
    text-align: center;
  }
}

#formMessage{
  margin-top: 15px;
  font-weight: 600;
  text-align: center;
}

/* ===== CONTACTO ===== */
.contact-section {
  background: linear-gradient(180deg, #0b1c2c 0%, #123769 100%);
  padding: 65px 6%;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 30px 25px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

/* TITULO */
.contact-section .section-title {
  text-align: center;
  color: #fff;
  margin-bottom: 8px;
  font-size: 32px;
  line-height: 1.2;
}

.contact-section .section-title i {
  color: #3EFC14;
  margin-right: 8px;
}

/* SUBTITULO */
.contact-subtitle {
  text-align: center;
  color: #d1d1d1;
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.5;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  text-align: left;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: 0.3s ease;
}

/* ALTURA DE INPUTS */
.form-group input {
  height: 46px;
}

/* PLACEHOLDER */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}

/* FOCUS */
.form-group input:focus,
.form-group textarea:focus {
  border-color: #3EFC14;
  box-shadow: 0 0 0 3px rgba(62, 252, 20, 0.15);
  background: rgba(255, 255, 255, 0.1);
}

/* TEXTAREA */
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* BOTON */
.btn-submit {
  background: linear-gradient(45deg, #3EFC14, #00c853);
  color: #0b1c2c;
  border: none;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
  align-self: center;
  min-width: 200px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(62, 252, 20, 0.35);
}

.btn-submit i {
  margin-right: 8px;
}

/* MENSAJE */
.form-message {
  font-size: 13px;
  min-height: 18px;
  text-align: center;
  margin-top: 4px;
}

.form-message.success {
  color: #3EFC14;
}

.form-message.error {
  color: #ff5252;
}

.form-message.loading {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-section {
    padding: 55px 5%;
  }

  .contact-container {
    max-width: 100%;
    padding: 25px 18px;
  }

  .contact-section .section-title {
    font-size: 28px;
  }

  .contact-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 14px;
  }

  .btn-submit {
    width: 100%;
    min-width: auto;
    text-align: center;
  }
}