@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Custom Font Face */
@font-face {
  font-family: 'Carter Sans Pro';
  src: url('../fonts/CarterSansPro-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* Variables de colores y fuentes */
:root {
  --dark_brand_color: #08232b;
  --main_brand_color: #26A4CB;
  --secondary_brand_color: #186881;
  --heading-font: 'Carter Sans Pro', sans-serif;
  --content-font: 'Inter', sans-serif;
}

body{
	font-family: var(--content-font);
}

.phone_mobile{
	display: none;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a:hover, a:focus{
	color: var(--dark_brand_color);
}

/* Clase CTA Primary */
.cta-primary {
  position: relative;
  background: linear-gradient(180deg, #17AEDD 0%, #26A4CB 100%);
  color: var(--dark_brand_color);
  border-radius: 32px;
  border: 1px solid #fff;
  box-shadow: 0 0 5px 0 rgba(156, 156, 156, 0.55);
  font-weight: 700;
  font-size: 22px;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  padding: 12px 24px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  overflow: hidden;
  z-index: 0;
}


.cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #0C8DB6 0%, #1591B8 100%);
  border-radius: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.cta-primary:hover::before {
  opacity: 1;
}

.cta-primary:hover {
  box-shadow: 0 2px 10px 0 rgba(156, 156, 156, 0.75);
}

/* Header Styles */
header{
  background: var(--dark_brand_color);
  padding: 11px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo img{
  max-width: 100%;
}


.header-info {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-text {
  color: #fff;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 24px;
}

/* Home Hero Styles */
.home-hero {
  padding: 60px 0;
  background-image: url('/wp-content/uploads/2025/09/bg_home.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-left {
  flex: 1;
}

.hero-left img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}

.review-logos {
  display: flex;
  gap: 30px;
  align-items: center;

}

.review-logos img {
  max-width: 120px;
  height: auto;
}

.hero-title {
  font-family: var(--heading-font);
  font-size: 77px;
  font-weight: bold;
  color: #fff;
  line-height: 69px;
  margin: 0;
  text-transform: uppercase;
}

.hero-content-text {
  font-size: 16px;
  line-height: 29px;
  color: #fff;
}

.hero-content-text p {
  margin-bottom: 15px;
}

.hero-content-text p:last-child {
  margin-bottom: 0;
}


/* Services Section Styles */
.services-section {
  background: var(--dark_brand_color);
  padding: 80px 0;
  color: white;
}

.services-title {
  font-family: var(--heading-font);
  font-size: 58px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  text-align: center;
  margin: 0 0 10px 0;
}

.services-content {
  text-align: center;
  font-size: 16px;
  line-height: 29px;
  margin-bottom: 24px;
}

.services-content p {
  margin-bottom: 15px;
}

.services-content p:last-child {
  margin-bottom: 0;
}

.services-grid {
  display: flex;
  justify-content: space-between;
}

.service-item {
  text-align: center;
  max-width: 300px;
}

.service-image-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.service-image {
  width: 186px;
  height: 186px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  z-index: 2;
  position: relative;
  border: 4px solid var(--dark_brand_color);
}


.service-circle {
  position: absolute;
  top: 10px;
  left: 0;
  width: 186px;
  height: 186px;
  border: 3px solid var(--main_brand_color);
  background: var(--main_brand_color);
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s ease;
}


.service-image:hover + .service-circle{
  border: 3px solid var(--secondary_brand_color);
  background: var(--secondary_brand_color);
}

.service-title {
  font-family: var(--content-font);
  font-size: 20px;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  margin: 0;
}


/* About Us Section Styles */
.about-us-section {
  background: var(--dark_brand_color);
  padding: 70px 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-left {
  flex: 1;
}

.about-left img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.about-title {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  line-height: 44px;
  margin: 0;
}

.about-content-text {
  font-size: 16px;
  line-height: 29px;
  color: white;
}

.about-content-text p {
  margin-bottom: 15px;
}

.about-content-text p:last-child {
  margin-bottom: 0;
}


/* Logo Grid Section Styles */
.logo-grid-section {
  padding: 60px 0;
}

.logo-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-grid img {
  max-height: 80px;
  width: auto;
}


/* Financing Section Styles */
.financing-section {
  background: var(--secondary_brand_color);
  padding: 270px 0 70px 0;
}

.financing-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.financing-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.financing-right {
  flex: 1;
}

.financing-right img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.financing-title {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  line-height: 44px;
  margin: 0;
}

.financing-content-text {
  font-size: 16px;
  line-height: 29px;
  color: white;
}

.financing-content-text p {
  margin-bottom: 15px;
}

.financing-content-text p:last-child {
  margin-bottom: 0;
}


/* Coupons Section Styles */
.coupons-section {
  padding: 80px 0;
}

.coupons-title {
  font-family: var(--heading-font);
  font-size: 58px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--dark_brand_color);
  text-align: center;
  margin: 0 0 10px 0;
}

.coupons-content {
  text-align: center;
  font-size: 16px;
  line-height: 29px;
  margin-bottom: 22px;
}

.coupons-content p {
  margin-bottom: 15px;
}

.coupons-content p:last-child {
  margin-bottom: 0;
}

.coupons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.coupon-card {
  background: var(--dark_brand_color);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  transition: all 0.3s ease;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.coupon-card-inner {
  border: 1.5px dashed white;
  padding: 20px;
  border-radius: 8px;
}

.coupon-card:hover {
  background: var(--main_brand_color);
}

.coupon-card:hover .coupon-card-inner {
  border-color: #FFAD27;
}

.coupon-image {
  max-width: 160px;
}

.coupon-price {
  font-family: var(--content-font);
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  margin: 15px 0;
  line-height: 1.2;
}

.coupon-title {
  font-family: var(--heading-font);
  font-size: 29px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  margin: 0 0 15px 0;
}

.coupon-content-text {
  font-size: 15x;
  line-height: 20px;
  margin-bottom: 15px;
}

.coupon-content-text p {
  margin-bottom: 10px;
}

.coupon-content-text p:last-child {
  margin-bottom: 0;
}

.coupon-card .cta-primary {
  margin-bottom: 15px;
  display: inline-flex;
}

.coupon-terms {
  font-size: 12px;
  line-height: 13px;
}

.coupon-terms p {
  margin-bottom: 5px;
}

.coupon-terms p:last-child {
  margin-bottom: 0;
}


/* CTA Section Styles */
.cta-section__inner {
  border-radius: 8px;
  background: var(--dark_brand_color);
  box-shadow: 0 0 5px 0 rgba(156, 156, 156, 0.55);
  padding: 30px 80px;
}

.cta-section__image img {
  width: 100%;
  height: auto;
  max-width: 300px;
  margin: -20px 0 -20px 0;
}

.cta-section__image {
  text-align: left;
}

.cta-section__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  padding-left: 50px;
}

.cta-section__title {
  color: white;
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}

.cta-section__text {
  color: white;
  font-weight: 500;
}

.cta-section__text p {
  margin-bottom: 0;
}

.cta-section__cta .btn {
  background-color: white;
  color: var(--main_brand_color);
  border: 2px solid white;
  padding: 12px 30px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.cta-section__cta .btn:hover {
  background-color: transparent;
  color: white;
  border-color: white;
}

.cta-section{
  padding: 0px 0 80px 0;
}


/* Footer Styles */
.footer {
  background: var(--dark_brand_color);
  padding: 60px 0 30px;
  color: white;
}

/* Primera fila - Logo */
.footer__logo-row {
  text-align: center;
  margin-bottom: 25px;
}

.footer__column {
  text-align: center;
  margin-bottom: 30px;
}

.footer__title {
  color: white;
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.footer__content {
  color: white;
  font-size: 16px;
  font-weight: 500;
  line-height: 29px;
}

.footer__phone-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__phone-link:hover {
  color: var(--main_brand_color);
  text-decoration: underline;
}

.footer__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__left {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer__right {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer__copyright,
.footer__lmh-text {
  color: white;
  font-size: 12px;
  font-weight: 500;
}

.footer__lmh-text{text-decoration: underline;}

.footer__legal-link {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer__legal-link:hover {
  color: var(--main_brand_color);
  text-decoration: underline;
}




.areas-we-serve {
  background: var(--primary-white);
  padding: 80px 0 0 0;
  position: relative;
  z-index: 2;
  margin-bottom: -120px;
}

.areas-title {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 48px;
  color: var(--dark_brand_color);
  text-transform: uppercase;
  letter-spacing: -0.48px;
  line-height: 44px;
  margin-bottom: 0;
}

.areas-content {
  font-size: 16px;
  line-height: 29px;
  color: var(--dark_brand_color);
}

.areas-content-wrapper {
  margin-top: 27px;
  border-radius: 8px;
  border: 1px solid var(--dark_brand_color);
  background-color: var(--dark_brand_color);
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.map-container {
  width: 100%;
  height: 400px;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 3.517px 15.825px 0 rgba(48, 48, 48, 0.24);
}

.cities-section {
  padding: 20px;
  border-radius: 0 0 8px 8px;
}

.cities-desktop,
.cities-mobile {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.city-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.city-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
}

.city-item:hover .city-name {
  color: #ed1c24;
}

/* City Link Styles */
.city-link {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.city-link:hover {
  color: white;
  text-decoration: none;
}

.city-link:hover .city-name {
  color: #ed1c24;
}

.city-icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.city-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: -0.24px;
  transition: color 0.3s ease;
}

.areas-cta {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

/* Reviews Section Styles */
.reviews-section {
  padding: 80px 0;
  background: #fff;
}

.reviews-title {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--dark_brand_color);
  text-align: center;
  margin: 0 0 40px 0;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

.reviews-header-left .reviews-label {
  font-family: var(--content-font);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark_brand_color);
}

.reviews-header-right .reviews-total {
  font-family: var(--content-font);
  font-size: 18px;
  font-weight: 500;
  color: var(--dark_brand_color);
}

.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.review-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 25px;
  width: 47%;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.review-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.review-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--content-font);
  font-size: 14px;
  font-weight: 500;
  color: #666;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.date-and-icon{
  display: flex;
  align-items: center;
  gap: 10px;
}

.date-and-icon img{
  max-width: 20px;

}

.review-name {
  font-family: var(--content-font);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark_brand_color);
  margin-bottom: 15px;
}

.review-content {
  font-family: var(--content-font);
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.review-content p {
  margin-bottom: 12px;
}

.review-content p:last-child {
  margin-bottom: 0;
}

.no-reviews {
  text-align: center;
  padding: 60px 20px;
  color: #666;
  font-size: 18px;
}
