
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    background: #fff;
    background-color: #f8f8f8cb;
    padding-top: 70px; /* Para navbar fija */
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.75);
    pointer-events: none;
    z-index: 0;
}
body > * {
    position: relative;
    z-index: 1;
}
/* Navbar clara */
.navbar-light {
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(3px);
    color: #333;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.navbar-logo {
    margin-left: 40px;
    transition: all 0.3s;
    z-index: 200;
}
.navbar-logo img {
    height: 60px;
    transition: all 0.3s;
}
.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 48px;
    min-height: 48px;
}
.navbar-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    justify-content: center;
    width: 100%;
}
.navbar-links li {
    position: relative;
}
.navbar-links a {
    color: #181818;
    text-decoration: none;
    font-size: 1em;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #181818 !important;
    text-decoration: none !important;
    box-shadow: none !important;
}
.navbar-links a.active,
.navbar-links a:hover {
    background: #ffc83d;
    color: #181818;
}
.navbar-btn {
    background: #fff;
    color: #181818 !important;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 18px;
    margin-left: 8px;
    transition: background 0.2s, color 0.2s;
}
.navbar-btn:hover {
    background: #ffc83d;
    color: #181818 !important;
}
.navbar-icon {
    width: 25px;
    height: 25px;
    margin-left: 10px;
    transition: transform 0.3s;
    filter: invert(0.2);
}
.navbar-icon:hover {
    transform: scale(1.2);
}
.navbar-toggle {
    display: none;
}
/* Íconos de redes sociales en una sola línea horizontal */
.navbar-links li:last-child {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 0;
}
.navbar-links li:last-child a {
    padding: 0;
    background: none !important;
}
/* Hero Section */
.hero-bg {
    position: relative;
    height: 100vh; 
    min-height: 400px;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url("IMAGENES/LUGARES/BARRANCO_0704.png") center/cover no-repeat fixed;
}
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 22, 22, 0.65);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 700px;
    margin: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-label {
    letter-spacing: 0.2em;
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 18px;
    color: #fff;
    opacity: 0.85;
}
.hero-title {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.hero-desc {
    font-size: 1.15em;
    font-weight: 400;
    margin-bottom: 36px;
    color: #fff;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.hero-btn {
    display: inline-block;
    background: #a0522d;
    color: #fff;
    padding: 16px 38px;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15em;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(160,82,45,0.13);
    transition: background 0.2s, box-shadow 0.2s;
}
.hero-btn:hover {
    background: #7a3a1d;
    box-shadow: 0 6px 24px rgba(160,82,45,0.22);
}
/* Main Section */
.main-section {
    background: #fff;
    padding: 60px 0 40px 0;
}
.main-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    align-items: center;
    gap: 40px;
    padding: 0 24px;
}
.main-text {
    flex: 1 1 350px;
    min-width: 300px;
}
.main-text h2 {
    font-size: 2.2em;
    color: #222;
    margin-bottom: 18px;
    font-weight: 700;
}
.main-text p {
    font-size: 1.15em;
    color: #444;
    line-height: 1.6;
}
.main-img {
    flex: 1 1 320px;
    min-width: 260px;
    text-align: center;
}
.main-img img {
    width: 100%;
    max-width: 370px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    margin-bottom: 12px;
}
.main-img img.entorno {
    min-width: none;
    max-width: fit-content;
}
.main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 36px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.main-grid .main-img h3 {
    font-size: 1.15em;
    color: #a0522d;
    margin: 10px 0 6px 0;
    font-weight: 700;
}
.main-grid .main-img p {
    color: #555;
    font-size: 1em;
    margin: 0 0 10px 0;
}
.cus-favorite {
    background: #fffdfa;
    padding: 40px 0 80px 0;
}
.text-center {
    text-align: center;
}
.mb-48 { margin-bottom: 48px; }
.mb-80 { margin-bottom: 80px; }
.py-40 { padding-top: 40px; padding-bottom: 40px; }

.burger-slider {
    display: flex;
    gap: 32px;
    overflow: hidden;
    /* Slick Carousel se encarga del scroll */
}
.box-1 {
    background: #fff;
    border: 2px solid #eaeaea;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(160,20,58,0.08);
    min-width: 320px;
    max-width: 320px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 
        transform 0.25s cubic-bezier(.25,.8,.25,1),
        box-shadow 0.25s,
        border-color 0.2s,
        background 0.2s;
    margin: 8px 8px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    word-break: break-word;
}
hr.content-text {
    border: none;
    border-top: 1px solid #eaeaea;
    width: calc(100% - 10px); /* Ajusta el ancho para que no sobresalga */
    margin: 12px 5px;         /* Margen lateral para separar del borde */
}

