/**
* Soul Rhythm Coaching
* Hoja de estilos principal
* Base estructural derivada de la plantilla Restaurantly (BootstrapMade),
* repaletizada y ampliada con los componentes propios del proyecto.
*/

/*--------------------------------------------------------------
# Tipografías de marca
# Perpetua para "Soul Rhythm" y los titulares; Catamaran para
# "Coaching" y todo el texto corrido (Identidad visual SRC).
--------------------------------------------------------------*/
@font-face {
  font-family: "Perpetua";
  src: url("../fonts/Perpetua-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Perpetua";
  src: url("../fonts/Perpetua-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Catamaran";
  src: url("../fonts/Catamaran-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Catamaran";
  src: url("../fonts/Catamaran-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Catamaran";
  src: url("../fonts/Catamaran-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Catamaran";
  src: url("../fonts/Catamaran-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  /* Paleta de marca (Identidad visual SRC).
     Base: blanco y negro #1d1e1c. Los grises son los de la paleta entregada:
     #F7F7F6 · #E3E2E0 · #B2B1AF · #80807E · #788188 · #5B6064
     Los dos últimos tiran a pizarra fría; los claros son neutros. */
  --ink: #1d1e1c;
  --grey-050: #F7F7F6;
  --grey-100: #E3E2E0;
  --grey-300: #B2B1AF;
  --grey-500: #80807E;
  --slate-400: #788188;
  --slate-600: #5B6064;

  --primary-color: #1d1e1c;
  --primary-light: #5B6064;
  --primary-dark: #000000;
  --accent-color: #1d1e1c;
  --accent-light: #80807E;
  --text-dark: #1d1e1c;
  --text-light: #5B6064;
  --bg-white: #FFFFFF;
  --bg-cream: #F7F7F6;
  --bg-light: #E3E2E0;
  --bg-soft: #F7F7F6;
  --border-soft: #E3E2E0;
  --footer-bg: #1d1e1c;
}

body {
  font-family: "Catamaran", sans-serif;
  background: var(--bg-white);
  color: var(--text-dark);
  transition: background-color 0.3s ease, color 0.3s ease;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Perpetua", Georgia, serif;
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--bg-white);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--bg-light);
  border-top-color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  border: 2px solid var(--primary-color);
  background: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.back-to-top i {
  font-size: 28px;
  color: var(--primary-color);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--primary-color);
  color: var(--bg-white);
}

.back-to-top:hover i {
  color: var(--text-dark);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  height: 45px;
  font-size: 13px;
  transition: all 0.5s;
  z-index: 996;
  background: linear-gradient(90deg, 
    rgba(29, 30, 28, 0.05) 0%, 
    rgba(29, 30, 28, 0.1) 50%, 
    rgba(29, 30, 28, 0.05) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(29, 30, 28, 0.15);
  position: relative;
  overflow: hidden;
}

#topbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(29, 30, 28, 0.1), 
    transparent);
  animation: shimmer 8s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

#topbar.topbar-scrolled {
  top: -45px;
}

#topbar .container {
  height: 100%;
  display: flex;
  align-items: center;
}

#topbar .contact-info {
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: center;
}

#topbar .contact-info > div {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 0 15px;
}

#topbar .contact-info > div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: linear-gradient(to bottom, 
    transparent, 
    var(--accent-color), 
    transparent);
}

#topbar .contact-info i {
  font-style: normal;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  font-size: 18px;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

#topbar .contact-info i:hover {
  color: var(--primary-color);
  transform: scale(1.1);
  animation: none;
}

#topbar .contact-info i span {
  padding-left: 10px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  font-family: "Catamaran", sans-serif;
}

/* Responsive para móvil */
@media (max-width: 768px) {
  #topbar {
    height: 40px;
    padding: 0;
    background: linear-gradient(135deg, 
      rgba(250, 248, 245, 0.98) 0%, 
      rgba(248, 246, 243, 0.98) 100%);
  }
  
  #topbar::before {
    display: none;
  }
  
  #topbar .contact-info {
    flex-direction: row;
    gap: 20px;
    width: 100%;
    justify-content: center;
  }
  
  #topbar .contact-info > div {
    padding: 0;
  }
  
  #topbar .contact-info > div::after {
    display: none;
  }
  
  #topbar .contact-info i {
    font-size: 14px;
    animation: none;
  }
  
  #topbar .contact-info i span {
    font-size: 11px;
    padding-left: 5px;
    font-weight: 500;
  }
  
  #header {
    top: 40px;
  }
  
  #header.header-scrolled {
    top: 0;
  }
}

#topbar .languages ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--primary-color);
}

#topbar .languages ul a {
  color: var(--text-dark);
}

#topbar .languages ul li+li {
  padding-left: 10px;
}

#topbar .languages ul li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--text-light);
  content: "/";
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(29, 30, 28, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 997;
  padding: 15px 0;
  top: 45px;
  backdrop-filter: blur(10px);
  border-radius: 30px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  max-width: 800px;
  width: 85%;
  animation: slideDown 0.8s ease-out;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
  0% {
    transform: translateX(-50%) translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

#header.header-scrolled {
  top: 10px;
  background: rgba(29, 30, 28, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  border-radius: 30px;
  max-width: 800px;
  width: 85%;
  left: 50%;
  transform: translateX(-50%);
  animation: none;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Catamaran", sans-serif;
}

#header .logo a {
  color: var(--primary-color);
}

#header .logo {
  position: relative;
  display: inline-block;
}

#header .logo img {
  max-height: 65px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  #header {
    margin: 0 10px;
    width: calc(100% - 20px);
    border-radius: 0 0 20px 20px;
  }
  
}

/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
  margin: 0 0 0 15px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #FFFFFF;
  border-radius: 50px;
  padding: 10px 28px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.book-a-table-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.book-a-table-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #FFFFFF;
  color: #FFFFFF;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.2),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.book-a-table-btn:hover::before {
  width: 300px;
  height: 300px;
}

@media (max-width: 992px) {
  .book-a-table-btn {
    margin: 0 15px 0 0;
    padding: 8px 20px;
  }
  
  #header {
    width: 95%;
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  #header {
    max-width: 100%;
    width: 100%;
    left: 0;
    transform: translateX(0);
    border-radius: 0 0 20px 20px;
    margin: 0;
    animation: mobileSlideDown 0.6s ease-out;
  }
  
  #header.header-scrolled {
    top: 0;
    width: 100%;
    max-width: 100%;
    left: 0;
    transform: translateX(0);
    border-radius: 0 0 20px 20px;
    margin: 0;
    animation: none;
  }
  
  #header .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@keyframes mobileSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  gap: 5px;
}

.navbar li {
  position: relative;
  animation: fadeInUp 0.6s ease-out backwards;
}

.navbar li:nth-child(1) { animation-delay: 0.1s; }
.navbar li:nth-child(2) { animation-delay: 0.2s; }
.navbar li:nth-child(3) { animation-delay: 0.3s; }
.navbar li:nth-child(4) { animation-delay: 0.4s; }
.navbar li:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modern separator dots */
.navbar li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  color: #FFFFFF;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

/* Glowing text effect */
.navbar a::before {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  opacity: 0;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.navbar a:hover::before {
  opacity: 1;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover {
  color: #FFFFFF;
  transform: translateY(-2px) scale(1.05);
  text-shadow: 
    1px 1px 3px rgba(0, 0, 0, 0.3),
    0 0 15px rgba(255, 255, 255, 0.5);
}

.navbar .active,
.navbar .active:focus {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  backdrop-filter: blur(10px);
  box-shadow: 
    inset 0 0 20px rgba(255, 255, 255, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.2);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--bg-white);
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border-radius: 8px;
  border: 1px solid rgba(29, 30, 28, 0.1);
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  color: var(--text-dark);
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--primary-color);
  background: var(--bg-cream);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--primary-color);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(29, 30, 28, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid var(--primary-color);
  align-items: center;
  justify-content: center;
}

