/*  import google fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap");

@font-face {
  font-family: 'Sagona';
  src: url('assets/fonts/sagona/SAGONABOOK.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Sagona';
  src: url('assets/fonts/sagona/SAGONABOOKBOLD.TTF') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Sagona';
  src: url('assets/fonts/sagona/SAGONABOOKBOLDITALIC.TTF') format('truetype');
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: 'Sagona';
  src: url('assets/fonts/sagona/SAGONABOOKITALIC.TTF') format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Sagona';
  src: url('assets/fonts/sagona/SAGONAEXTRALIGHT.TTF') format('truetype');
  font-weight: 200; /* ExtraLight */
  font-style: normal;
}

@font-face {
  font-family: 'Posterama';
  src: url('assets/fonts/posterama/Posterama-SemiBold.ttf') format('opentype');
  font-weight: bold;
  font-style: normal;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}

.logo-menu{
  color: #fff;
  display: flex;
  height: 50px;
  align-items: center; /* Centra verticalmente */
  opacity: 0;
}

.logo-menu img{
  margin-right: 20px;
}

.tiempos-cambio{
      font-family: 'Sagona', sans-serif;
}

/* custom scroll bar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* all similar content styling codes */
section {
  padding: 100px 0;
}
.max-width {
  max-width: 1300px;
  padding: 0 80px;
  margin: auto;
}
.about,
.services,
.teams,
.contact,
footer,
.somos,
.gp,
.gp2,
.ser,
.vision,
.grupos {
  font-family: "Poppins", sans-serif;
}
.about .about-content,
.services .serv-content,
.contact .contact-content,
.somos .somos-content,
.gp .gp-content,
.gp2 .gp2-content,
.ser,
.ser-content,
.vision .vision-content,
.grupos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
section .title {
  position: relative;
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 50px;
  padding-bottom: 20px;
}
section .title::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 180px;
  height: 3px;
  background: #575757;
  transform: translateX(-50%);
}

/* navbar styling */

.navbar-custom {
  position: fixed;
  width: 100%;
  z-index: 999;
  padding: 30px 0;
  font-family: "Nunito Sans", sans-serif;
  transition: all 0.3s ease;
  top: 0;
}
.navbar-custom.sticky {
  padding: 15px 0;
  background: #371E0E;
}
.navbar-custom.sticky .logo-menu{
  opacity: 1;
}
.navbar-custom .max-width {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-custom .logo a {
  color: #fff;
  font-size: 35px;
  font-weight: 600;
}
.navbar-custom .logo a span {
  color: #CC7722;
  transition: all 0.3s ease;
}
.navbar-custom.sticky .logo a span {
  color: #fff;
}
.navbar-custom .menu-custom li {
  list-style: none;
  display: inline-block;
}
.navbar-custom .menu-custom li a {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-left: 25px;
  transition: color 0.3s ease;
  text-decoration: none;
   position: relative;
}
.navbar-custom .menu-custom li a:hover {
  color: #CC7722;
}
.navbar-custom.sticky .menu-custom li a:hover {
  color: #fff;
}

.navbar-custom.sticky .menu-custom li a {
  text-decoration: none;
}

.navbar-custom .menu-custom li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background-color: #FDCA4D;
  transition: width 0.3s ease;
}
.navbar-custom .menu-custom li a.active::after {
  width: 100%;
}


.menu-custom{
  margin-bottom: unset;
}