.box-1:hover {
    transform: scale(1.04);
    background: #f7f7f7;
    border-color: #65BDBB;
    box-shadow: 0 8px 32px rgba(160,20,58,0.18);
    z-index: 2;
}
.img-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    transition: filter 0.2s;
}
.box-1:hover .img-box img {
    filter: brightness(1.08) saturate(1.1);
}
.content-box {
    padding: 22px 40px 16px 22px;
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    word-break: break-word;
    white-space: normal;
}
.content-text {
    font-family: 'Gilroy Regular', 'Poppins', Arial, sans-serif;
    color: #181818;
    font-size: 1em;
    margin-bottom: 6px;
}
.content-text-1 {
    font-family: 'Gilroy Bold', 'Poppins', Arial, sans-serif;
    color: #5f9c44;
    font-size: 1.2em;
    margin-bottom: 12px;
    text-decoration: none;
    transition: color 0.2s;
}
.box-1:hover .content-text-1 {
    color: #A0143A;
}
.fw-600 { font-weight: 600; }
.mb-6 { margin-bottom: 6px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
hr.content-text {
    border: none;
    border-top: 1px solid #eaeaea;
    width: 100%;
    margin: 12px 0;
}
.cus-btn {
    display: block;
    background: #A0143A;
    color: #fff;
    border-radius: 8px;
    padding: 12px 0;
    text-align: center;
    font-family: 'Gilroy Bold', 'Poppins', Arial, sans-serif;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    margin-top: 8px;
    width: 90%;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(160,20,58,0.10);
}
.cus-btn:hover {
    background: #D68613;
    color: #fff;
}
/* Redes Sociales */
.social-header {
    text-align: center;
    margin-bottom: 24px;
}
.social-label {
    color: brown;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 1.1em;
}
.social-title {
    color: var(--color-principal);
    font-weight: 700;
    font-size: 2em;
    margin: 8px 0;
}
.social-desc {
    color: var(--color-marron);
    font-size: 1.1em;
    margin-bottom: 16px;
}
.social-widget {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}
.instagram-embed {
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(101,189,187,0.12);
    width: 90%;
    min-height: 400px;
    max-width: 600px;
}
.social-btn-container {
    text-align: center;
}
.social-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ffc83d 0%, #a0522d 100%);
  color: #5a3a1a;
  font-weight: bold;
  border: none;
  border-radius: 24px;
  padding: 14px 38px;
  font-size: 1.15em;
  box-shadow: 0 2px 8px rgba(160,82,45,0.10);
  transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  margin: 24px auto 0 auto;
  text-align: center;
}
.social-btn:hover {
  background: #ffc83d;
  color: #a0522d;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 24px rgba(160,82,45,0.18);
  text-decoration: none;
}
.social-section-fullbg {
    width: 100%;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: rgba(255,255,255,0.92);
    padding: 64px 0 48px 0;
    z-index: 1;
}
.social-widget-big {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto 32px auto;
    width: 100%;
}
.instagram-container {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 0;
    max-width: 1500px;
    width: 200%;
    margin: 0 auto;
    overflow: hidden;
}
/* Google Testimonials Section */
.google-testimonials {
  background: linear-gradient(120deg, #f8f5f2 0%, #e7d7c9 100%);
  padding: 70px 0 60px 0;
  color: #5a3a1a;
  position: relative;
}
.google-testimonials .testimonials-header {
  text-align: center;
  margin-bottom: 36px;
}
.google-testimonials .testimonials-label {
  font-size: 1em;
  letter-spacing: 0.15em;
  opacity: 0.7;
  margin-bottom: 10px;
  color: #a0522d;
}
.google-testimonials .testimonials-title {
  font-size: 2.3em;
  font-weight: 700;
  margin-bottom: 12px;
  color: #5a3a1a;
}
.google-testimonials .testimonials-list {
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
}
.google-card {
  background: #fff8f3;
  border-radius: 16px;
  padding: 32px 24px 24px 24px;
  max-width: 370px;
  min-width: 260px;
  text-align: left;
  box-shadow: 0 4px 18px rgba(160,82,45,0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1.5px solid #e7d7c9;
  font-size: 1.08em;
}
.google-card .testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.google-card .testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffc83d;
  background: #fffdfa;
}
.google-card .testimonial-name {
  font-weight: 700;
  color: #a0522d;
  font-size: 1.08em;
  margin-bottom: 2px;
}
.google-card .testimonial-stars {
  color: #ffc83d;
  font-size: 1.1em;
  margin-bottom: 2px;
}
.google-card .testimonial-date {
  color: #bcae9e;
  font-size: 0.98em;
  margin-bottom: 2px;
}
.google-card .testimonial-text {
  color: #5a3a1a;
  font-size: 1em;
  margin-bottom: 8px;
  margin-top: 4px;
  line-height: 1.5;
}
.google-card .testimonial-tags {
  display: inline-block;
  background: #f3e6d0;
  color: #a0522d;
  font-size: 0.98em;
  border-radius: 8px;
  padding: 2px 10px;
  margin-top: 8px;
}
.testimonial-img-mar {
  height: 200px;
  width: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 8px;
}
.testimonial-img-gab {
  height: 120px;
  width: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 8px;
}
/* --- Nuevo Footer Moderno --- */
.footer-section {
    background: #fffdfa;
    color: #181818;
    padding: 48px 0 0 0;
    border-top: 1.5px solid #f3e6d0;
}
.footer-container.new-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 24px 24px;
}
.footer-col {
    flex: 1 1 220px;
    min-width: 200px;
    text-align: center;
}
.footer-logo img {
    height: 54px;
    margin-bottom: 10px;
}
.footer-social {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 12px;
}
.footer-social img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(160,82,45,0.10);
    transition: transform 0.2s, box-shadow 0.2s;
    padding: 6px;
    border: 2px solid #ffc83d;
}
.footer-social a:hover img {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 4px 16px #ffc83d;
    background: #ffc83d;
}
.footer-title {
    font-weight: 700;
    font-size: 1.15em;
    margin-bottom: 8px;
    color: #a0522d;
    letter-spacing: 0.01em;
}
.footer-link {
    color: #a0522d;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-link:hover {
    color: #ffc83d;
}
.footer-copyright {
    background: #a0522d;
    color: #fff;
    text-align: center;
    padding: 16px 0 12px 0;
    font-size: 1em;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-top: 0;
}
.footer-col.footer-libro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    margin-top: 0;
}
.footer-col.footer-libro img {
    margin-bottom: 10px;
    width: 54px;
    height: 54px;
}
.footer-col.footer-libro .footer-link {
    color: #a0522d;
    font-size: 1.08em;
    font-weight: 700;
    text-decoration: underline;
    margin-top: 0;
    transition: color 0.2s;
}
.footer-col.footer-libro .footer-link:hover {
    color: #ffc83d;
}