.mobile-nav-toggle:hover {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: flex;
  }

  .navbar ul {
    display: none;
  }
  
  #navbar.navbar-mobile {
    position: fixed !important;
    overflow: hidden !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    background: rgba(29, 30, 28, 0.96) !important;
    transition: 0.3s;
    z-index: 9999 !important;
    backdrop-filter: blur(10px);
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    display: block !important;
  }
  
  #navbar.navbar-mobile ul {
    display: block !important;
    position: absolute !important;
    top: 80px !important;
    right: 20px !important;
    bottom: 20px !important;
    left: 20px !important;
    padding: 30px !important;
    border-radius: 20px !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
    overflow-y: auto !important;
    transition: 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
  }
}

#navbar.navbar-mobile .mobile-nav-toggle {
  position: absolute !important;
  top: 20px !important;
  right: 20px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  color: var(--primary-color) !important;
  z-index: 10000 !important;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 15px 20px;
  font-size: 18px;
  color: var(--primary-color);
  display: block;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #fff;
  background: var(--primary-color);
  transform: translateX(10px);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(29, 30, 28, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--accent-color);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: var(--bg-cream);
}

.section-title {
  padding-bottom: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-light);
  font-family: "Catamaran", sans-serif;
  opacity: 0;
  position: relative;
  display: inline-block;
}

.section-title.animated h2 {
  animation: fadeInDown 0.8s ease-out forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title h2::after {
  content: "";
  width: 0;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title.animated h2::after {
  animation: expandLine 1s ease-out 0.5s forwards;
}

@keyframes expandLine {
  to {
    width: 120px;
  }
}

.section-title p {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: "Perpetua", Georgia, serif;
  color: var(--primary-color);
  opacity: 0;
  position: relative;
  display: inline-block;
}

.section-title.animated p {
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Efecto hover para los títulos principales */
.section-title p {
  transition: all 0.3s ease;
}

.section-title p:hover {
  transform: scale(1.05);
  color: var(--accent-color);
  text-shadow: 2px 2px 10px rgba(29, 30, 28, 0.3);
}

/* Decoración animada */
.section-title::before {
  content: "✦";
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-color);
  font-size: 24px;
  opacity: 0.3;
  animation: float 3s ease-in-out infinite;
}

.section-title::after {
  content: "✦";
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-color);
  font-size: 24px;
  opacity: 0.3;
  animation: float 3s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translateY(-50%) translateX(0) rotate(0deg);
  }
  50% {
    transform: translateY(-50%) translateX(10px) rotate(180deg);
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: var(--bg-light);
  margin-top: 110px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 98px;
  }
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--text-dark);
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: url("../../img/texture.svg") center center;
  background-size: cover;
  position: relative;
  padding: 80px 0;
}

.about:before {
  content: "";
  background: rgba(255, 255, 255, 0.75);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.about .about-img {
  position: relative;
  transition: 0.5s;
}

.about .about-img img {
  max-width: 100%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.about .about-img::before {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  z-index: 1;
  content: "";
  border-left: 5px solid var(--accent-color);
  border-top: 5px solid var(--accent-color);
  transition: 0.5s;
}

.about .about-img::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 2;
  content: "";
  border-right: 5px solid var(--accent-color);
  border-bottom: 5px solid var(--accent-color);
  transition: 0.5s;
}

.about .about-img:hover {
  transform: scale(1.03);
}

.about .about-img:hover::before {
  left: 10px;
  top: 10px;
}

.about .about-img:hover::after {
  right: 10px;
  bottom: 10px;
}

.about .content {
  position: relative;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--primary-color);
}

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

@media (min-width: 1024px) {
  .about {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.08);
  transition: all ease-in-out 0.3s;
  background: var(--bg-white);
  border: 1px solid rgba(29, 30, 28, 0.2);
  border-radius: 10px;
}

.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
}

.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: var(--primary-color);
}

.why-us .box p {
  color: var(--text-dark);
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.why-us .box:hover {
  background: var(--primary-color);
  padding: 30px 30px 70px 30px;
  box-shadow: 0 15px 30px rgba(29, 30, 28, 0.15);
  transform: translateY(-10px);
  border-color: rgba(29, 30, 28, 0.5);
}

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
  color: var(--bg-white);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding: 80px 0;
  background: var(--bg-soft);
}

.contact .section-title p {
  /* Mantener solo el color personalizado, heredar el resto */
}

.contact-wrapper {
  margin-top: 40px;
}

/* Map Styling */
.map-container {
  height: 400px;
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.map-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 78%, rgba(255, 255, 255, 0.85) 100%);
  pointer-events: none;
  z-index: 1;
}

.map-container iframe,
.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: none;
  transition: filter 0.5s ease;
}

.map-container:hover iframe,
.map-container:hover .map-iframe {
  filter: none;
}

/* Map card overlay */
.map-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 2;
  max-width: 280px;
  transition: all 0.3s ease;
}

.map-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.map-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.map-card p {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.6;
}

.map-card p i {
  color: var(--primary-color);
  margin-right: 5px;
}

.map-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-color);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.map-directions:hover {
  background: var(--primary-dark);
  transform: translateX(5px);
  color: white;
}

/* Responsive map adjustments */
@media (max-width: 767px) {
  .map-container {
    height: 300px;
    margin-bottom: 30px;
  }
  
  .map-card {
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: none;
    padding: 20px;
  }
  
  .map-card h4 {
    font-size: 16px;
  }
  
  .map-card p {
    font-size: 13px;
  }
}

/* Contact Form Styling */
.contact-form-wrapper {
  background: var(--grey-050);
  border: 1px solid var(--grey-100);
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(91, 96, 100, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.contact-form-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(29, 30, 28, 0.05) 0%, transparent 70%);
  animation: rotateGradient 20s linear infinite;
  pointer-events: none;
}

@keyframes rotateGradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.contact-form-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(29, 30, 28, 0.15);
}

.contact-form-wrapper h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-color);
  font-family: "Perpetua", Georgia, serif;
  position: relative;
  z-index: 1;
}

.form-subtitle {
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 16px;
  position: relative;
  z-index: 1;
}

/* Floating Labels */
.contact .form-floating {
  position: relative;
  margin-bottom: 25px;
}

