


/* ==== CORRECCIÓN PARA EVITAR QUE W3CSS PISE TU ESTILO ==== */
header, header * {
    font-family: 'Hind', sans-serif !important;
    letter-spacing: normal !important;
   
}




/* RESET GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hind', sans-serif;
}

/* ============ TESTIMONIAL ============ */
.container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial {
  position: relative;
  width: 100%;
  padding: 50px 0;
  overflow: hidden;
}
.testimonial .image {
  object-fit: cover;
}
.testimonial .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 30px;
  height: 100%;
  width: 100%;
}
.slide p {
  text-align: center;
  padding: 0 50px;
}
.slide .quote-icon {
  font-size: 30px;
  color: #8cb518;
}
.slide .details {
  display: flex;
  flex-direction: column;
  align-items: right;
}

/* swiper button css */
.nav-btn {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  transform: translateY(30px);
  background-color: rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}
.nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.nav-btn::after,
.nav-btn::before {
  font-size: 20px;
  color: #fff;
}
.swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 1);
}
.swiper-pagination-bullet-active {
  background-color: #8cb518;
}
@media screen and (max-width: 768px) {
  .slide p {
    padding: 0 20px;
  }
  .nav-btn {
    display: none;
  }
}

/* Tipografía */
header, 
header * {
    font-family: 'Hind', sans-serif !important;
}

header h2 {
    font-size: 1.4rem;         /* Tamaño potente pero no como un h1 */
    color: #08758e !important;
    font-weight: 700 !important;   /* → GRUESA como un h1 */
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}


/* Título principal */
header h1 {
    font-size: 3rem;
    font-weight: 700 !important;
    max-width: 650px;
    line-height: 1.2;
    color: #08758e!important;
  
}

/* Párrafos */
header p {
    font-size: 1.2rem;
    max-width: 580px;
    color: #000 !important;
}



/* BOTÓN */
header a {
    margin-top: 25px;
    display: inline-block;
    background-color: #8cb518;
    padding: 15px 32px;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}

/* Flecha para Font Awesome 4.7 */
header a::after {
    content: "\f061"; 
    font-family: "FontAwesome";  /* ← versión 4.7 */
    margin-left: 12px;
}


/* Hover */
header a:hover {
    background-color: #76a112;
}

/* Logo */
header img {
    width: 210px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
}
    
 
@media (max-width: 768px) {
  .w3-display-middle {
    width: 100% !important;
    text-align: center !important;
  }
}




  

    header a {
        display: inline-block !important;
        white-space: nowrap !important;
        width: auto !important;
        max-width: none !important;
        padding: 15px 32px !important;
        font-size: 1.1rem !important;
        margin-bottom: 20px !important;
    }









/* ============ SECCIÓN 2 — PUBLICIMARCA ============ */

.publimarca {
  position: relative;
  padding: 100px 10%;
  background-color: #0d0d0d;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 2;
}

.publimarca-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
  position: relative;
  z-index: 2;
}
.publimarca-texto h2 {
  color: #08758e;
  font-size: 2.9rem;
  font-weight: 800;
}
.publimarca-texto p {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 520px;
}
@media (max-width: 900px) {
  .publimarca {
    padding: 60px 5%;
  }
  .publimarca-container {
    flex-direction: column;
    text-align: center;
  }
}
.publimarca-texto p {
  color: #ffffff;
}



/* ============ SECCIÓN 3 - BENEFICIOS ============ */

.beneficios {
  background-color: #08758e;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.beneficios-container {
  max-width: 1100px;
  margin: 0 auto;
}
.beneficios h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
}
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-items: center;
}
.beneficio-item {
  max-width: 250px;
}
.beneficio-item p {
  color: #e8e8e8;
}
.beneficios-grid::after {
  content: "";
  grid-column: 2 / 3;
}
@media (max-width: 992px) {
  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .beneficios-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ GALERÍA CORREGIDA (SIN ERROR “s”) ============ */

.galeria-sauros {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  margin: 0;
  padding: 0;
}

.column {
  flex: 1;
  max-width: 33.333%;
  margin: 0;
  padding: 0;
}

.column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 900px) {
  .row { flex-wrap: wrap; }
  .column { max-width: 50%; }
}

@media screen and (max-width: 600px) {
  .column { max-width: 100%; }
}

/* ============ SECCIÓN 5 — IDEAL PARA EMPRESAS ============ */

.ideal-empresas {
  position: relative;
  background-color: #0d0d0d;
  color: #fff;
  padding: 100px 10%;
}

.ideal-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

