::selection {background-color: #de9500; color: #ffffff;}
::-moz-selection {background-color: #de9500; color: #ffffff;}
/* ===============================
   Body Typography
   =============================== */
body {
	font-family: 'Inter', Roboto, sans-serif;
	font-size: clamp(16px, 1vw + 0.5rem, 18px); /* scales between 16px–18px */
	line-height: 1.6;
}
img{
	max-width:100%;
	height:auto;
}
/* ============================
   Navbar Styling (Lima style)
   ============================ */

/* Base nav links */
.navbar-nav .nav-link {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.5rem; 
  letter-spacing: .02em;
  color: #fff; /* default white on transparent header */
  transition: color .2s ease-in-out;
}

/* Hover and focus */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #F4A825; /* accent gold */
  text-decoration: none;
}

/* Active state */
.navbar-nav .nav-link.active,
.navbar-nav .current-menu-item > .nav-link {
  color: #F4A825 !important;
}

/* Dropdown caret (arrow for parent items) */
.navbar-nav .menu-item-has-children > a::after {
  content: "›";
  margin-left: .4em;
  font-size: .8em;
  display: inline-block;
  transform: rotate(0deg);
  transition: transform .2s;
}
.navbar-nav .menu-item-has-children:hover > a::after {
  transform: rotate(90deg); /* flips down on hover */
}

/* Dropdown menu container */
.dropdown-menu {
  border-radius: 0 0 .75rem .75rem;
  border: none;
  background-color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  padding: .5rem 0;
  min-width: 220px;
}

/* Dropdown items */
.dropdown-item {
  font-family: 'Inter', Roboto, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #121417;
  transition: background .2s, color .2s;
}
.dropdown-item:hover,
.dropdown-item:focus {
  color: #fff;
  background-color: #F4A825;
}
.dropdown-item.active, .dropdown-item:active {
    background-color: var(--bs-primary);
}
/* Solid header (non-front pages): switch to dark nav links */
.header-solid .navbar-nav .nav-link {
  color: #121417;
}
.header-solid .navbar-nav .nav-link:hover,
.header-solid .navbar-nav .nav-link.active {
  color: #014A7F;
}
.navbar-brand.mb-0 {
    color: #fff;
}
.dropdown-toggle::after{
	border-top:none;
}
/* ===============================
   Heading Typography Styles
   =============================== */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', ui-serif, Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: .50em;
  /*color: var(--bs-dark);*/
}
h1, .h1 {
  font-size: clamp(5rem, 4vw + 1rem, 6rem); /* ~80–96px */
  letter-spacing: -0.5px;
}
h2, .h2 {
    font-size: clamp(3.5rem, 4vw + 1rem, 4.5rem); /* ~80–96px */
    letter-spacing: -0.3px;
    margin-bottom: 15px;
}
h3, .h3 {
  font-size: clamp(1.5rem, 2.2vw + .5rem, 2rem); /* ~24–32px */
  font-weight: 500;
}
h4, .h4 {
  font-size: clamp(1.25rem, 1.5vw + .5rem, 1.5rem); /* ~20–24px */
  font-weight: 500;
}
h5, .h5 {
  font-size: 1rem; /* ~16px */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--bs-secondary);
}
/* COMPONENTES */
.text-light {
    color: rgb(255 255 255) !important;
}
.accordion-button{
	font-size: 1.4rem;
}
/* HERO BANNER */
.hero-banner {
    min-height: 730px;
}
.hero-banner h1{
    line-height: 1;
}
.hero-banner p {
	margin: 0 15%;
	font-size: 1.2rem;
	margin-bottom:30px;
}
/* BUTTONS */
.btn {
    padding: 12px 22px;
    border-radius: 999px;
}
.btn:hover {
    background: #eea426;
    border-color: #eea426;
    color: #fff;
    transition: all ease 0.2s;
}
.btn-warning {
    color: #000000;
}
.btn-warning:hover {
    background-color: #fff;
	color: #e69a00;
	border-color: #fff;
}
/* EXTRAS */
.py-120{
	padding-bottom: 120px;
    padding-top: 120px;
}
.py-80, .col-11.col-md-8.col-lg-6.col-xl-5.order-lg-0{
	padding-bottom: 80px;
    padding-top: 80px;
}
.pt-80{
    padding-top: 80px;
}
.pb-80{
	padding-bottom: 80px;
}
img.custom-logo {
    max-height: 44px;
    width: auto;
}
button.navbar-toggler.border-0 {
    color: #fff;
}
/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1050;
  display: none; /* hidden by default */
  border-radius: 50%;
  padding: 0.75rem 0.9rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
@media (max-width: 1199px) {
	.hero-banner p {
    margin-left: 0;
	margin-right: 0;
	}
	.hero-banner {
    min-height: 550px;
    padding-top: 100px;
    padding-bottom: 100px;
	}
	.hero-banner h1{
		margin-top:50px
	}
}
@media (max-width: 991px) {
	div#navbarNav {
    background: #fff;
	}
	div#navbarNav a.nav-link{
		color: var(--bs-body-color);
	}
	div#navbarNav a.nav-link:hover{
    background: #f4a825;
    color: #fff!important;
	}
	ul#menu-main-menu {
    display: block
	}
	ul#menu-main-menu li{
		display: block;
		text-align:center;
	}
	.block-carrousel-content {
        height: 600px;
    }
	.col-11.col-md-8.col-lg-6.col-xl-5.order-lg-0 {
    width: 100%;
}
}
@media (max-width: 767px) {
  body {
    font-size: 15px;      /* comfortable mobile body size */
  }
  h1, .h1 {
    font-size: 2rem;      /* ~32px */
    line-height: 1.3;
  }
  h2, .h2 {
    font-size: 1.75rem;   /* ~28px */
    line-height: 1.3;
    margin-bottom: 12px;
  }
  h3, .h3 {
    font-size: 1.5rem;    /* ~24px */
    line-height: 1.4;
  }
  h4, .h4 {
    font-size: 1.25rem;   /* ~20px */
    line-height: 1.4;
  }
  h5, .h5 {
    font-size: 1rem;      /* 16px */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
.py-120{
	padding-bottom: 100px;
    padding-top: 100px;
}
.py-80, .col-11.col-md-8.col-lg-6.col-xl-5.order-lg-0{
	padding-bottom: 60px;
    padding-top: 60px;
}
.pt-80{
    padding-top: 60px;
}
.pb-80{
	padding-bottom: 60px;
}
	.block-carrousel-content {
        height: 600px;
    }
}
@media (max-width: 575px) {
figure.wp-block-image.size-large.is-style-rounded {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
}
	.block-carrousel-content {
        height: 530px;
    }
}