.contact .form-floating .form-control {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid transparent;
  border-radius: 15px;
  padding: 1.625rem 1.25rem 0.625rem 1.25rem;
  height: calc(3.5rem + 2px);
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.contact .form-floating .form-control:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(29, 30, 28, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(29, 30, 28, 0.1);
}

.contact .form-floating label {
  padding: 1rem 1.25rem;
  color: var(--text-light);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.contact .form-floating .form-control:focus {
  box-shadow: 0 8px 25px rgba(29, 30, 28, 0.15);
  border-color: var(--primary-color);
  background: #fff;
  transform: translateY(-2px);
}

.contact .form-floating .form-control:focus ~ label,
.contact .form-floating .form-control:not(:placeholder-shown) ~ label {
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 600;
}

/* Add icons to form fields */
.contact .form-floating::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "bootstrap-icons";
  font-size: 20px;
  color: var(--primary-light);
  z-index: 3;
  pointer-events: none;
  transition: all 0.3s;
}

.contact .form-floating:nth-child(1)::before { content: "\F4DA"; } /* person icon */
.contact .form-floating:nth-child(2)::before { content: "\F32F"; } /* envelope icon */
.contact .form-floating:nth-child(3)::before { content: "\F4E7"; } /* pencil icon */
.contact .form-floating:nth-child(4)::before { content: "\F119"; } /* chat icon */

.contact .form-floating:focus-within::before {
  color: var(--primary-color);
  transform: translateY(-50%) scale(1.2) rotate(10deg);
}

/* Submit Button */
.btn-submit {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #fff;
  border: none;
  padding: 18px 50px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(29, 30, 28, 0.3);
}

.btn-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-submit:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 40px rgba(29, 30, 28, 0.4);
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit i {
  font-size: 20px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.btn-submit:hover i {
  transform: translateX(5px) rotate(45deg);
}

/* Add pulsing animation on focus */
.btn-submit:focus {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 5px 25px rgba(29, 30, 28, 0.3); }
  50% { box-shadow: 0 5px 35px rgba(29, 30, 28, 0.5); }
  100% { box-shadow: 0 5px 25px rgba(29, 30, 28, 0.3); }
}

/* Contact Info Cards */
.contact-info-wrapper {
  padding-left: 30px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  transition: all 0.3s;
}

.info-card:hover {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: all 0.3s;
}

.info-icon i {
  font-size: 20px;
  color: var(--accent-color);
}

.info-card:hover .info-icon {
  background: var(--accent-color);
}

.info-card:hover .info-icon i {
  color: #fff;
}

.info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.info-content p {
  margin: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.8;
}

.info-content a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.info-content a:hover {
  color: var(--accent-color);
}

/* Map Container */
.map-container {
  margin-bottom: 60px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* reCAPTCHA Styling */
.g-recaptcha {
  transform: scale(0.95);
  transform-origin: 0 0;
}

/* Textarea special styling */
.contact .form-floating textarea.form-control {
  min-height: 150px;
  padding-top: 1.625rem;
  resize: none;
}

/* Valid/Invalid states */
.contact .form-floating .form-control:valid {
  border-color: rgba(40, 167, 69, 0.3);
}

.contact .form-floating .form-control:valid ~ label {
  color: #28a745;
}

.contact .form-floating .form-control:valid + .valid-feedback {
  display: block;
}

/* Message Styles */
.contact .message {
  padding: 20px;
  border-radius: 15px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
  animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact .message.success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  border: 2px solid #b1dfbb;
  box-shadow: 0 5px 20px rgba(40, 167, 69, 0.2);
}

.contact .message.success::before {
  content: "✓";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: #28a745;
  color: white;
  border-radius: 50%;
  line-height: 30px;
  margin-right: 10px;
  font-weight: bold;
}

.contact .message.error {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  color: #721c24;
  border: 2px solid #f1b0b7;
  box-shadow: 0 5px 20px rgba(220, 53, 69, 0.2);
}

.contact .message.error::before {
  content: "✕";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: #dc3545;
  color: white;
  border-radius: 50%;
  line-height: 30px;
  margin-right: 10px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-form-wrapper {
    padding: 40px 30px;
    margin-bottom: 40px;
  }
  
  .contact-info-wrapper {
    padding-left: 0;
  }
  
  .info-card {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  
  .contact-form-wrapper h3 {
    font-size: 24px;
  }
  
  .btn-submit {
    width: 100%;
    justify-content: center;
  }
  
  .map-container {
    height: 300px;
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Cookie Banner
--------------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  z-index: 9998;
  display: none;
  animation: slideUp 0.5s ease-out;
  max-width: 500px;
  margin: 0 auto;
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.cookie-text i {
  font-size: 24px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark);
}

.cookie-link {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-link:hover {
  color: var(--primary-dark);
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Catamaran", sans-serif;
}

.cookie-accept {
  background: var(--primary-color);
  color: white;
}

.cookie-accept:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(29, 30, 28, 0.3);
}

.cookie-settings {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.cookie-settings:hover {
  background: var(--primary-color);
  color: white;
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  animation: fadeIn 0.3s ease-out;
}

.cookie-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.cookie-modal-header {
  padding: 25px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h3 {
  margin: 0;
  color: var(--primary-color);
  font-size: 24px;
}

.cookie-close {
  background: none;
  border: none;
  font-size: 30px;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.cookie-close:hover {
  color: var(--primary-color);
}

.cookie-modal-body {
  padding: 25px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-soft);
}

.cookie-option:last-child {
  border-bottom: none;
}

.cookie-option-info h4 {
  margin: 0 0 5px;
  font-size: 16px;
  color: var(--primary-color);
}

.cookie-option-info p {
  margin: 0;
  font-size: 13px;
  color: var(--text-light);
}

/* Toggle Switch */
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-toggle input[type="checkbox"] {
  display: none;
}

.cookie-toggle label {
  position: relative;
  width: 50px;
  height: 26px;
  background: #ddd;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle label::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input[type="checkbox"]:checked + label {
  background: var(--accent-color);
}

.cookie-toggle input[type="checkbox"]:checked + label::after {
  transform: translateX(24px);
}

.cookie-toggle input[type="checkbox"]:disabled + label {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Always On Badge */
.cookie-always-on {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(29, 30, 28, 0.1);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.cookie-always-on i {
  font-size: 16px;
}

.cookie-modal-footer {
  padding: 25px;
  border-top: 1px solid #eee;
  text-align: center;
}

.cookie-save {
  background: var(--primary-color);
  color: white;
  padding: 12px 30px;
}

.cookie-save:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(29, 30, 28, 0.3);
}

/* Responsive */
@media (max-width: 576px) {
  .cookie-banner {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 20px;
  }
  
  .cookie-text {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-option {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-transition {
  background: var(--bg-soft);
  margin-top: -1px;
}

.footer-wave {
  display: block;
  width: 100%;
  height: 100px;
  margin-bottom: -5px;
  animation: waveMotion 6s ease-in-out infinite;
}

.footer-wave-path {
  fill: var(--footer-bg);
  transition: fill 0.3s ease;
}

@keyframes waveMotion {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

#footer {
  background: var(--footer-bg);
  padding: 40px 0 40px 0;
  color: var(--text-dark);
  font-size: 14px;
  position: relative;
  overflow: hidden;
  animation: fadeIn 1s ease-out;
}

#footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

#footer .footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  z-index: 1;
}

#footer .footer-section {
  animation: fadeInUp 0.4s ease-out backwards;
}

#footer .footer-section:nth-child(1) { animation-delay: 0.05s; }
#footer .footer-section:nth-child(2) { animation-delay: 0.1s; }
#footer .footer-section:nth-child(3) { animation-delay: 0.15s; }
#footer .footer-section:nth-child(4) { animation-delay: 0.2s; }

#footer .footer-section h4 {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

#footer .footer-section h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.15s ease;
}

#footer .footer-section:hover h4::after {
  width: 60px;
}

#footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-links li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 0;
  transition: all 0.15s ease;
}

#footer .footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  transition: all 0.15s ease;
}

#footer .footer-links a i {
  font-size: 12px;
  margin-right: 8px;
  color: var(--accent-color);
  transition: all 0.15s ease;
}

#footer .footer-links a:hover {
  color: #FFFFFF;
  padding-left: 10px;
}

#footer .footer-links a:hover i {
  transform: translateX(5px);
}

#footer .footer-brand h3 {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 4px;
  margin: 0;
  color: #FFFFFF;
  font-family: "Bodoni Moda", serif;
  animation: slideInLeft 0.4s ease-out;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
}

/* Animated underline */
#footer .footer-brand h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-light), var(--accent-color));
  animation: expandWidth 0.8s ease-out 0.3s forwards;
}

@keyframes expandWidth {
  to { width: 100%; }
}

#footer .footer-tagline {
  font-size: 15px;
  color: #FFFFFF;
  margin-top: 10px;
  font-style: italic;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: slideInLeft 0.4s ease-out 0.1s backwards;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-left: 30px;
}

/* Sparkle effect before tagline */
#footer .footer-tagline::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-color);
  font-size: 20px;
  animation: sparkle 1s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 0.5; transform: translateY(-50%) scale(1) rotate(0deg); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.2) rotate(180deg); }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

#footer .footer-social {
  margin-top: 20px;
}

#footer .footer-contact p {
  margin: 0 0 15px 0;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--text-dark);
  transition: all 0.15s ease-out;
}

#footer .footer-contact p:last-child {
  margin-bottom: 0;
}

#footer .footer-contact p:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

#footer .footer-contact i {
  font-size: 16px;
  color: var(--primary-color);
  margin-right: 10px;
  width: 20px;
}

