/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  /* Dark Theme Colors (Default) - MANTENIENDO TUS COLORES EXACTOS */
  --bg-primary: #0c0b09;
  --bg-secondary: #1a1814;
  --bg-tertiary: #28251f;
  --bg-card: #1a1814;
  --bg-form: #0c0b09;
  
  --text-primary: #ffffff;
  --text-secondary: #aaaaaa;
  --text-accent: #cda45e;
  --text-muted: #bab3a6;
  
  --border-color: #37332a;
  --border-light: #625b4b;
  --border-accent: #cda45e;
  
  --shadow-color: rgba(0, 0, 0, 0.3);
  --box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 10px 15px 30px rgba(0, 0, 0, 0.18);
  
  --overlay-dark: rgba(0, 0, 0, 0.5);
  --overlay-light: rgba(255, 255, 255, 0.05);
  
  --accent-color: #cda45e;
  --accent-hover: #d9ba85;
  --accent-light: rgba(205, 164, 94, 0.1);
}

[data-theme="light"] {
  /* Light Theme Colors - SOLO INVERTIDOS del dark mode */
  --bg-primary: #f0f2f5;           
  --bg-secondary: #ffffff;        
  --bg-tertiary: #f1f3f5;    
  --bg-card: #ffffff;
  --bg-form: #f9f9f9;
  
  --text-primary: #2c3e50;
  --text-secondary: #666666;
  --text-accent: #d4a017;
  --text-muted: #888888;
  --text-black: #000000;
  
  --border-color: #e0e0e0;
  --border-light: #d0d0d0;
  --border-accent: #d4a017;
  
  --shadow-color: rgba(0, 0, 0, 0.1);
  --box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.08);
  --box-shadow-hover: 10px 15px 30px rgba(0, 0, 0, 0.12);
  
  --overlay-dark: rgba(0, 0, 0, 0.3);
  --overlay-light: rgba(0, 0, 0, 0.03);
  
  --accent-color: #d4a017;
  --accent-hover: #e6b020;
  --accent-light: rgba(212, 160, 23, 0.1);
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color 0.5s ease, color 0.5s ease;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-hover);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}

/* Clase para etiquetas accesibles pero visualmente ocultas */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--bg-primary);
  transition: background-color 0.5s ease;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--bg-primary);
  border-top-color: var(--accent-color);
  border-bottom-color: var(--accent-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@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(--accent-color);
  background: var(--bg-card);
}

.back-to-top i {
  font-size: 28px;
  color: var(--accent-color);
  line-height: 0;
  transition: color 0.3s ease;
}

.back-to-top:hover {
  background: var(--accent-color);
  color: var(--bg-primary);
}

.back-to-top:hover i {
  color: var(--bg-primary);
}

.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: 40px;
  font-size: 14px;
  transition: all 0.5s;
  z-index: 996;
  background-color: var(--bg-tertiary);
  border-bottom: 1px solid var(--border-color);
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info i {
  font-style: normal;
  color: var(--accent-hover);
}

#topbar .contact-info i span {
  padding-left: 5px;
  color: var(--text-primary);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  top: 40px;
}

#header.header-scrolled {
  top: 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: var(--text-primary);
}

#header .logo img {
  max-height: 40px;
  transition: filter 0.5s ease;
}

/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
  margin: 0 0 0 15px;
  border: 2px solid var(--accent-color);
  color: var(--text-primary);
  border-radius: 50px;
  padding: 8px 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
}

.book-a-table-btn:hover {
  background: var(--accent-color);
  color: var(--bg-primary);
}

@media (max-width: 992px) {
  .book-a-table-btn {
    margin: 0 15px 0 0;
    padding: 8px 20px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  color: var(--text-primary);
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--accent-hover);
}

.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-secondary);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  color: var(--text-primary);
}

.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(--accent-color);
}

.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(--text-primary);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: var(--bg-secondary);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--text-primary);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--accent-color);
}