/* menu btn styling */
.menu-btn {
  color: #fff;
  font-size: 23px;
  cursor: pointer;
  display: none;
}
.scroll-up-btn {
  position: fixed;
  height: 45px;
  width: 42px;
  background: #CC7722;
  right: 30px;
  bottom: 10px;
  text-align: center;
  line-height: 45px;
  color: #fff;
  z-index: 9999;
  font-size: 30px;
  border-radius: 6px;
  border-bottom-width: 2px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.scroll-up-btn.show {
  bottom: 30px;
  opacity: 1;
  pointer-events: auto;
}
.scroll-up-btn:hover {
  filter: brightness(90%);
}

/* home section styling */
.home {
  display: flex;
  background: url("img/banner.jpg") no-repeat center;
  height: 100dvh;
  color: #fff;
  min-height: 500px;
  background-size: cover;
  background-attachment: fixed;
  font-family: "Nunito Sans", sans-serif;
}
@supports (-webkit-touch-callout: none) {
  .home {
    background-attachment: scroll; /* para Safari iOS */
  }
}

.home .max-width {
  margin: auto 0 auto 30px;
}
.home .home-content img {
  max-width: 45%;
  height: auto;
}
.home .home-content .text-2 {
  font-size: 75px;
  font-weight: 600;
  margin-left: -3px;
}
.home .home-content .text-3 {
  font-size: 40px;
  margin: 5px 0;
}
.home .home-content .text-3 span {
  color: #CC7722;
  font-weight: 500;
}
.home .home-content a {
  display: inline-block;
  background: #CC7722;
  color: #fff;
  font-size: 25px;
  padding: 12px 36px;
  margin-top: 20px;
  font-weight: 400;
  border-radius: 6px;
  border: 2px solid #CC7722;
  transition: all 0.3s ease;
}
.home .home-content a:hover {
  color: #CC7722;
  background: none;
}

/* Servicios Styling */

.ser .ser-content .column {
  width: calc(50% - 10px);
}
.ser .ser-content .left {
  width: 50%;
  color: #CC7722;
}
.ser .ser-content .left .text {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}
.ser .ser-content .right {
  width: 50%;
}
.ser .ser-content .right .text {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}

/*GP Styling */


.gp{
  background: url('img/Leon.jpeg');
  background-size: cover;           /* cubre */
    background-position: center;      /* centrado */
    background-attachment: fixed;     /* magia parallax */
     display: grid; place-items: center;
    color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,.6);
}

.gp .title .sub {
      background: none;
      color: #CC7722;
}
.gp .gp-content .column {
  width: calc(50% - 10px);
}
.gp .gp-content .left {
  width: 50%;
}
.gp .gp-content .left .text {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}
.gp .gp-content .left .text p {
  text-align: justify;
}

/* Gp2 Styling */

.gp2 .gp2-content .column {
  width: calc(50% - 30px);
}
.gp2 .gp2-content .left {
  width: 45%;
}
.gp2 .gp2-content .left img {
  height: 400px;
  width: 400px;
  object-fit: cover;
  border-radius: 6px;
}
.gp2 .gp2-content .right {
  width: 48%;
}
.gp2 .gp2-content .right .text {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}
.gp2 .gp2-content .right p {
  text-align: justify;
}
.gp2 .gp2-content .right span {
  color: #CC7722;
}
.gp2 .gp2-content .right a {
  display: inline-block;
  background: #CC7722;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding: 10px 30px;
  margin-top: 20px;
  border-radius: 6px;
  border: 2px solid #CC7722;
  transition: all 0.3s ease;
}

/* Somos styling */
.somos .title::after {
  content: "Doctrina";
}
.somos .somos-content {
  width: 100%;
}
.somos .somos-content .text {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}
.somos .somos-content p {
  text-align: justify;
}
.somos .somos-content span {
  color: #CC7722;
}
.somos .somos-content span .asi {
  text-align: center;
}

.about .about-content .left {
  width: 45%;
}
.about .about-content .left img {
  height: 400px;
  width: 400px;
  object-fit: cover;
  border-radius: 6px;
}
.about .about-content .right {
  width: 55%;
}
.about .about-content .right .text {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}
.about .about-content .right .text span {
  color: #CC7722;
}
.about .about-content .right p {
  text-align: justify;
}
.about .about-content .right a {
    display: inline-block;
    background: #CC7722;
    color: #fff;
    /* font-size: 20px; */
    font-weight: 500;
    padding: 6px 24px;
    margin-top: 20px;
    border-radius: 21px;
    border: 2px solid #CC7722;
    transition: all 0.3s ease;
    text-decoration: none;
}
.about .about-content .right a:hover {
  color: #CC7722;
  background: none;
}

/* Vision section */

.vision .title::before {
  background: #575757;
}

.vision h2 {
  color: #575757;
}

.vision {
  color: #fff;
  align-items: center;
}