#footer .footer-social {
  display: flex;
  gap: 15px;
}

#footer .footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--text-dark);
  color: var(--text-dark);
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  animation: bounceIn 0.3s ease-out backwards;
}

#footer .footer-social a:nth-child(1) { animation-delay: 0.2s; }
#footer .footer-social a:nth-child(2) { animation-delay: 0.25s; }

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

#footer .footer-social a:hover {
  background: var(--text-dark);
  border-color: var(--text-dark);
  color: #FFFFFF;
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 8px 20px rgba(29, 30, 28, 0.3);
}

#footer .footer-bottom {
  text-align: center;
  padding-top: 30px;
}

#footer .footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

/* Responsive Footer Styles */
@media (max-width: 991px) {
  #footer {
    padding: 60px 0 30px 0;
  }
  
  #footer .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  #footer .footer-info {
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }
  
  #footer .footer-contact {
    width: 100%;
  }
  
  #footer .footer-contact p {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  #footer .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  #footer .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  #footer .footer-brand h3 {
    font-size: 28px;
  }
  
  #footer .footer-contact p {
    font-size: 13px;
    justify-content: center;
  }
  
  #footer .footer-social {
    justify-content: center;
  }
  
  #footer .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  #footer .footer-links a {
    justify-content: center;
  }
}

.message {
    padding: 10px; /* Añade algo de espacio */
    border-radius: 5px; /* Bordes redondeados */
    font-weight: bold; 
}

.success {
    background-color: green; /* Fondo verde */
    color: white; /* Texto blanco */
}

.error {
    background-color: red; /* Fondo rojo */
    color: white; /* Texto blanco */
}

/*--------------------------------------------------------------
# Tipografía y logo de marca
--------------------------------------------------------------*/
body {
  font-family: "Catamaran", sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Perpetua", Georgia, serif;
  color: var(--primary-dark);
}

/* Logotipo de marca: dos versiones, una para fondo oscuro y otra para claro.
   Se respeta el área de respeto y no se altera ni recolorea (Identidad SRC). */
#header .logo {
  margin: 0;
  line-height: 0;
  padding: 0;
}

#header .logo a {
  display: block;
  line-height: 0;
}

#header .logo img {
  height: 44px;
  width: auto;
  max-height: none;
  transition: height 0.35s ease;
}

#header .logo .logo-oscuro {
  display: none;
}

#header.header-scrolled .logo img {
  height: 38px;
}

#header.header-scrolled .logo .logo-claro {
  display: none;
}

#header.header-scrolled .logo .logo-oscuro {
  display: block;
}

@media (max-width: 575px) {
  #header .logo img,
  #header.header-scrolled .logo img {
    height: 32px;
  }
}

/*--------------------------------------------------------------
# Cabecera: barra completa en lugar de la píldora flotante
# (7 entradas de menú + CTA no caben en 800px)
--------------------------------------------------------------*/
#topbar {
  background: var(--bg-cream);
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-light);
}

#topbar i span {
  color: var(--text-light);
}

#header {
  top: 45px;
  left: 0;
  width: 100%;
  max-width: 100%;
  transform: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  animation: fadeIn 0.8s ease-out;
  padding: 18px 0;
}

/* Al bajar: cristal esmerilado claro sobre el contenido, con texto oscuro.
   Sobre el hero la barra es transparente con texto blanco; en cuanto se pasa a
   fondo crema, un cristal oscuro se ensucia, así que se invierte. */
#header.header-scrolled {
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  transform: none;
  border-radius: 0;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(29, 30, 28, 0.09);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  box-shadow: none;
}

#header.header-scrolled .navbar a,
#header.header-scrolled .navbar a:focus {
  color: var(--text-light);
  text-shadow: none;
}

#header.header-scrolled .navbar a:hover {
  color: var(--primary-dark);
  background: rgba(29, 30, 28, 0.06);
}

#header.header-scrolled .navbar .active {
  color: var(--primary-dark);
}

#header.header-scrolled .navbar .active::after {
  background: var(--accent-color);
}

#header.header-scrolled .mobile-nav-toggle {
  color: var(--primary-dark);
}

#header.header-scrolled .book-a-table-btn {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.5);
}

#header.header-scrolled .book-a-table-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

/* Sin backdrop-filter (Firefox antiguo, Safari viejo) hace falta fondo sólido */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  #header.header-scrolled {
    background: rgba(255, 255, 255, 0.97);
  }
}

#header .container {
  gap: 18px;
}

/* Navegación minimalista: sin puntos separadores, sin recuadros, sin sombras */
.navbar li:not(:last-child)::after,
.navbar a::before {
  display: none;
}

.navbar ul {
  gap: 2px;
}

.navbar a,
.navbar a:focus {
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
  border-radius: 999px;
  overflow: visible;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.navbar a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

/* Activo: solo una línea fina bajo el texto */
.navbar .active,
.navbar .active:focus,
.navbar .active:hover {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  color: #fff;
  position: relative;
}

.navbar .active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 16px;
  height: 1px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.7);
  display: block;
}

/* CTA en vidrio */
.book-a-table-btn {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 9px 22px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  text-shadow: none;
  box-shadow: none;
}

.book-a-table-btn::before {
  display: none;
}

.book-a-table-btn:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  color: var(--primary-dark);
  text-shadow: none;
}

@media (max-width: 1199px) {
  .navbar a,
  .navbar a:focus {
    padding: 8px 11px;
    font-size: 13px;
  }

  #header .logo a {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  #header {
    margin: 0;
    width: 100%;
    border-radius: 0;
    background: rgba(29, 30, 28, 0.55);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
  }
}

/*--------------------------------------------------------------
# Botones
--------------------------------------------------------------*/
.btn-soul {
  display: inline-block;
  font-family: "Catamaran", sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 34px;
  border-radius: 50px;
  border: 1.5px solid var(--primary-color);
  background: var(--primary-color);
  color: #fff;
  transition: all 0.35s ease;
  text-decoration: none;
}

.btn-soul:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(29, 30, 28, 0.2);
}

.btn-soul-outline {
  background: transparent;
  color: var(--primary-color);
}

.btn-soul-outline:hover {
  background: var(--primary-color);
  color: #fff;
}

.btn-soul-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
  backdrop-filter: blur(4px);
}

.btn-soul-light:hover {
  background: #fff;
  border-color: #fff;
  color: var(--primary-dark);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 140px 0 80px 0;
  display: flex;
  align-items: center;
  /* La foto del espacio es clara: el velo tiene que ser generoso para que el
     texto blanco mantenga contraste. */
  background:
    linear-gradient(180deg, rgba(29, 30, 28, 0.6) 0%, rgba(29, 30, 28, 0.48) 40%, rgba(29, 30, 28, 0.78) 100%),
    url("../../img/hero.jpg") center 38%;
  background-size: cover;
}

#hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(29, 30, 28, 0.45) 100%);
  pointer-events: none;
}

#hero .container {
  position: relative;
  z-index: 2;
}

#hero .hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  animation: fadeIn 1.4s ease-out both;
}

#hero h1 {
  margin: 0 0 22px 0;
  font-size: 54px;
  font-weight: 400;
  line-height: 1.25;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
  animation: fadeInUp 1.2s ease-out both;
}

/* Sin color de acento en la marca: el énfasis se hace con la cursiva y un
   blanco algo rebajado, no con otro color. */
#hero h1 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.78);
}

#hero h2 {
  color: rgba(255, 255, 255, 0.92);
  font-family: "Catamaran", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 36px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  animation: fadeInUp 1.4s ease-out 0.2s both;
}

#hero .hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeInUp 1.6s ease-out 0.4s both;
}

#hero .hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.8);
  font-size: 26px;
  animation: heroBounce 2.4s ease-in-out infinite;
}

@keyframes heroBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

@media (max-width: 992px) {
  #hero {
    text-align: center;
    padding-top: 120px;
  }

  #hero h2 {
    margin-left: auto;
    margin-right: auto;
  }

  #hero .hero-btns {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 36px;
  }

  #hero h2 {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Títulos de sección en móvil