.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: var(--bg-secondary);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 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;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  padding: 0;
  overflow: hidden;
  background: url("../img/soccerball3-1024x683_1.webp") top center;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  transition: background-image 0.8s ease-in-out;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: background-color 0.8s ease-in-out;
}

#hero .container {
  padding-top: 110px;
}

#hero .container img {
  position: absolute;
  left: -100%;
  right: -100%;
  top: -100%;
  bottom: -100%;
  margin: auto;
  min-height: 100%;
  min-width: 100%;
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 98px;
  }
}

@media (max-width: 992px) {
  #hero .container img{
    padding-top: 150px;
  }
}

#hero h1 {
  margin: 0;
  font-size: 90px;
  font-weight: 700;
  line-height: 56px;
  color: var(--text-primary);
  font-family: 'Style Script', cursive;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#hero h1 span {
  color: var(--accent-color);
}

#hero h2 {
  color: var(--text-primary);
  margin-bottom: 10px 0 0 0;
  font-size: 22px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Modo Claro para Hero */
[data-theme="light"] #hero {
  background: url("../img/soccerball3dia-1024x683_1.webp") top center;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

[data-theme="light"] #hero:before {
  background: rgba(0, 0, 0, 0.4);
}

[data-theme="light"] #hero h1 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

[data-theme="light"] #hero h2 {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  color: var(--text-primary);
}

#hero .btns {
  margin-top: 30px;
}

#hero .btn-menu,
#hero .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: var(--text-primary);
  border: 2px solid var(--accent-color);
}

#hero .btn-menu:hover,
#hero .btn-book:hover {
  background: var(--accent-color);
  color: var(--bg-primary);
}

#hero .btn-book {
  margin-left: 15px;
}

#hero .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, rgba(205, 164, 94, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

#hero .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--bg-primary);
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#hero .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(205, 164, 94, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#hero .play-btn:hover::after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

#hero .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--bg-primary);
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero .play-btn {
    margin-top: 30px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: auto;
  }

  #hero .container {
    padding-top: 130px;
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: var(--bg-secondary);
}

.section-title {
  padding-bottom: 40px;
}

.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;
  text-align: center;
  color: var(--text-secondary);
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inherit;
  text-align: center;
  background: var(--border-color);
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: url("../img/soccerball2-1024x683_1.webp") center center;
  background-size: cover;
  position: relative;
  padding: 80px 0;
  background-attachment: fixed;
  background-position: center;
  transition: background-image 0.8s ease-in-out;
}

.about:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: background-color 0.8s ease-in-out;
}

/* Modo Claro para About */
[data-theme="light"] .about {
  background: url("../img/soccerball2-1024x683_1.webp") center center;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

[data-theme="light"] .about:before {
  background: rgba(0, 0, 0, 0.3);
}

.about .about-img {
  position: relative;
  transition: 0.5s;
}

.about .about-img img {
  max-width: 100%;
  border: 4px solid var(--border-color);
  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 h3 {
  font-weight: 600;
  font-size: 26px;
  text-align: center;
  margin-bottom: 8%;
  color: var(--text-primary);
}

.about .content p {
  font-size: 20px;
  text-justify: distribute;
  color: var(--text-primary);
}

.about .content p span{
  color: var(--accent-color);
}

.about .content span {
  font-size: 20px;
  text-justify: distribute;
  color: var(--text-primary);
}

.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(--accent-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: var(--box-shadow);
  transition: all ease-in-out 0.3s;
  background: var(--bg-card);
}

.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  text-align: center;
}

/* Ocultar SVG y usar estrellas Unicode */
.why-us .box span svg {
  display: none;
}

.why-us .box span::before {
  content: "★";
  font-size: 32px;
  display: block;
  color: var(--accent-color);
  text-align: center;
  margin-bottom: 10px;
}

.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: var(--text-primary);
}

/* Estilos para h3 */
.why-us .box h3 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: var(--text-primary);
  text-align: center;
}

.why-us .box p {
  color: var(--text-secondary);
  font-size: 15px;
  margin: 0;
  padding: 0;
}