.vision .vision-content .card {
  width: calc(45% - 20px);
  background: #55402e;
  text-align: center;
  border-radius: 6px;
  padding: 20px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vision .vision-content .card i {
  font-size: 50px;
  color: #CC7722;
}
.vision .vision-content .card:hover i {
  transition: color 0.3s ease;
  color: #fff;
}

.vision .vision-content .card:hover {
  background: #CC7722;
}

.vision .vision-content .card .box {
  color: #fff;
  transition: all 0.3s ease;
}
.vision .vision-content .card:hover .box {
  transform: scale(1.05);
}

.vision .vision-content .card .text {
  font-size: 25px;
  font-weight: 500;
  margin: 10px 0 7px 0;
}

/* Grupos Pequeños Style */

.grupos {
  background: url('img/grupospquenios.jpg');
  align-items: center;
}

.grupos .grupos-content .card {
  text-align: center;
  border-radius: 6px;
  padding: 20px 25px;
  cursor: pointer;
  height: 250px;
  transition: all 0.3s ease;
}

.grupos .grupos-content .card .box > i {
  font-size: 50px;
  color: #CC7722;
}

.grupos .grupos-content .card .text {
  font-size: 25px;
  font-weight: 500;
  margin: 10px 0 7px 0;
}
.grupos .grupos-content .card a {
      display: inline-block;
    background: #CC7722;
    color: #fff;
    /* font-size: 20px; */
    font-weight: 500;
    padding: 6px 24px;
    margin-top: 20px;
    border-radius: 21px;
    border: 2px solid #CC7722;
    transition: all 0.3s ease;
    text-decoration: none;
}

.grupos .grupos-content a:hover {
      color: #CC7722;
    background: #fff;
}

/* services - staff section styling */

.esmerilado{
   background: rgba(255, 255, 255, 0.2) !important;

  /* Efecto esmerilado */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px) !important; /* Safari */

  /* Opcional: borde suave */
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  color: #fff !important;
  background-color: unset;
}

.pilares{
  background: url('img/pilares.png') !important;
}
.services,
.teams {
  color: #fff;
  background: #474747;
  
}
.services .title::before,
.teams .title::before {
  background: #fff;
}


.services .serv-content .card {
  position: relative;
  height: 470px;
  width: 800px;
  background: #222;
  margin: auto;
  text-align: center;
  border-radius: 6px;
  padding: 20px 25px;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease;
}

.services .serv-content .card p {
  text-align: justify;
}
.services .serv-content .card:hover {
  background: #CC7722;
}
.services .serv-content .card .box {
  transition: all 0.3s ease;
}
.services .serv-content .card:hover .box {
  transform: scale(1.05);
}
.services .serv-content .card i {
  font-size: 50px;
  color: #CC7722;
  transition: color 0.3s ease;
}
.services .serv-content .card:hover i {
  color: #fff;
}
.services .serv-content .card .text {
  font-size: 25px;
  font-weight: 500;
  margin: 10px 0 7px 0;
}
/* Img */
.services .serv-content .card img {
  height: 150px;
  width: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #CC7722;
  transition: all 0.3s ease;
}
.services .serv-content .card:hover img {
  border-color: #fff;
}
/* Img */

.teams .carousel .card {
  border-radius: 6px;
  padding: 25px 35px;
  text-align: center;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 300px;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
}
.teams .carousel .card:hover {
  background: #CC7722;
}
.teams .carousel .card .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.teams .carousel .card:hover .box {
  transform: scale(1.05);
}
.teams .carousel .card .text {
  font-size: 25px;
  font-weight: 500;
  margin: 10px 0 7px 0;
  line-height: 25px;
}
/* Icons */
.teams .carousel .card i {
  font-size: 70px;
  color: #fff;
  transition: color 0.3s ease;
}