# El antetítulo, la línea decorativa y el título van en una misma
# línea; por debajo de 768px no caben y desbordan a la derecha.
--------------------------------------------------------------*/
html,
body {
  overflow-x: hidden;
}

@media (max-width: 767px) {
  .section-title h2,
  .section-title p {
    display: block;
    text-align: center;
  }

  .section-title h2::after {
    display: none;
  }

  .section-title h2 {
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .section-title p {
    font-size: 30px;
    line-height: 1.25;
  }
}

/*--------------------------------------------------------------
# Intro
--------------------------------------------------------------*/
.intro {
  background: var(--bg-white);
  padding: 90px 0;
}

.intro .intro-lead {
  font-family: "Perpetua", Georgia, serif;
  font-size: 28px;
  line-height: 1.6;
  color: var(--primary-dark);
  font-style: italic;
  margin-bottom: 28px;
}

.intro p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.intro .intro-highlight {
  margin-top: 36px;
  padding: 28px 32px;
  border-left: 3px solid var(--accent-color);
  background: var(--bg-cream);
  border-radius: 0 14px 14px 0;
}

.intro .intro-highlight p {
  margin: 0;
  font-family: "Perpetua", Georgia, serif;
  font-size: 22px;
  line-height: 1.5;
  color: var(--text-dark);
}

.intro .intro-highlight p + p {
  margin-top: 10px;
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Pilares — ¿En qué puedo acompañarte?
--------------------------------------------------------------*/
.pillars .pillar-card {
  height: 100%;
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 38px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pillars .pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}

.pillars .pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(29, 30, 28, 0.1);
  border-color: transparent;
}

.pillars .pillar-card:hover::before {
  transform: scaleX(1);
}

.pillars .pillar-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-cream);
  color: var(--primary-color);
  font-size: 26px;
  margin-bottom: 22px;
  transition: all 0.4s ease;
}

.pillars .pillar-card:hover .pillar-icon {
  background: var(--primary-color);
  color: #fff;
}

.pillars .pillar-card h3 {
  font-family: "Catamaran", sans-serif;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 14px;
}

.pillars .pillar-card .pillar-question {
  font-family: "Perpetua", Georgia, serif;
  font-size: 22px;
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.pillars .pillar-card p {
  color: var(--text-light);
  font-size: 15px;
  margin: 0;
}

/*--------------------------------------------------------------
# Qué es el coaching
--------------------------------------------------------------*/
.coaching p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.coaching .coaching-note {
  margin-top: 30px;
  padding: 24px 28px;
  border-radius: 14px;
  background: var(--bg-white);
  border: 1px dashed var(--primary-light);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.coaching .coaching-note i {
  color: var(--accent-color);
  font-size: 22px;
  line-height: 1.4;
}

.coaching .coaching-note p {
  margin: 0;
  font-size: 15px;
  color: var(--text-light);
}

.coaching .coaching-note strong {
  color: var(--text-dark);
}

/*--------------------------------------------------------------
# Proceso — ¿Cómo son las sesiones?
--------------------------------------------------------------*/
.process .process-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
  color: var(--text-light);
}

.process .process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.process .process-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
  z-index: 0;
}

.process .step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process .step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1.5px solid var(--primary-light);
  color: var(--primary-color);
  font-family: "Perpetua", Georgia, serif;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.process .step:hover .step-number {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: scale(1.08);
}

.process .step h4 {
  font-family: "Catamaran", sans-serif;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.process .step p {
  font-size: 15px;
  color: var(--text-light);
  margin: 0;
}

.process .process-footnote {
  margin-top: 50px;
  text-align: center;
  font-family: "Perpetua", Georgia, serif;
  font-size: 21px;
  font-style: italic;
  color: var(--text-dark);
}

@media (max-width: 992px) {
  .process .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
  }

  .process .process-steps::before {
    display: none;
  }
}

@media (max-width: 575px) {
  .process .process-steps {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Bloque de cita — Un espacio para ti
--------------------------------------------------------------*/
.quote-block {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(29, 30, 28, 0.86), rgba(29, 30, 28, 0.9)),
    url("../../img/espacio.jpg") center 35%;
  background-size: cover;
}

.quote-block::before {
  content: "\201C";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Perpetua", Georgia, serif;
  font-size: 260px;
  color: rgba(255, 255, 255, 0.09);
  line-height: 1;
}

.quote-block .quote-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.quote-block h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 26px;
}

.quote-block p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  margin-bottom: 16px;
}

.quote-block p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Sobre mí
--------------------------------------------------------------*/
.about-me {
  background: var(--bg-white);
}

.about-me .about-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(29, 30, 28, 0.14);
}

.about-me .about-photo img {
  width: 100%;
  display: block;
}

.about-me .about-signature {
  font-family: "Perpetua", Georgia, serif;
  font-size: 30px;
  font-style: italic;
  color: var(--primary-color);
  margin-top: 26px;
}

.about-me .about-content p {
  color: var(--text-light);
  margin-bottom: 18px;
}

.about-me .about-content .lead-in {
  font-family: "Perpetua", Georgia, serif;
  font-size: 26px;
  line-height: 1.5;
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.about-me .about-beliefs {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
}

.about-me .about-beliefs li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  color: var(--text-dark);
  font-family: "Perpetua", Georgia, serif;
  font-size: 20px;
  line-height: 1.5;
}

/* Viñeta con el triángulo del isotipo, a tamaño discreto: el círculo relleno
   a 14px pesaba más que el propio texto. */
.about-me .about-beliefs li i {
  position: absolute;
  left: 0;
  top: 11px;
  color: var(--text-light);
  font-size: 9px;
}

.about-me .about-credentials {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.about-me .credential {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-light);
}

.about-me .credential i {
  color: var(--primary-color);
  font-size: 20px;
}

/*--------------------------------------------------------------
# Sesiones y tarifas
--------------------------------------------------------------*/
.sessions .sessions-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
  margin-bottom: 50px;
}

.sessions .sessions-meta div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 15px;
}

.sessions .sessions-meta i {
  color: var(--primary-color);
  font-size: 20px;
}

.sessions .price-card {
  height: 100%;
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 42px 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.sessions .price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(29, 30, 28, 0.12);
}

.sessions .price-card.featured {
  border-color: var(--primary-color);
  box-shadow: 0 18px 44px rgba(29, 30, 28, 0.12);
}

.sessions .price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: #fff;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.sessions .price-card h3 {
  font-family: "Catamaran", sans-serif;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.sessions .price-card .price-subtitle {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 22px;
}

.sessions .price-card .price {
  font-family: "Perpetua", Georgia, serif;
  font-size: 52px;
  line-height: 1;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.sessions .price-card .price span {
  font-size: 26px;
  vertical-align: super;
  margin-left: 2px;
  color: var(--primary-color);
}

.sessions .price-card .price-unit {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 26px;
}

.sessions .price-card .btn-soul {
  padding: 12px 28px;
}

.sessions .sessions-note {
  margin-top: 44px;
  text-align: center;
  font-family: "Perpetua", Georgia, serif;
  font-size: 21px;
  font-style: italic;
  color: var(--text-light);
}

/*--------------------------------------------------------------
# Cierre — ¿Empezamos?
--------------------------------------------------------------*/
.start-cta {
  padding: 90px 0;
  background: var(--bg-cream);
  text-align: center;
}

.start-cta h2 {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 20px;
}

.start-cta p {
  max-width: 640px;
  margin: 0 auto 34px auto;
  color: var(--text-light);
  font-size: 17px;
}

/*--------------------------------------------------------------
# Ajustes del formulario y footer para Soul Rhythm
--------------------------------------------------------------*/
.contact-form-wrapper h3,
.info-content h4 {
  font-family: "Perpetua", Georgia, serif;
}

.btn-submit {
  background: var(--primary-color) !important;
}

.btn-submit:hover {
  background: var(--primary-dark) !important;
}

#footer .footer-brand img {
  height: 46px;
  width: auto;
  margin-bottom: 10px;
}