[data-theme="light"] .why-us .box p {
  color: #444444;
  font-weight: 500;
}

.why-us .box:hover {
  background: var(--accent-color);
  padding: 30px 30px 70px 30px;
  box-shadow: var(--box-shadow-hover);
}

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover h3,
.why-us .box:hover p {
  color: var(--bg-primary);
}

.why-us .box:hover span::before {
  color: var(--bg-primary);
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .nav-tabs {
  border: 0;
  margin-top: 6%;
}

.menu {
  background: url("../img/soccerball3-1024x683_1.webp") center center;
  background-size: cover;
  position: relative;
  padding: 80px 0;
  background-attachment: fixed;
  background-position: center;
  transition: background-image 0.8s ease-in-out;
}

.menu:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: background-color 0.8s ease-in-out;
}

/* Modo Claro para Menu */
[data-theme="light"] .menu {
  background: url("../img/soccerball3dia-1024x683_1.webp") center center;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

[data-theme="light"] .menu:before {
  background: rgba(0, 0, 0, 0.4);
}

@media (min-width: 1024px) {
  .menu {
    background-attachment: fixed;
  }
}

#menu .container {
  padding-top: 110px;
}

@media (max-width: 992px) {
  #menu .container {
    padding-top: 98px;
  }
}

/* Navegación de pestañas - ELIMINADO EL RECTÁNGULO */
.menu .nav-tabs {
  border: 0;
  margin-top: 6%;
}

.menu .nav-link {
  margin: 0 10px;
  padding: 10px 20px;
  transition: 0.3s;
  color: var(--text-primary) !important;
  border-radius: 0;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 2px solid var(--border-light);
  font-weight: 500;
}

@media (max-width: 575px) {
  .menu .nav-link {
    margin: 0 5px;
    padding: 10px 15px;
    font-size: 14px;
  }
}

.menu .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.menu .section-header h2, p, span{
  text-align: center;
}

.menu .section-header h2{
  text-align: center;
  color: var(--accent-color);
}

.menu .section-header ul{
  background-color: var(--bg-primary);
  color: var(--bg-primary);
}

.menu .nav-link h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  font-family: var(--font-secondary);
}

@media (max-width: 575px) {
  .menu .nav-link h4 {
    font-size: 16px;
  }
}

.menu .nav-link:hover {
  color: var(--accent-color) !important;
  border-color: var(--accent-color);
}

.menu .nav-link.active {
  color: var(--accent-color) !important;
  border-color: var(--accent-color);
}

.menu .tab-content .tab-header {
  padding: 30px 0;
}

.menu .tab-content .tab-header p {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0;
}

.menu .tab-content .tab-header h3 {
  font-size: 36px;
  font-weight: 600;
  color: var(--accent-color);
}

.menu .tab-content .menu-item {
  -moz-text-align-last: center;
  text-align-last: center;
}

.menu .tab-content .menu-item .menu-img {
  position: relative;
  transition: 0.5s;
}

.menu .tab-content .menu-item .card-img img{
  max-width: 100%;
  border: 2px solid var(--accent-color);
  position: relative;
  height: 350px; 
  width: 560px;    
  object-fit: cover;
}

.menu .tab-content .menu-item:hover {
  transform: scale(1.03);
}

.menu .tab-content .menu-item .card-img:hover::before {
  left: 1px;
  top: 1px;
}

.menu .tab-content .menu-item .card-img:hover::after {
  right: 1px;
  bottom: 1px;
}

.menu .tab-content .menu-item h4 {
  font-size: 22px;
  font-weight: 500;
  color: var(--accent-color);
  font-family: var(--font-secondary);
  font-weight: 30px;
  margin-top: 30px;
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .ingredients {
  font-family: var(--font-secondary);
  color: var(--text-primary);
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
}

.menu .tab-content .tab-header p {
  color: var(--text-primary);
}

.menu .tab-content .tab-header h3 {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--border-light);
  border-bottom: 3px solid var(--border-light);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
}