.teams .carousel .card img {
  height: auto;
  max-height: 66px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.teams .carousel .card a {
  display: inline-block;
  background: #CC7722;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding: 10px 30px;
  margin-top: 20px;
  border-radius: 6px;
  border: 2px solid #CC7722;
  transition: all 0.3s ease;
}
.teams .carousel a:hover {
  color: #fff;
  background: #575757;
}

.owl-dots {
  text-align: center;
  margin-top: 20px;
}
.owl-dot {
  height: 13px;
  width: 13px;
  margin: 0 5px;
  outline: none !important;
  border-radius: 50%;
  border: 2px solid #CC7722 !important;
  transition: all 0.3s ease;
}
.owl-dot.active {
  width: 35px;
  border-radius: 14px;
}
.owl-dot.active,
.owl-dot:hover {
  background: #CC7722 !important;
}

.contact .contact-content .column {
  width: calc(50% - 30px);
}
.contact .contact-content .text {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact .contact-content .left p {
  text-align: justify;
}
.contact .contact-content .left .icons {
  margin: 10px 0;
}
.contact .contact-content .row i {
  font-size: 25px;
  color: #CC7722;
}
.contact .contact-content .info .head {
  font-weight: 500;
}
.contact .contact-content .info .sub-title {
  color: #333;
}
.contact .right form .fields {
  display: flex;
}
.contact .right form .field,
.contact .right form .fields .field {
  height: 45px;
  width: 100%;
  margin-bottom: 15px;
}
.contact .right form .textarea {
  height: 80px;
  width: 100%;
}
.contact .right form .field input,
.contact .right form .textarea textarea {
  height: 100%;
  width: 100%;
  border: 1px solid lightgrey;
  border-radius: 6px;
  outline: none;
  padding: 0 15px;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}
.contact .right form .field input:focus,
.contact .right form .textarea textarea:focus {
  border-color: #b3b3b3;
}
.contact .right form .textarea textarea {
  padding-top: 10px;
  resize: none;
}
.contact .right form .button {
  height: 47px;
  width: 170px;
}
.contact .right form .button button {
      display: inline-block;
    background: #CC7722;
    color: #fff;
    /* font-size: 20px; */
    font-weight: 500;
    padding: 6px 24px;
    margin-top: 20px;
    border-radius: 21px;
    border: 2px solid #CC7722;
    transition: all 0.3s ease;
    text-decoration: none;
}
.contact .right form .button button:hover {
  color: #CC7722;
  background: none;
}

/* footer section styling */
footer {
  background: #575757;
  padding: 15px 23px;
  color: #fff;
  text-align: center;
}
footer span a {
  color: #CC7722;
  text-decoration: none;
}
footer span a:hover {
  text-decoration: underline;
}

/* responsive media query start */
@media (max-width: 1300px) {
  .home .max-width {
    margin-left: 0px;
  }
}

@media (max-width: 1104px) {
  .about .about-content .left img,
  .gp2 .gp2-content .left img {
    height: 350px;
    width: 350px;
  }
  .ser .ser-content .left {
    height: 100px;
  }
  .services .serv-content .card {
    height: 550px;
  }
}

@media (max-width: 991px) {
  .max-width {
    padding: 0 50px;
  }
}
@media (max-width: 947px) {
  .menu-btn {
    display: block;
    z-index: 999;
  }
  .menu-btn i.active:before {
    content: "\f00d";
  }
  .navbar-custom .menu-custom {
    position: fixed;
    height: 100vh;
    width: 100%;
    right: -100%; 
    top: 0;
    background: #371E0E;
    text-align: center;
    padding-top: 80px;
    transition: all 0.3s ease;
  }
  .navbar-custom .menu-custom.active {
  right: 0;
}
  .navbar-custom .menu.active {
    left: 0;
  }
  .navbar-custom .menu-custom li {
    display: block;
  }
  .navbar-custom .menu-custom li a {
    display: inline-block;
    margin: 20px 0;
    font-size: 25px;
  }
  .home .home-content .text-2 {
    font-size: 70px;
  }
  .home .home-content .text-3 {
    font-size: 35px;
  }
  .home .home-content a {
    font-size: 23px;
    padding: 10px 30px;
  }
  .max-width {
    max-width: 930px;
  }
  .about .about-content .column,
  .gp2 .gp2-content .column,
  .ser .ser-content .column {
    width: 100%;
  }
  .about .about-content .left,
  .gp2 .gp2-content .left,
  .ser .ser-content .left {
    display: flex;
    justify-content: center;
    margin: 0 auto 60px;
  }
  .about .about-content .right,
  .gp2 .gp2-content .right,
  .ser .ser-content .right {
    flex: 100%;
  }
  .services .serv-content .card {
    width: calc(50% - 10px);
    height: 600px;
    margin-bottom: 20px;
  }
  .vision .vision-content .card {
    width: calc(50%-10px);
    margin-bottom: 20px;
  }

  .contact .contact-content .column {
    width: 100%;
    margin-bottom: 35px;
  }
}

@media (max-width: 690px) {
  .max-width {
    padding: 0 23px;
  }
  .home .home-content .text-2 {
    font-size: 60px;
  }
  .home .home-content .text-3 {
    font-size: 32px;
  }
  .home .home-content a {
    font-size: 20px;
  }
  .services .serv-content .card {
    width: 100%;
    height: auto;
  }
  .vision .vision-content .card {
    width: 100%;
    height: auto;
  }

  .grupos .grupos-content .card {
    height: 300px;
  }
}

@media (max-width: 500px) {
  .home .home-content .text-2 {
    font-size: 50px;
  }
  .home .home-content .text-3 {
    font-size: 27px;
  }
  .about .about-content .right .text,
  .gp2 .gp2-content .right .text,
  .ser .ser-content .right .text {
    font-size: 19px;
  }
  .contact .right form .fields {
    flex-direction: column;
  }

  .contact .right form .name,
  .contact .right form .email {
    margin: 0;
  }
  .scroll-up-btn {
    right: 15px;
    bottom: 15px;
    height: 38px;
    width: 35px;
    font-size: 23px;
    line-height: 38px;
  }
}


.subpagina {
  position: fixed;
    top: 80px; /* debajo de la navbar */
    left: 0;
    right: 0;
    z-index: 990;
    height: 100px;
    background: url(img/bread.jpg) no-repeat center;
    background-size: cover;
    display: flex;
    padding-left: 40px;
    align-items: center;
    transition: height 0.3s ease, padding 0.3s ease;
    min-height: unset;
    padding: 0;
    padding-left: 40px;
}

.subpagina.shrink {
    height: 50px;
    padding-left: 40px;
    background-position: center center;
}

.navbar-custom.secundario .logo-menu{
  opacity: 1;
}

.titulo-pagina-sec{
      font-size: 1rem;
    font-weight: 600;
    line-height: 3rem;
}

.breadcrumb-custom {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  font-size: 0.95rem;
  color: #eee;
  background: none;
}

.breadcrumb-custom li {
  display: flex;
  align-items: center;
  color: #ddd;
}

.breadcrumb-custom li a {
  text-decoration: none;
  color: #f7f2e5; /* Beige claro que combina con café */
  transition: color 0.3s ease;
}

.breadcrumb-custom li a:hover {
  color: #ffcc88; /* tono ocre cálido */
}

.breadcrumb-custom li span {
  margin: 0 0.5rem;
  color: #aa8a66; /* separador sutil */
}

.breadcrumb-custom li[aria-current="page"] {
  font-weight: bold;
  color: #ffffff;
}

.pg-sec{
      margin-top: 180px;
}

.title-accent{
      color: #FDCA4D;
}

.quote{
  font-size: 0.8rem !important;
}

.title-classic{
   font-family: "Source Serif 4", serif;
}

.divider{
      border: 0.5px solid #f0f0f0;
}

.cuadro-mision{
    background-color: #844D23 !important;
    color: #fff !important;
    padding: 20px 40px !important;
}

.circulo{
      width: 50px;
    height: 50px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #854c26;
    font-size: 20px;
}

.caja-centrada{
    display: flex;
    flex-direction: column;
    align-items: center;
        justify-content: center;
}

.enlace-negro{
      border: 2px solid #fff;
    color: #fff;
    padding: 6px 24px;
    text-decoration: none;
    border-radius: 30px;
}

.action-button{
      display: inline-block;
    background: #CC7722;
    color: #fff;
    /* font-size: 20px; */
    font-weight: 500;
    padding: 6px 24px;
    margin-top: 20px;
    border-radius: 21px;
    border: 2px solid #CC7722;
    transition: all 0.3s ease;
    text-decoration: none;
}

.action-button:hover {
    color: #CC7722;
    background: #fff;
}

#btn-enviar:disabled{
    background: #693400;
    border: 2px solid #693400;
    cursor: not-allowed;
    transition: none;
    color: #f9f9f9;
}