#footer .footer-tagline,
#footer h4,
#footer .footer-links a,
#footer .footer-contact p,
#footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.85);
}

#footer h4 {
  font-family: "Perpetua", Georgia, serif;
  font-size: 20px;
}

#footer .footer-links a:hover {
  color: #fff;
}

.footer-wave-path {
  fill: var(--footer-bg);
}

/*--------------------------------------------------------------
# Aviso legal / páginas secundarias
--------------------------------------------------------------*/
.legal-page {
  padding: 160px 0 80px 0;
  background: var(--bg-white);
}

.legal-page h1 {
  font-size: 40px;
  margin-bottom: 30px;
}

.legal-page h2 {
  font-size: 26px;
  margin: 36px 0 14px 0;
}

.legal-page p,
.legal-page li {
  color: var(--text-light);
}

.legal-page ul {
  padding-left: 20px;
}

/*--------------------------------------------------------------
# Páginas interiores (/rocio, /coaching)
--------------------------------------------------------------*/
.pagina-interior {
  padding-top: 0;
}

.page-hero {
  padding: 170px 0 70px 0;
  background: var(--bg-cream);
  text-align: center;
}

/* La sección que sigue al bloque de título necesita respirar: pegada al borde
   del bloque gris, el texto y la foto se leen como un choque. */
.pagina-interior .page-hero + section {
  padding-top: 70px;
}

.page-hero .migas {
  font-size: 13px;
  letter-spacing: 0.4px;
  color: var(--text-light);
  margin-bottom: 26px;
}

.page-hero .migas a {
  color: var(--text-light);
  text-decoration: none;
  border-bottom: 1px solid var(--border-soft);
}

.page-hero .migas a:hover {
  color: var(--text-dark);
}

.hero-eyebrow-oscuro {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
}

.page-hero h1 {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 22px 0;
  color: var(--text-dark);
}

.page-hero-lead {
  max-width: 660px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--text-light);
}

/* Solo los h2 del texto corrido. Un `.pagina-interior h2` a secas tiene la
   misma especificidad que `.section-title h2`, `.quote-block h2` o
   `.start-cta h2` y, al ir después, les pisaba el tamaño. */
.pagina-interior .about-content h2,
.pagina-interior .coaching h2 {
  font-size: 32px;
  font-weight: 400;
  margin: 46px 0 18px 0;
}

.pagina-interior .about-content h2:first-of-type,
.pagina-interior .coaching h2:first-of-type {
  margin-top: 34px;
}

.pagina-interior .process .step h3 {
  font-family: "Catamaran", sans-serif;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin: 0 0 10px 0;
}

.about-credentials.flex-column {
  flex-direction: column;
  gap: 18px;
}

/* Enlace de "seguir leyendo" desde la home a la página completa */
.seguir-leyendo {
  margin-top: 26px;
}

.seguir-leyendo a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--text-dark);
  padding-bottom: 3px;
  transition: gap 0.3s ease, opacity 0.3s ease;
}

.seguir-leyendo a:hover {
  gap: 15px;
  opacity: 0.7;
  color: var(--text-dark);
}

.cta-botones {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 140px 0 46px 0;
  }

  .page-hero h1 {
    font-size: 34px;
  }
}

/*--------------------------------------------------------------
# Cabecera en páginas interiores
# /rocio y /coaching no tienen hero oscuro detrás: la barra tiene que
# nacer ya en claro, o el logo y el menú en blanco quedan invisibles.
--------------------------------------------------------------*/
#header.header-claro {
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(29, 30, 28, 0.09);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  box-shadow: none;
}

#header.header-claro .logo .logo-claro {
  display: none;
}

#header.header-claro .logo .logo-oscuro {
  display: block;
}

#header.header-claro .navbar a,
#header.header-claro .navbar a:focus {
  color: var(--text-light);
  text-shadow: none;
}

#header.header-claro .navbar a:hover {
  color: var(--text-dark);
  background: rgba(29, 30, 28, 0.06);
}

#header.header-claro .navbar .active {
  color: var(--text-dark);
}

#header.header-claro .navbar .active::after {
  background: var(--text-dark);
}

#header.header-claro .mobile-nav-toggle {
  color: var(--text-dark);
}

#header.header-claro .book-a-table-btn {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.5);
  text-shadow: none;
}

#header.header-claro .book-a-table-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  #header.header-claro {
    background: rgba(255, 255, 255, 0.97);
  }
}

/*--------------------------------------------------------------
# Correcciones en móvil
--------------------------------------------------------------*/
/* El icono de menú nace sobre cabecera oscura (hero o barra translúcida
   oscura en móvil), así que va en blanco. Sobre las barras claras
   —al bajar y en las páginas interiores— ya se invierte más arriba. */
.mobile-nav-toggle {
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.mobile-nav-toggle:hover {
  color: #fff;
}

#header.header-scrolled .mobile-nav-toggle,
#header.header-claro .mobile-nav-toggle {
  text-shadow: none;
}

/* Las estrellas decorativas de los títulos van al 10% del ancho: en pantallas
   estrechas eso las deja pegadas al texto. Se ocultan. */
@media (max-width: 991px) {
  .section-title::before,
  .section-title::after {
    display: none;
  }
}

/*--------------------------------------------------------------
# Paleta aplicada: los grises cálidos de la marca
# El negro y el blanco se quedan donde estaban (pie, botones, titulares).
# Lo que entra son los grises cálidos de la paleta —#E3E2E0, #B2B1AF y
# #80807E— en superficies, bordes e iconos, para que no todo sea contraste
# puro. El pizarra frío queda reservado al texto secundario.
--------------------------------------------------------------*/