.ideal-texto {
  flex: 1;
  max-width: 500px;
  text-align: left;
  margin-top: -40px;
}
.ideal-texto h2 {
  color: #08758e;
  font-size: 2.9rem;
  font-weight: 800;
}

.ideal-lista {
  list-style: none;
  padding: 0;
  margin-left: 80px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.ideal-lista li {
  display: inline-flex;
  align-items: center;
  background-color: #08758e;
  color: #fff;
  padding: 10px 20px;
  font-size: 1.05rem;
  width: fit-content;
}

.punto {
  width: 14px;
  height: 14px;
  background-color: #000;
  border-radius: 50%;
  margin-right: 10px;
}

.ideal-imagen {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.ideal-imagen img {
  max-width: 420px;
  transform: translateX(-90px);
}

@media (max-width: 900px) {
  .ideal-container {
    flex-direction: column;
    text-align: center;
  }
  .ideal-texto {
    margin: 0 auto;
  }
  .ideal-imagen img {
    transform: none;
    max-width: 300px;
    margin-top: 20px;
  }
}

/* ============ CTA FINAL ============ */

.cta-sauros {
  background-color: #8cb518;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
.cta-container {
  max-width: 900px;
  margin: 0 auto;
}
.cta-sauros h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.cta-sauros p {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.btn-hero {
  display: inline-block;
  background-color: #08758e;
  color: #fff;
  padding: 0.8rem 1.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .3s;
}
.btn-hero:hover {
  background-color: #066b82;
}

/* ============ FOOTER ============ */

.footer-sauros {
  background: #111;
  color: #95b800;
}

.footer-logo-img {
  width: 180px;
  margin-bottom: 20px;
}

.footer-social-icons a {
  color: white;
  font-size: 34px;
  margin: 0 15px;
  text-decoration: none;
}
.footer-social-icons a:hover {
  color: #95b800;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.footer-link {
  color: #95b800;
  font-size: 17px;
  text-decoration: none;
}
.footer-link:hover {
  color: white;
}

.footer-copy {
  margin-top: 40px;
  color: white;
  font-size: 15px;
}

/* ===== TÍTULOS RESPONSIVE PARA MÓVIL ===== */
@media (max-width: 768px) {
    h1 {
        font-size: 1.9rem !important;
        line-height: 1.25;
    }

    h2 {
        font-size: 1.6rem !important;
        line-height: 1.25;
    }

    h3 {
        font-size: 1.3rem !important;
        line-height: 1.3;
    }
}






@media (max-width: 768px) {
    .pc-br {
        display: none;
    }

    .publimarca-texto p {
        font-size: 1rem;
        line-height: 1.55;
        max-width: 330px;
        margin: 0 auto;
        text-align: center;
        padding: 0 15px;
    }
}

















    /* Corregir distorsión de las cajas y círculos */
    .ideal-lista {
        margin-left: 0 !important;
        align-items: center;
    }

    .ideal-lista li {
    display: flex;
    align-items: center;           /* Alinea el punto y el texto */
    justify-content: flex-start;   /* <-- evita que se centre y se desacomode */
    gap: 10px;                     /* Espacio entre punto y texto */
    width: 100%;
    max-width: 280px;
    padding: 12px 15px;
}
    .punto {
        width: 12px;
        height: 12px;
        min-width: 12px;            /* asegura círculo */
        min-height: 12px;
        border-radius: 50%;
        flex-shrink: 0;             /* evita que se aplaste */
    }

    .ideal-imagen img {
        max-width: 240px;
        transform: none;
        margin: 20px auto 0;
    }


.circulo-responsive {
    position: absolute;
    width: 240px;
    left: 35%;
    transform: translateX(-50%);
    bottom: 20px;
    z-index: 10;
}




@media (max-width: 992px) {
    .circulo-responsive {
        width: 150px;
        right: 40px;
        bottom: 20px;
    }
}
@media (max-width: 600px) {
    .circulo-responsive {
        width: 120px;
        right: 50%;
        transform: translateX(50%);
        bottom: 70px !important;
    }
}


.bgimg {
  min-height: 100%;
  background-position: center;
  background-size: cover;
  background-image: url("../images/sauros-redes.jpg");
  background-position: right;
}

.bgimg-3 {
  background-attachment: fixed;
  background-position: right;
  background-repeat: no-repeat;
  background-image: url("../images/estatico-sauros.png");
}
@media (max-width: 768px) {
  .bgimg {
    background-position: center !important; /* La chava se centra */
  }
}


/* Evitar que el link del logo tome estilos de botón */
header .logo-link {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
}

header .logo-link::after {
    content: "" !important; /* Quita la flecha */
}