.contact .info i {
  font-size: 20px;
  float: left;
  width: 44px;
  height: 44px;
  background: var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h3 {
  padding: 0 0 0 60px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
  color: var(--text-primary);
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.contact .info .open-hours,
.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: var(--bg-primary);
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: var(--bg-primary);
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--bg-primary);
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background: var(--bg-form);
  border-color: var(--border-light);
  color: var(--text-primary);
}

.contact .php-email-form input::-moz-placeholder,
.contact .php-email-form textarea::-moz-placeholder {
  color: var(--text-muted);
}

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder {
  color: var(--text-muted);
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  border: 0;
  padding: 10px 35px;
  color: var(--bg-primary);
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--accent-hover);
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer - OSCURO FIJO PARA AMBOS MODOS
--------------------------------------------------------------*/
#footer {
  background: #12100d !important; /* OSCURO FIJO */
  padding: 0 0 30px 0;
  color: #e0e0e0 !important;
  font-size: 14px;
  position: relative;
}

#footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #cda45e, transparent);
  z-index: 1;
}

#footer .container {
  padding-top: 50px;
  position: relative;
  z-index: 2;
}

#footer .container img {
  margin-bottom: 20px;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(1.1);
  transition: filter 0.3s ease;
}

@media (max-width: 768px) {
  #footer .container img {
    max-width: 100%;
    min-width: 100px;
    object-fit: cover;
  }
}

#footer .footer-top {
  background: #1a1814 !important; /* OSCURO FIJO */
  border-top: 1px solid rgba(205, 164, 94, 0.3);
  border-bottom: 1px solid rgba(205, 164, 94, 0.3);
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #ffffff !important;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Playfair Display", serif;
  color: #d0d0d0 !important;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #cda45e;
  color: #12100d;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff !important;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #cda45e;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
   padding: 8px 0;
   display: flex;
   align-items: center;
   min-height: 44px;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #d0d0d0 !important;
  transition: 0.3s;
  display: block;
  line-height: 1;
  padding: 12px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul a:hover {
  color: #cda45e !important;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  border: 1px solid rgba(205, 164, 94, 0.3);
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
  background: transparent;
  color: #ffffff;
}

#footer .footer-top .footer-newsletter form input[type=email]::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #cda45e;
  color: #12100d;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #d9ba85;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: #d0d0d0 !important;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #d0d0d0 !important;
}

#footer .credits a {
  color: #87ceeb !important;
}

/* Override para modo claro - FORZAR OSCURO */
[data-theme="light"] #footer {
  background: #12100d !important;
}

[data-theme="light"] #footer .footer-top {
  background: #1a1814 !important;
}

[data-theme="light"] #footer .footer-info p,
[data-theme="light"] #footer .footer-links ul a,
[data-theme="light"] #footer .footer-links h4,
[data-theme="light"] #footer .copyright,
[data-theme="light"] #footer .credits {
  color: #d0d0d0 !important;
}

[data-theme="light"] #footer .footer-info a,
[data-theme="light"] #footer .footer-links ul a:hover {
  color: #cda45e !important;
}

/* Contenedor principal del CAPTCHA */
.g-recaptcha {
    margin: 20px 0 10px 0;
    padding: 10px 0;
    background: var(--accent-light);
    border: 1px solid var(--border-light);
    border-radius: 5px;
    display: inline-block;
    min-height: 78px;
}

/* Ajuste para que el iframe se vea bien */
.g-recaptcha > div {
    margin: 0 auto;
}

/* Ajuste para móviles */
@media (max-width: 768px) {
    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: 0 0;
        margin: 15px 0;
    }
    
    /* Asegurar que no se corte */
    .g-recaptcha > div {
        overflow: visible !important;
    }
}

/* Para pantallas muy pequeñas */
@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.85);
    }
}

/* Corrección del badge flotante */
.grecaptcha-badge {
    visibility: visible !important;
    z-index: 9999 !important;
}



/* Textos adaptativos */
.text-light-adaptive {
  color: var(--text-primary) !important;
}