/* --- Formulario de contacto --- */
.contact-form-wrapper .form-control {
  background: var(--bg-white);
  border: 1px solid var(--grey-100);
  border-radius: 12px;
  color: var(--text-dark);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-wrapper .form-control:focus {
  border-color: var(--grey-300);
  box-shadow: 0 0 0 3px rgba(128, 128, 126, 0.18);
  background: var(--bg-white);
}

.contact-form-wrapper .form-floating > label {
  color: var(--grey-500);
}

.contact-form-wrapper .form-subtitle {
  color: var(--text-light);
}

.btn-submit {
  background: var(--text-dark) !important;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-submit:hover {
  background: var(--grey-500) !important;
  transform: translateY(-2px);
}

.btn-submit:disabled {
  background: var(--grey-300) !important;
  transform: none;
}

/* --- Tarjetas de información de contacto --- */
.info-card {
  background: var(--grey-050);
  border: 1px solid var(--grey-100);
}

.info-icon {
  background: var(--bg-white);
  border: 1px solid var(--grey-100);
}

.info-icon i {
  color: var(--grey-500);
}

.info-card:hover .info-icon {
  background: var(--grey-500);
  border-color: var(--grey-500);
}

.info-card:hover .info-icon i {
  color: #fff;
}

.info-content h4 {
  color: var(--text-dark);
}

.map-card {
  border: 1px solid var(--grey-100);
}

/* --- Pilares y tarifas: borde y acento en pizarra --- */
.pillars .pillar-icon {
  background: var(--grey-050);
  border: 1px solid var(--grey-100);
  color: var(--grey-500);
}

.pillars .pillar-card:hover .pillar-icon {
  background: var(--grey-500);
  border-color: var(--grey-500);
  color: #fff;
}

.pillars .pillar-card::before {
  background: linear-gradient(90deg, var(--grey-500), var(--grey-300));
}

.pillars .pillar-card h3,
.sessions .price-card h3,
.process .step h4,
.pagina-interior .process .step h3 {
  color: var(--grey-500);
}

.sessions .price-card.featured {
  border-color: var(--grey-300);
  box-shadow: 0 18px 44px rgba(128, 128, 126, 0.18);
}

.sessions .price-badge {
  background: var(--grey-500);
}

.sessions .price-card .price span,
.sessions .sessions-meta i {
  color: var(--grey-500);
}

.process .step-number {
  border-color: var(--grey-300);
  color: var(--grey-500);
}

.process .step:hover .step-number {
  background: var(--grey-500);
  border-color: var(--grey-500);
}

.process .process-steps::before {
  background: linear-gradient(90deg, transparent, var(--grey-300), transparent);
}

/* --- Detalles --- */
.coaching .coaching-note {
  border-color: var(--grey-300);
  background: var(--grey-050);
}

.coaching .coaching-note i {
  color: var(--grey-500);
}

.intro .intro-highlight {
  border-left-color: var(--grey-300);
  background: var(--grey-050);
}

.about-me .about-credentials .credential i {
  color: var(--grey-500);
}

.about-me .about-signature {
  color: var(--grey-500);
}

/*--------------------------------------------------------------
# Ritmo de fondos en páginas interiores
# Con secciones cortas, alternar gris/blanco en cada una produce un
# bandeado incómodo. Se agrupan por bloques: título (gris), contenido
# (blanco), cita (negro), práctica + cierre (gris), pie (negro).
--------------------------------------------------------------*/
.pagina-interior .sessions.section-bg + .start-cta {
  padding-top: 10px;
}

.pagina-interior .sessions.section-bg {
  padding-bottom: 20px;
}

.pagina-interior .coaching + .process {
  padding-top: 30px;
}

/*--------------------------------------------------------------
# Un solo fondo
# La plantilla de origen alternaba bandas gris/blanco por sección.
# Con una identidad de dos tintas eso se lee como parches de color.
# Todo el cuerpo va en blanco y la separación la hacen el espacio, los
# titulares y una línea de un píxel. El negro queda para los dos únicos
# momentos que deben pesar: el bloque de cita y el pie.
--------------------------------------------------------------*/
.section-bg,
.contact,
.start-cta,
.page-hero {
  background: var(--bg-white);
}

/* Separación con una línea fina en vez de un cambio de fondo */
.page-hero,
main > section + section:not(.quote-block):not(.start-cta) {
  border-top: 1px solid var(--border-soft);
}

.page-hero {
  border-top: 0;
  border-bottom: 1px solid var(--border-soft);
}

main > section.quote-block + section {
  border-top: 0;
}

.start-cta {
  border-top: 1px solid var(--border-soft);
}

/* El formulario mantiene su superficie: es lo que lo separa del fondo
   ahora que la sección de contacto ya no tiene banda propia. */
.contact-form-wrapper {
  background: var(--grey-050);
}

/*--------------------------------------------------------------
# Detalles en el gris cálido de la paleta
# Sin fondos de color: solo líneas, bordes y pequeños acentos, para que
# el negro sobre blanco no sea lo único que se ve.
--------------------------------------------------------------*/
/* La línea que acompaña al antetítulo de cada sección */
.section-title h2::after {
  background: var(--grey-500);
}

/* Las estrellas decorativas */
.section-title::before,
.section-title::after {
  color: var(--grey-300);
  opacity: 0.9;
}

/* Barra del destacado de la intro */
.intro .intro-highlight {
  border-left-color: var(--grey-500);
}

/* Aviso de "no es psicoterapia" */
.coaching .coaching-note {
  border-color: var(--grey-300);
}

/* Distintivo de la tarifa destacada */
.sessions .price-badge {
  background: var(--grey-500);
}

/* Subrayado de los enlaces de "seguir leyendo" */
.seguir-leyendo a {
  border-bottom-color: var(--grey-500);
}

/* Migas de pan y firma */
.page-hero .migas a {
  border-bottom-color: var(--grey-300);
}

/* Acento superior de las tarjetas al pasar por encima */
.pillars .pillar-card::before {
  background: linear-gradient(90deg, var(--grey-500), var(--grey-300));
}

/*--------------------------------------------------------------
# Titulares en el gris cálido
# Los titulares de display (Perpetua) pasan del negro puro al tono
# cálido de la paleta. El texto corrido se queda en negro: el contraste
# de lectura no se toca y la jerarquía la marcan el tamaño y la serif.
--------------------------------------------------------------*/
.page-hero h1,
.section-title p,
.start-cta h2,
.pagina-interior .about-content h2,
.pagina-interior .coaching h2 {
  color: var(--grey-500);
}

/* En el bloque oscuro el titular sigue en blanco */
.quote-block h2{
  color: #fff;
}

/*--------------------------------------------------------------
# Bloque de título de las páginas interiores
# Recupera fondo propio, en el tono cálido de la paleta. Es un bloque
# único y acotado, no la banda alterna que producía el efecto de parches.
--------------------------------------------------------------*/
.page-hero {
  background: #EAE8E5;
  border-bottom: 1px solid var(--grey-100);
}

/*--------------------------------------------------------------
# Tarjetas cálidas sobre fondo blanco
# En vez de teñir franjas de ancho completo (que se leían como parches),
# el color va en las piezas: tarjetas, avisos y formulario flotan en tono
# cálido sobre el blanco. El fondo sigue siendo uno solo.
--------------------------------------------------------------*/
.pillars .pillar-card,
.sessions .price-card {
  background: #F1EFEC;
  border-color: #E6E3DF;
}

.pillars .pillar-card:hover,
.sessions .price-card:hover {
  background: #EDEAE6;
}

.pillars .pillar-icon {
  background: var(--bg-white);
  border-color: #E1DDD8;
}

.sessions .price-card.featured {
  background: #EAE7E2;
  border-color: var(--grey-300);
}

.info-card {
  background: #F1EFEC;
  border-color: #E6E3DF;
}

.info-icon {
  background: var(--bg-white);
  border-color: #E1DDD8;
}

.contact-form-wrapper {
  background: #F1EFEC;
  border-color: #E6E3DF;
}

.coaching .coaching-note,
.intro .intro-highlight {
  background: #F1EFEC;
}

/*--------------------------------------------------------------
# Intro
# Bloque centrado y con medida de lectura corta. El remate deja de ser
# una caja de aviso y pasa a ser un cierre tipográfico, separado por una
# línea con el triángulo del isotipo encima.
--------------------------------------------------------------*/
.intro {
  padding: 110px 0 100px 0;
}

.intro .intro-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.intro .intro-lead {
  font-family: "Perpetua", Georgia, serif;
  font-size: 34px;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-dark);
  margin: 0;
}

.intro .intro-cuerpo {
  max-width: 640px;
  margin: 40px auto 0 auto;
}

.intro .intro-cuerpo p {
  color: var(--text-light);
  margin-bottom: 18px;
}

.intro .intro-cuerpo p:last-child {
  margin-bottom: 0;
}

/* Cierre: la frase que resume la propuesta */
.intro .intro-cierre {
  position: relative;
  margin-top: 70px;
  padding-top: 56px;
}

.intro .intro-cierre::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 1px;
  background: var(--border-soft);
}

.intro .intro-simbolo {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 20px;
  background: var(--bg-white);
  color: var(--grey-500);
}

.intro .intro-cierre p {
  font-family: "Perpetua", Georgia, serif;
  margin: 0;
}