.text-warning-adaptive {
  color: var(--accent-color) !important;
}


/* Ajustes específicos de colores para modo claro */
[data-theme="light"] .section-bg-dark {
  background: var(--bg-tertiary) !important;
}

[data-theme="light"] .icon-box-bg {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid var(--border-color) !important;
}

[data-theme="light"] .clientes-content {
  background: rgba(255, 255, 255, 0.9) !important;
}

[data-theme="light"] .proceso-desc {
  background: rgba(255, 255, 255, 0.9) !important;
}

/* Ajustes para texto en modo claro */
[data-theme="light"] .text-dark {
  color: var(--text-primary) !important;
}

[data-theme="light"] .cta .text-dark {
  color: #0c0b09 !important;
}

/* Botón CTA adaptativo */
.cta-btn.adaptive {
  background: var(--bg-primary) !important;
  color: var(--accent-color) !important;
  border: 2px solid var(--bg-primary) !important;
  transition: all 0.3s ease;
}

.cta-btn.adaptive:hover {
  background: transparent !important;
  color: var(--bg-primary) !important;
}

[data-theme="light"] .cta-btn.adaptive {
  background: #0c0b09 !important;
  color: var(--accent-color) !important;
  border: 2px solid #0c0b09 !important;
}

[data-theme="light"] .cta-btn.adaptive:hover {
  background: transparent !important;
  color: #0c0b09 !important;
}

.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px var(--shadow-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: floatWhatsApp 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px var(--shadow-color);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent var(--bg-card);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    animation: pulseRing 2s infinite;
    z-index: -1;
}