.intro .intro-cierre-suave {
  font-size: 24px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.intro .intro-cierre-fuerte {
  font-size: 32px;
  line-height: 1.4;
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .intro {
    padding: 70px 0 60px 0;
  }

  .intro .intro-lead {
    font-size: 25px;
  }

  /* En móvil el salto de línea manual parte la frase donde no toca */
  .intro .intro-lead br {
    display: none;
  }

  .intro .intro-cierre {
    margin-top: 50px;
    padding-top: 46px;
  }

  .intro .intro-cierre-suave {
    font-size: 20px;
  }

  .intro .intro-cierre-fuerte {
    font-size: 25px;
  }
}

/*--------------------------------------------------------------
# WhatsApp
--------------------------------------------------------------*/
.whatsapp-flotante {
  position: fixed;
  bottom: 88px;
  right: 15px;
  z-index: 996;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-flotante svg {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
}

.whatsapp-flotante:hover {
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
}

/* Aro que late para que el botón se vea sin tapar contenido */
.whatsapp-pulso {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: whatsappPulso 2.4s ease-out infinite;
}

@keyframes whatsappPulso {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Quien haya pedido menos movimiento en su sistema no ve el latido */
@media (prefers-reduced-motion: reduce) {
  .whatsapp-pulso {
    animation: none;
  }
}

@media (max-width: 768px) {
  .whatsapp-flotante {
    bottom: 78px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-flotante svg {
    width: 25px;
    height: 25px;
  }
}

/* Tarjeta de WhatsApp en la sección de contacto */
.info-card-whatsapp {
  text-decoration: none;
  display: flex;
}

.info-card-whatsapp .info-icon {
  color: #25D366;
}

.info-card-whatsapp:hover .info-icon {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}

.info-card-whatsapp .info-nota {
  font-size: 13px;
  color: var(--text-light);
}

/*--------------------------------------------------------------
# Fondo de la introducción
# Sin textura: la transición desde el hero la resuelve el halo cálido.
--------------------------------------------------------------*/
.intro {
  position: relative;
  /* La plantilla base aplica `overflow: hidden` a todas las secciones, y eso
     recortaba el halo justo en el borde superior: ese corte era la línea que
     se veía en la unión. Con `visible` el halo sube sobre la foto, que ahí ya
     está fundida en blanco, y la transición queda continua. */
  overflow: visible;
}


.intro .container {
  position: relative;
  z-index: 1;
}

/*--------------------------------------------------------------
# Transición del hero a la introducción
# La foto se desvanece en blanco por abajo en vez de cortar a hueso, y
# la intro recibe un halo cálido difuminado que recoge la luz de la
# lámpara de la foto. Las dos secciones se funden en lugar de chocar.
--------------------------------------------------------------*/
#hero::after {
  /* El orden importa: en CSS la primera capa se pinta encima. El fundido a
     blanco tiene que ir delante de la viñeta, o esta la ensucia en el borde
     inferior y deja una línea gris justo en la unión con la intro. */
  background:
    linear-gradient(to top, #fff 0%, #fff 3%, rgba(255, 255, 255, 0.9) 9%, rgba(255, 255, 255, 0.4) 20%, rgba(255, 255, 255, 0) 34%),
    radial-gradient(ellipse at center, transparent 35%, rgba(29, 30, 28, 0.45) 100%);
}

/* La flecha queda ahora sobre la zona clara */
#hero .hero-scroll {
  color: var(--grey-500);
  text-shadow: none;
}

#hero .hero-scroll:hover {
  color: var(--text-dark);
}

/* Halo difuminado que continúa la luz de la foto dentro de la intro */
.intro::after {
  content: "";
  position: absolute;
  top: -260px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 520px;
  background: radial-gradient(ellipse at center, rgba(216, 198, 172, 0.5) 0%, rgba(226, 214, 198, 0.22) 45%, rgba(255, 255, 255, 0) 72%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 768px) {
  .intro::after {
    top: -160px;
    width: 140%;
    height: 340px;
  }
}

/* WhatsApp entre los botones del hero */
.btn-hero-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  color: #fff;
  transition: all 0.35s ease;
  flex-shrink: 0;
}

.btn-hero-whatsapp svg {
  width: 26px;
  height: 26px;
}

.btn-hero-whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Puntos del pie
--------------------------------------------------------------*/
.footer-puntos {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.footer-puntos span {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  animation-name: puntoParpadeo;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes puntoParpadeo {
  0%, 100% {
    opacity: 0;
    transform: scale(0.6);
  }
  45% {
    opacity: 0.85;
    transform: scale(1);
  }
  55% {
    opacity: 0.85;
    transform: scale(1);
  }
}

/* El contenido del pie va por encima de los puntos */
#footer .container {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .footer-puntos span {
    animation: none;
    opacity: 0.3;
  }
}

/* Resumen de talleres en la home */
.talleres-teaser p {
  color: var(--text-light);
}

.talleres-teaser .seguir-leyendo {
  margin-top: 30px;
}

/* Agenda de talleres */
.talleres-agenda {
  text-align: center;
  font-family: "Perpetua", Georgia, serif;
  font-size: 30px;
  color: var(--grey-500);
  margin: 0 auto 10px auto;
}

/*--------------------------------------------------------------
# Talleres: hero con fotografía
# La página de talleres es la única con imagen en la cabecera: es una
# propuesta vivencial y la foto del espacio explica más que el texto.
--------------------------------------------------------------*/
.page-hero-foto {
  position: relative;
  /* Cada página pasa su imagen y su encuadre con --hero-foto y --hero-pos */
  background:
    linear-gradient(180deg, rgba(29, 30, 28, 0.66) 0%, rgba(29, 30, 28, 0.5) 40%, rgba(29, 30, 28, 0.72) 100%),
    var(--hero-foto) center var(--hero-pos, 42%);
  background-size: cover;
  border-bottom: 0;
  padding: 210px 0 110px 0;
}

.page-hero-foto .migas,
.page-hero-foto .migas a,
.page-hero-foto .hero-eyebrow-oscuro {
  color: rgba(255, 255, 255, 0.85);
}

.page-hero-foto .migas a {
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

.page-hero-foto .migas a:hover {
  color: #fff;
}

.page-hero-foto h1 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.page-hero-foto .page-hero-lead {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* El bloque del grupo lleva detrás una foto de un taller real */
.pagina-interior .quote-block {
  background:
    linear-gradient(rgba(29, 30, 28, 0.88), rgba(29, 30, 28, 0.92)),
    url("../../img/taller-grupo.jpg") center 38%;
  background-size: cover;
}

@media (max-width: 768px) {
  .page-hero-foto {
    padding: 165px 0 70px 0;
  }
}

/*--------------------------------------------------------------
# Galería de cierre
--------------------------------------------------------------*/
.galeria {
  padding: 90px 0 100px 0;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.galeria-item {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
  background: var(--grey-100);
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.galeria-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(29, 30, 28, 0);
  transition: background 0.4s ease;
}

.galeria-item:hover img {
  transform: scale(1.06);
}

.galeria-item:hover::after {
  background: rgba(29, 30, 28, 0.18);
}

.galeria-pie {
  text-align: center;
  margin: 36px 0 0 0;
}

.galeria-pie a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--grey-500);
  padding-bottom: 4px;
  transition: gap 0.3s ease, opacity 0.3s ease;
}

.galeria-pie a:hover {
  gap: 14px;
  opacity: 0.7;
  color: var(--text-dark);
}

.galeria-pie i {
  font-size: 20px;
}

@media (max-width: 768px) {
  .galeria {
    padding: 60px 0 70px 0;
  }

  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/*--------------------------------------------------------------
# Páginas de pilar (cambio profesional, decisiones, etapas…)
--------------------------------------------------------------*/
.pilar-entradilla {
  font-family: "Perpetua", Georgia, serif;
  font-size: 24px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 22px;
}

.pilar-lista {
  list-style: none;
  padding: 0;
  margin: 26px 0 30px 0;
}

.pilar-lista li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  color: var(--text-light);
}

.pilar-lista li i {
  position: absolute;
  left: 0;
  top: 9px;
  color: var(--grey-500);
  font-size: 9px;
}

.pilar-faq h3 {
  font-family: "Perpetua", Georgia, serif;
  font-size: 22px;
  color: var(--text-dark);
  margin: 30px 0 8px 0;
}

.pilar-faq p {
  color: var(--text-light);
}

/* Las tarjetas de acompañamiento ahora son enlaces */
a.pillar-card {
  text-decoration: none;
  display: block;
}

.pillar-mas {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: "Catamaran", sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey-500);
  transition: gap 0.3s ease, color 0.3s ease;
}

a.pillar-card:hover .pillar-mas {
  gap: 14px;
  color: var(--text-dark);
}