/* Animaciones */
@keyframes floatWhatsApp {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Para móviles */
@media (max-width: 768px) {
    .whatsapp-container {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .whatsapp-pulse {
        display: none;
    }
}

/* =============================================
   DARK/LIGHT MODE TOGGLE
   ============================================= */

/* Botón toggle */
.theme-toggle-btn {
  background: var(--accent-light);
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.theme-toggle-btn:hover {
  background: var(--accent-color);
  color: var(--bg-primary);
  transform: scale(1.05);
}

.theme-toggle-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.theme-toggle-btn .theme-label {
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  background: var(--bg-card);
  color: var(--text-primary);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px var(--shadow-color);
}

.theme-toggle-btn:hover .theme-label {
  opacity: 1;
  visibility: visible;
  right: 50px;
}

/* Animación del icono */
[data-theme="light"] .theme-toggle-btn i.bi-moon-fill {
  display: none;
}

[data-theme="light"] .theme-toggle-btn i.bi-sun-fill {
  display: inline-block;
}

[data-theme="dark"] .theme-toggle-btn i.bi-sun-fill {
  display: none;
}

[data-theme="dark"] .theme-toggle-btn i.bi-moon-fill {
  display: inline-block;
}

.theme-toggle-btn i.bi-sun-fill {
  display: none;
}

/* Para móviles */
@media (max-width: 992px) {
  .theme-toggle-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 999;
    width: 50px;
    height: 50px;
  }
  
  .theme-toggle-btn .theme-label {
    display: none;
  }
}

/* =============================================
   TRANSICIONES SUAVES PARA TODOS LOS ELEMENTOS
   ============================================= */
* {
  transition: background-color 0.5s ease, 
              color 0.5s ease, 
              border-color 0.5s ease, 
              box-shadow 0.5s ease;
}

/* Asegurar que las imágenes de fondo tengan transición */
#hero,
.menu,
.about,
.cta {
  transition: background-image 0.8s ease-in-out,
              background-color 0.5s ease;
}

/* Transiciones para overlay */
#hero:before,
.menu:before,
.about:before,
.cta:before {
  transition: background-color 0.8s ease-in-out;
}

/* Optimización para móviles - reducir animaciones */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  #hero,
  .menu,
  .about,
  .cta {
    transition: none;
  }
}

/* Forzar texto blanco en Hero en modo claro */
[data-theme="light"] #hero h2 {
  color: #ffffff !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Navegación de productos - texto blanco y fondo transparente */
.menu .nav-tabs .nav-link {
  color: #ffffff !important;
  background: transparent !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

[data-theme="light"] .menu .nav-tabs .nav-link {
  color: #ffffff !important;
  background: transparent !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.menu .nav-tabs .nav-link:hover,
.menu .nav-tabs .nav-link.active {
  color: var(--accent-color) !important;
  border-color: var(--accent-color);
}

[data-theme="light"] .menu .nav-tabs .nav-link:hover,
[data-theme="light"] .menu .nav-tabs .nav-link.active {
  color: var(--accent-color) !important;
  border-color: var(--accent-color);
}

/* Eliminar cualquier fondo blanco */
.menu .nav-tabs {
  background: transparent !important;
}

[data-theme="light"] .menu .nav-tabs {
  background: transparent !important;
}

/* =============================================
   CORRECCIONES FINALES - TEXTOS VISIBLES
   ============================================= */

/* 1. Títulos de sección Menu - SIEMPRE VISIBLES */
.menu .section-title p {
  color: #ffffff !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.menu .section-title span {
  color: var(--accent-color) !important;
}

[data-theme="light"] .menu .section-title p {
  color: #ffffff !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* 2. Headers de pestañas - SIEMPRE VISIBLES */
.menu .tab-header p,
.menu .tab-header h3 {
  color: #ffffff !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

[data-theme="light"] .menu .tab-header p,
[data-theme="light"] .menu .tab-header h3 {
  color: #ffffff !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* 3. Hero Section - Texto SIEMPRE blanco */
#hero h2 {
  color: #ffffff !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

[data-theme="light"] #hero h2 {
  color: #ffffff !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* 4. Navegación de productos - texto blanco, sin fondo */
.menu .nav-tabs {
  background: transparent !important;
}

.menu .nav-tabs .nav-link {
  color: #ffffff !important;
  background: transparent !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.menu .nav-tabs .nav-link:hover,
.menu .nav-tabs .nav-link.active {
  color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  background: transparent !important;
}

/* Modo claro - mantener texto blanco */
[data-theme="light"] .menu .nav-tabs .nav-link {
  color: #ffffff !important;
}

[data-theme="light"] .menu .nav-tabs .nav-link:hover,
[data-theme="light"] .menu .nav-tabs .nav-link.active {
  color: var(--accent-color) !important;
}

/* 5. Forzar override de cualquier color heredado */
.menu * {
  color: #ffffff !important;
}

.menu .section-title p,
.menu .tab-header p,
.menu .tab-header h3 {
  color: #ffffff !important;
}

/* Botón de tema en móvil */
.theme-toggle-btn-mobile {
  background: var(--accent-light);
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
}

.theme-toggle-btn-mobile:hover {
  background: var(--accent-color);
  color: var(--bg-primary);
}

.theme-toggle-btn-mobile i {
  font-size: 1.2rem;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.theme-toggle-btn-mobile:hover i {
  transform: rotate(30deg);
}

/* Botón contacto en móvil */
.book-a-table-btn-mobile {
  background: var(--accent-color);
  color: var(--bg-primary);
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  width: 100%;
  border: 2px solid var(--accent-color);
}

.book-a-table-btn-mobile:hover {
  background: transparent;
  color: var(--accent-color);
}

/* Asegurar que el navbar móvil tenga suficiente espacio */
.navbar-mobile ul {
  padding-bottom: 100px !important;
}

/* Botón de toggle original - ocultar en móvil */
@media (max-width: 992px) {
  .theme-toggle-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 999;
    width: 50px;
    height: 50px;
    display: none !important; /* Ocultamos el botón flotante */
  }
  
  .theme-toggle-btn .theme-label {
    display: none;
  }
  
  /* Mostrar botones dentro del menú móvil */
  .navbar-mobile .theme-toggle-btn-mobile,
  .navbar-mobile .book-a-table-btn-mobile {
    display: flex !important;
    margin: 10px 20px;
  }
}

/* Para pantallas grandes - ocultar botones móviles */
@media (min-width: 993px) {
  .theme-toggle-btn-mobile,
  .book-a-table-btn-mobile {
    display: none !important;
  }
}

/* =============================================
   MEJORAS PARA NAVBAR MÓVIL
   ============================================= */
.navbar-mobile ul {
  padding: 20px !important;
}

.navbar-mobile .nav-link {
  padding: 12px 20px !important;
  font-size: 16px !important;
}

.navbar-mobile li {
  border-bottom: 1px solid var(--border-light);
}

.navbar-mobile li:last-child {
  border-bottom: none;
}

/* Ocultar badge de reCAPTCHA (permitido si mostramos texto legal) */
.grecaptcha-badge {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Contenedor del texto legal de reCAPTCHA */
.recaptcha-legal-notice {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 25px;
    border: 1px solid #e9ecef;
    font-size: 0.85rem;
}

.recaptcha-legal-notice p {
    margin-bottom: 8px;
    line-height: 1.5;
}

.recaptcha-legal-notice a {
    color: #0d6efd !important;
    text-decoration: underline;
    font-weight: 500;
}

.recaptcha-legal-notice a:hover {
    color: #0a58ca !important;
    text-decoration: none;
}

.recaptcha-legal-notice .bi-shield-check {
    color: #28a745;
    margin-right: 5px;
}

/* Contador de caracteres para textarea */
.char-count {
    font-weight: bold;
    transition: color 0.3s ease;
}

.char-count.text-danger {
    color: #dc3545 !important;
}

.char-count.text-warning {
    color: #ffc107 !important;
}

.char-count.text-success {
    color: #28a745 !important;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .recaptcha-legal-notice {
        padding: 12px 15px;
        font-size: 0.8rem;
    }
}

/* =============================================
   ESTILOS PARA TEXTO LEGAL DE reCAPTCHA
   ============================================= */

/* Contenedor principal - Adaptativo al tema */
.recaptcha-legal-notice {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 25px;
    font-size: 0.85rem;
    transition: all 0.5s ease;
}

/* Título de seguridad */
.recaptcha-legal-notice .text-center.mb-2 {
    color: var(--text-primary) !important;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Texto principal - Adaptativo */
.recaptcha-legal-notice .text-center.mb-0 {
    color: var(--text-secondary) !important;
    line-height: 1.5;
    font-size: 0.8rem;
}

/* Icono shield - Color adaptativo */
.recaptcha-legal-notice .bi-shield-check {
    color: var(--accent-color) !important;
    margin-right: 5px;
}

/* Enlaces - Color adaptativo */
.recaptcha-legal-notice a {
    color: var(--accent-color) !important;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.recaptcha-legal-notice a:hover {
    color: var(--accent-hover) !important;
    text-decoration: none;
}

/* Específico para modo oscuro */
[data-theme="dark"] .recaptcha-legal-notice {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--border-light);
}

[data-theme="dark"] .recaptcha-legal-notice .text-center.mb-0 {
    color: #bab3a6 !important; /* Color específico para modo oscuro */
}

/* Específico para modo claro */
[data-theme="light"] .recaptcha-legal-notice {
    background-color: #f8f9fa;
    border-color: #e9ecef;
}

[data-theme="light"] .recaptcha-legal-notice .text-center.mb-0 {
    color: #666666 !important; /* Color específico para modo claro */
}

[data-theme="light"] .recaptcha-legal-notice .bi-shield-check {
    color: #28a745 !important;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .recaptcha-legal-notice {
        padding: 12px 15px;
        font-size: 0.75rem;
        margin-top: 20px;
    }
    
    .recaptcha-legal-notice .text-center.mb-2 {
        font-size: 0.85rem;
    }
    
    .recaptcha-legal-notice .text-center.mb-0 {
        font-size: 0.75rem;
    }
}

/* Asegurar que el texto sea legible en ambos modos */
.recaptcha-legal-notice strong {
    color: var(--text-primary) !important;
    font-weight: 600;
}