
/*
  Theme Name: EstateAgency - Versión Limpia para Contact Page
  Author: BootstrapMade.com + Custom CPE
*/

/*======================================
//--//-->   RESET Y VARIABLES
======================================*/
:root {
  --cpe-fondo: #262626;
  --cpe-fondo-claro: #333333;
  --cpe-texto: #ffffff;
  --cpe-turquesa: #02A19C;
  --cpe-magenta: #ff0080;
  --cpe-naranja: #ff9933;
  --cpe-gris-border: #404040;
  
  --verde-oscuro: #1a4d3e;
  --dorado: #c6a15b;
  --rojo: #b4432c;
  --rojo-hover: #9e3b27;
  --negro: #0a0a0a;
  --gris-oscuro: #1a1a1a;
  --gris-claro: #f5f5f5;
  --blanco: #ffffff;
  --sombra-suave: 0 5px 15px rgba(0, 0, 0, 0.05);
  --sombra-fuerte: 0 15px 30px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #555555;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  color: #000000;
}

a {
  color: #000000;
  transition: all .5s ease;
  text-decoration: none;
}

a:hover {
  color: #02A19C;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/*======================================
//--//-->   COLORES UTILITARIOS
======================================*/
.color-a { color: #000000; }
.color-b { color: #02A19C; }
.color-text-a { color: #555555; }

/*======================================
//--//-->   TOP BAR Y NAVEGACIÓN
======================================*/
.top-bar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1051;
  background-color: #02A19C;
  padding: 8px 16px;
}

.navbar {
  margin-top: 27px;
}

@media (max-width: 767px) {
  .top-bar {
    display: none;
  }
  .navbar {
    margin-top: 0;
  }
}

/*======================================
//--//-->   CONTACT BAR
======================================*/
.contact-bar {
  background: #262626;
  padding: 8px 0;
}

.contact-bar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.contact-logo img {
  width: 120px;
  margin-right: 20px;
}

.contact-details {
  display: flex;
  align-items: center;
  gap: 25px;
}

.contact-details span {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}

.contact-details img {
  width: 18px;
}

.contact-details a {
  z-index: 9999;
  text-decoration: none;
  color: #fff !important;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.contact-details a:hover {
  color: #02A19C !important;
}

.contact-details .lang-flag img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-details .lang-flag img:hover {
  transform: scale(1.1);
  opacity: 0.85;
}

/*======================================
//--//-->   MENÚ PRINCIPAL
======================================*/
.menu-tours {
  width: 100%;
  position: relative;
  background: #02A19C;
  border-bottom: 1px solid #262626;
}

.container1 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

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

.menu-tours ul li {
  position: relative;
  z-index: 9999;
}

.menu-tours ul li.dropdown > a::after {
  content: "▼";
  display: inline-block;
  margin-left: 6px;
}

.menu-tours ul li.dropdown:hover > a::after {
  content: "▲";
}

.menu-tours ul li a {
  display: block;
  font-size: 13px;
  padding: 12px 15px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.menu-tours ul li:hover > a {
  background: #262626;
}

/*======================================
//--//-->   MEGA MENÚ
======================================*/
.mega-menu {
  display: none;
  position: fixed;
  top: 130px;
  left: 0;
  width: 100vw;
  background: rgba(255, 255, 255, 0.6);
  z-index: 999;
  text-align: center;
}

.menu-tours ul li.dropdown:hover .mega-menu,
.menu-tours ul li.dropdown:focus-within .mega-menu {
  display: block;
}

.mega-container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 130px));
  justify-content: center;
  justify-items: center;
  gap: 0px;
  align-items: start;
  box-sizing: border-box;
}

.mega-container a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0px;
  text-decoration: none;
  color: #000;
  width: 140px;
  max-width: 140px;
}

.mega-container img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.mega-container span {
  display: block;
  width: 100%;
  margin-top: 8px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  color: #262626;
  text-align: center;
}

/*======================================
//--//-->   MENÚ MÓVIL
======================================*/
.mobile-nav {
  display: none;
}

@media (max-width: 1000px) {
  .desktop-nav {
    display: none !important;
  }
  
  .mobile-nav {
    display: block;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px 20px;
  }

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

  .mobile-logo {
    height: 40px;
  }

  .hamburger {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #02A19C;
  }
  
  .hamburger:hover {
    color: #1c1c1c;
  }
  
  .hamburger:focus {
    outline: none;
    box-shadow: none;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #fff;
    margin-top: 10px;
  }

  .mobile-menu a {
    padding: 12px 0;
    text-decoration: none;
    color: #1c1c1c;
    border-top: 0.5px solid #ddd;
    font-weight: 500;
  }

  .mobile-menu a:hover {
    background-color: #fff;
    color: #02A19C;
  }
}

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

.arrow {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  background-color: #fff;
  border: none;
}

.submenu a {
  position: relative;
  padding: 10px 0 10px 25px;
  color: #1c1c1c;
  font-size: 0.95rem;
  background: none;
  text-decoration: none;
  display: block;
  border: none;
  margin: 0;
}

.submenu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #02A19C;
  border-radius: 50%;
}

.submenu a:hover {
  color: #02A19C;
}

.arrow.open {
  transform: rotate(90deg);
}

/*======================================
//--//-->   INTRO SINGLE
======================================*/
.intro-single {
  padding: 12rem 0 3rem;
}

.intro-single .title-single-box {
  padding: 1rem 0 1rem 2rem;
  border-left: 3px solid #02A19C;
}

.intro-single .title-single-box .title-single {
  font-weight: 600;
  font-size: 2.2rem;
}

.intro-single .breadcrumb-box {
  padding: 1rem 0 0 .5rem;
}

.intro-single .breadcrumb {
  background-color: transparent;
  padding-right: 0;
  padding-left: 0;
}

/*======================================
//--//-->   MAPA
======================================*/
.contact-map {
  width: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

/*======================================
//--//-->   SECCIÓN CPE (CONTACTO Y PAGOS)
======================================*/
.cpe-contact-section {
  padding: 60px 0;
  background-color: var(--cpe-fondo);
  position: relative;
  border-top: 1px solid var(--cpe-gris-border);
  border-bottom: 1px solid var(--cpe-gris-border);
  width: 100%;
  clear: both;
  overflow: hidden;
}

.cpe-booking-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Formulario */
.cpe-form-column {
  background-color: var(--cpe-fondo-claro);
  border-radius: 8px;
  padding: 35px;
  border: 1px solid var(--cpe-gris-border);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.cpe-form-title {
  color: var(--cpe-texto);
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 600;
  letter-spacing: -0.02em;
  border-bottom: 2px solid var(--cpe-turquesa);
  padding-bottom: 10px;
  display: inline-block;
}

.cpe-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.cpe-form-column input,
.cpe-form-column select,
.cpe-form-column textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: var(--cpe-fondo);
  border: 1px solid var(--cpe-gris-border);
  border-radius: 6px;
  color: var(--cpe-texto);
  font-size: 0.95rem;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.cpe-form-column input:focus,
.cpe-form-column select:focus,
.cpe-form-column textarea:focus {
  outline: none;
  border-color: var(--cpe-turquesa);
  background-color: var(--cpe-fondo);
  box-shadow: 0 0 0 2px rgba(2, 161, 156, 0.2);
}

.cpe-form-column input::placeholder,
.cpe-form-column textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.cpe-form-column select {
  color: var(--cpe-texto);
  cursor: pointer;
}

.cpe-form-column select option {
  background-color: var(--cpe-fondo);
  color: var(--cpe-texto);
}

.cpe-form-column textarea {
  min-height: 120px;
  margin-bottom: 20px;
  resize: vertical;
}

.cpe-form-column button {
  width: 100%;
  padding: 14px;
  background-color: var(--cpe-turquesa);
  color: var(--cpe-texto);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Inter', sans-serif;
}

.cpe-form-column button:hover {
  background-color: #028a86;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(2, 161, 156, 0.3);
}

/* Tarjetas de pago */
.cpe-payment-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cpe-payment-card {
  background-color: var(--cpe-fondo-claro);
  border-radius: 8px;
  padding: 18px;
  border: 1px solid var(--cpe-gris-border);
  transition: all 0.2s ease;
  color: var(--cpe-texto);
}

.cpe-payment-card:hover {
  border-color: var(--cpe-turquesa);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cpe-payment-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cpe-gris-border);
}

.cpe-payment-header i {
  font-size: 1.5rem;
  color: var(--cpe-turquesa);
}

.cpe-payment-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: var(--cpe-texto);
}

.cpe-payment-content {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.cpe-payment-content p {
  margin-bottom: 6px;
}

.cpe-payment-content .cpe-account-number {
  background-color: var(--cpe-fondo);
  padding: 6px 10px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.8rem;
  word-break: break-all;
  border-left: 3px solid var(--cpe-turquesa);
  margin-top: 5px;
}

.cpe-payment-content .cpe-highlight {
  color: var(--cpe-turquesa);
  font-weight: 600;
}

/* Botón PayPal */
.cpe-paypal-button {
  background-color: var(--cpe-fondo);
  color: var(--cpe-texto);
  padding: 10px 15px;
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border: 1px solid var(--cpe-gris-border);
  cursor: pointer;
  display: block;
  text-decoration: none;
  margin-top: 10px;
}

.cpe-paypal-button:hover {
  border-color: var(--cpe-turquesa);
  color: var(--cpe-turquesa);
  background-color: var(--cpe-fondo);
  text-decoration: none;
}

.cpe-paypal-button i {
  margin-right: 8px;
  color: var(--cpe-turquesa);
}

/* Redes sociales */
.cpe-social-section {
  padding: 40px 0;
  background-color: var(--cpe-fondo);
  border-bottom: 1px solid var(--cpe-gris-border);
}

.cpe-social-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--cpe-texto);
  font-weight: 500;
}

.cpe-social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.cpe-social-card {
  background-color: var(--cpe-fondo-claro);
  border: 1px solid var(--cpe-gris-border);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.2s ease;
  text-decoration: none;
  color: var(--cpe-texto);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cpe-social-card:hover {
  transform: translateY(-3px);
  border-color: var(--cpe-turquesa);
}

.cpe-social-card i {
  font-size: 2rem;
}

.cpe-social-card span {
  font-size: 0.9rem;
  font-weight: 500;
}

.cpe-social-card.facebook:hover { border-color: #1877f2; }
.cpe-social-card.facebook:hover i { color: #1877f2; }
.cpe-social-card.instagram:hover { border-color: #e4405f; }
.cpe-social-card.instagram:hover i { color: #e4405f; }
.cpe-social-card.whatsapp:hover { border-color: #25D366; }
.cpe-social-card.whatsapp:hover i { color: #25D366; }
.cpe-social-card.tripadvisor:hover { border-color: #00af87; }
.cpe-social-card.tripadvisor:hover i { color: #00af87; }
.cpe-social-card.getyourguide:hover { border-color: #fa5636; }
.cpe-social-card.getyourguide:hover i { color: #fa5636; }
.cpe-social-card.tourradar:hover { border-color: #00a1e4; }
.cpe-social-card.tourradar:hover i { color: #00a1e4; }

/*======================================
//--//-->   BOTONES FLOTANTES
======================================*/
.floating-btn7 {
  position: fixed;
  top: 90%;
  right: 20px;
  transform: translateY(-50%);
  background: #02A19C;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  padding: 12px 18px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: background 0.3s;
}

.floating-btn7:hover {
  background: #1c1c1c;
}

.contact-panel7 {
  position: fixed;
  top: 0;
  right: -400px;
  width: 350px;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 10px rgba(0,0,0,0.2);
  padding: 30px 20px;
  transition: right 0.4s ease;
  z-index: 9998;
  overflow-y: auto;
}

#contact-toggle:checked ~ .contact-panel7 {
  right: 0;
}

.contact-panel7 h2 {
  margin-bottom: 15px;
  color: #02A19C;
  text-align: center;
}

.contact-panel7 input,
.contact-panel7 textarea,
.contact-panel7 select {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-panel7 button {
  width: 100%;
  background: #02A19C;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}

.contact-panel7 button:hover {
  background: #1c1c1c;
}

.contact-img7 {
  margin-top: 20px;
  text-align: center;
}

.contact-img7 img {
  max-width: 100%;
  height: 100px;
}

.contact-info7 {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #333;
}

.contact-info7 h3,
.contact-info7 p {
  display: block;
  width: 100%;
  margin: 5px 0;
  text-align: center;
}

/* WhatsApp flotante */
.whatsapp-container {
  position: fixed;
  bottom: 140px;
  right: 20px;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

.whatsapp-float {
  width: 55px;
  height: 55px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
  pointer-events: none;
}

.whatsapp-chat {
  width: 280px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  position: absolute;
  bottom: 70px;
  right: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.whatsapp-float.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.whatsapp-chat.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.chat-header {
  background: #25d366;
  color: white;
  padding: 12px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-chat {
  cursor: pointer;
}

.chat-body {
  padding: 12px;
  background: #f0f0f0;
}

.bot-message {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
}

.chat-footer {
  display: flex;
  align-items: center;
  padding: 8px;
  gap: 6px;
  width: 100%;
}

.chat-footer input {
  flex: 1;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.chat-footer button {
  background: #25d366;
  color: white;
  border: none;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
}

/*======================================
//--//-->   FOOTER
======================================*/
.section-footer {
  padding-top: 60px;
  margin-top: 60px;
  background: #262626;
  width: 100%;
  clear: both;
}

.section-footer ul {
  line-height: 2;
}

.section-footer .item-list-a i {
  font-size: 18px;
  padding-right: 4px;
  color: #02A19C;
}

.section-footer .widget-a .w-title-a {
  margin-bottom: 1rem;
  color: #ffffff;
}

footer {
  background: #262626;
  text-align: center;
  padding: 30px 0;
  width: 100%;
  clear: both;
}

footer .copyright-footer {
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

footer .credits {
  font-size: 14px;
}

/*======================================
//--//-->   RESPONSIVE
======================================*/
@media (max-width: 900px) {
  .cpe-booking-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .cpe-payment-cards {
    order: -1;
  }

  .cpe-form-column {
    padding: 25px 20px;
  }
}

@media (max-width: 768px) {
  .intro-single {
    padding-top: 9rem;
  }
  
  .intro-single .title-single-box .title-single {
    font-size: 1.8rem;
  }
  
  .cpe-social-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .cpe-form-grid {
    grid-template-columns: 1fr;
  }

  .cpe-social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}















/* ===== CORRECCIÓN FINAL Y DEFINITIVA ===== */

/* 1. ELIMINAR FONDO OSCuro DETRÁS DEL FORMULARIO */
.cpe-contact-section {
  background-color: #f5f5f5 !important; /* Fondo gris claro */
  border-top: 1px solid #e0e0e0 !important;
  border-bottom: 1px solid #e0e0e0 !important;
  padding: 60px 0 !important;
  width: 100% !important;
  clear: both !important;
}

/* 2. FORMULARIO EN BLANCO (fondo blanco) */
.cpe-form-column {
  background-color: #ffffff !important;
  border: 1px solid #e0e0e0 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.cpe-form-title {
  color: #333333 !important;
  border-bottom: 2px solid #02A19C !important;
}

.cpe-form-column input,
.cpe-form-column select,
.cpe-form-column textarea {
  background-color: #f9f9f9 !important;
  border: 1px solid #e0e0e0 !important;
  color: #333333 !important;
}

.cpe-form-column input::placeholder,
.cpe-form-column textarea::placeholder {
  color: #999999 !important;
}

.cpe-form-column select {
  color: #333333 !important;
}

.cpe-form-column select option {
  background-color: #ffffff !important;
  color: #333333 !important;
}

.cpe-form-column button {
  background-color: #02A19C !important;
  color: #ffffff !important;
  border: none !important;
}

.cpe-form-column button:hover {
  background-color: #028a86 !important;
}

/* 3. TARJETAS DE PAGO EN BLANCO */
.cpe-payment-card {
  background-color: #ffffff !important;
  border: 1px solid #e0e0e0 !important;
  color: #333333 !important;
}

.cpe-payment-header {
  border-bottom: 1px solid #e0e0e0 !important;
}

.cpe-payment-header i {
  color: #02A19C !important;
}

.cpe-payment-header h3 {
  color: #333333 !important;
}

.cpe-payment-content {
  color: #666666 !important;
}

.cpe-payment-content .cpe-account-number {
  background-color: #f5f5f5 !important;
  color: #333333 !important;
  border-left: 3px solid #02A19C !important;
}

.cpe-payment-content .cpe-highlight {
  color: #02A19C !important;
}

/* 4. BOTÓN PAYPAL EN BLANCO */
.cpe-paypal-button {
  background-color: #f5f5f5 !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.cpe-paypal-button:hover {
  border-color: #02A19C !important;
  color: #02A19C !important;
}

.cpe-paypal-button i {
  color: #02A19C !important;
}

/* 5. REDES SOCIALES EN BLANCO */
.cpe-social-section {
  background-color: #ffffff !important;
  border-bottom: 1px solid #e0e0e0 !important;
}

.cpe-social-title {
  color: #333333 !important;
}

.cpe-social-card {
  background-color: #f9f9f9 !important;
  border: 1px solid #e0e0e0 !important;
  color: #333333 !important;
}

.cpe-social-card:hover {
  border-color: #02A19C !important;
}

.cpe-social-card i {
  color: #666666 !important;
}

.cpe-social-card:hover i {
  color: #02A19C !important;
}

/* 6. ICONO DE TRIPADVISOR */
.cpe-social-card.tripadvisor i {
  font-family: 'Font Awesome 6 Brands' !important;
  font-weight: 400 !important;
}

.cpe-social-card.tripadvisor i::before {
  content: "\f262" !important;
  font-family: 'Font Awesome 6 Brands' !important;
}

/* 7. FOOTER CON ANCHO COMPLETO - CORREGIDO */
/* ===== CORRECCIÓN URGENTE PARA FOOTER CON ANCHO COMPLETO ===== */

/* Hacer que el fondo negro se extienda a todo el ancho */
.section-footer {
  background: #262626 !important;
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}

/* El contenedor interior mantiene el ancho limitado para el texto */
.section-footer .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  width: 100% !important;
  background: transparent !important; /* Fondo transparente para ver el negro de afuera */
}

/* Para el footer inferior */
footer {
  background: #262626 !important;
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}

footer .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  width: 100% !important;
  background: transparent !important;
}

/* Asegurar que las filas y columnas se vean bien */
.section-footer .row {
  margin: 0 !important;
  width: 100% !important;
}

/* Mantener los textos con los estilos originales */
.section-footer .widget-a .w-title-a,
.section-footer .widget-a p,
.section-footer .widget-a ul li,
.section-footer .widget-a ul li a,
footer .copyright-footer p,
footer .credits {
  color: #ffffff !important;
}

.section-footer .item-list-a i {
  color: #02A19C !important;
}

/* Responsive */
@media (max-width: 768px) {
  .section-footer,
  footer {
    width: 100vw !important;
    margin-left: -50vw !important;
    left: 50% !important;
  }
}













/* ===== ICONOS DE SIMPLE ICONS PARA REDES SOCIALES ===== */

/* Estilos base para los iconos SVG */
.cpe-social-card img {
  width: 2rem;
  height: 2rem;
  transition: all 0.2s ease;
}

/* TripAdvisor - Color oficial #00af87 */
.cpe-social-card.tripadvisor img {
  filter: none; /* Usa el color oficial */
}

.cpe-social-card.tripadvisor:hover img {
  filter: brightness(1.1); /* Efecto sutil al hover */
}

/* GetYourGuide - Color oficial #fa5636 */
.cpe-social-card.getyourguide img {
  filter: none;
}

.cpe-social-card.getyourguide:hover img {
  filter: brightness(1.1);
}

/* TourRadar - Color oficial #00a1e4 */
.cpe-social-card.tourradar img {
  filter: none;
}

.cpe-social-card.tourradar:hover img {
  filter: brightness(1.1);
}

/* Opción alternativa: Si quieres todos los iconos en blanco/gris */
.cpe-social-card img.icon-white {
  filter: brightness(0) invert(1);
}

.cpe-social-card:hover img.icon-white {
  filter: brightness(0) invert(0.8);
}













/* ===== ICONOS DE REDES SOCIALES ===== */

/* Estilo base para todos los iconos (gris) */
.cpe-social-card i,
.cpe-social-card img {
  transition: all 0.3s ease;
  filter: brightness(0) invert(0.6); /* Gris medio */
  opacity: 0.8;
}

/* Hover para todos - vuelven a su color original */
.cpe-social-card:hover i,
.cpe-social-card:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.1);
}

/* Colores específicos para cada red al hacer hover */
.cpe-social-card.facebook:hover i { color: #1877f2; }
.cpe-social-card.instagram:hover i { color: #e4405f; }
.cpe-social-card.whatsapp:hover i { color: #25D366; }
.cpe-social-card.getyourguide:hover i { color: #fa5636; }
.cpe-social-card.tourradar:hover i { color: #00a1e4; }

/* TripAdvisor - gris por defecto, verde al hover */
.cpe-social-card.tripadvisor img {
  filter: brightness(0) invert(0.6); /* Gris */
}

.cpe-social-card.tripadvisor:hover img {
  filter: none; /* Muestra el color original del SVG */
  /* O si prefieres un verde específico: */
  /* filter: brightness(0) saturate(100%) invert(34%) sepia(98%) saturate(1589%) hue-rotate(130deg) brightness(96%) contrast(101%); */
}

/* Tamaño consistente */
.cpe-social-card i {
  font-size: 2rem;
}

.cpe-social-card img {
  width: 2rem;
  height: 2rem;
}






/* ===== SECCIÓN DE PAGOS - AISLADA ===== */
/* Este CSS solo afecta a la sección de pagos, no toca el menú */

.pagos-section {
    width: 100%;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

.pagos-section .pagos-container {
    max-width: 800px; /* Ancho máximo reducido a 800px para una columna */
    margin: 0 auto;
}

.pagos-section .pagos-titulo {
    text-align: center;
    font-size: 2.5rem;
    color: #02A19C;
    margin-bottom: 30px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.pagos-section .pagos-titulo span {
    color: #02A19C;
    position: relative;
    display: inline-block;
}

.pagos-section .pagos-titulo span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: #ff9933;
    opacity: 0.5;
    z-index: -1;
}

/* ===== PAYMENT NOTES ===== */
.payment-notes {
    margin-bottom: 40px;
}

.note-card {
    background: #f5f5f5; /* Fondo gris claro para mejor contraste */
    border-left: 4px solid #02A19C;
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.note-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #02A19C, #ff0080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.note-icon i {
    color: white;
    font-size: 1.2rem;
}

.note-content h4 {
    color: #02A19C;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.note-content p {
    color: #1c1c1c; /* Texto negro */
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.note-content strong {
    color: #02A19C; /* Turquesa para los números de teléfono */
    font-weight: 600;
}

/* ===== PAYMENT GRID - SINGLE COLUMN ===== */
.pagos-section .pagos-grid-single {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Tarjetas base - FONDO OSCURO #262626 */
.pagos-section .pago-card {
    background: #262626;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

/* Efecto de borde degradado */
.pagos-section .pago-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #02A19C, #ff0080, #ff9933);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pagos-section .pago-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(2, 161, 156, 0.3);
    border-color: #02A19C;
}

.pagos-section .pago-card:hover::before {
    transform: scaleX(1);
}

/* Icono circular */
.pagos-section .card-icono {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #02A19C, #ff0080, #ff9933);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(255, 0, 128, 0.4);
    transition: all 0.3s ease;
}

.pagos-section .pago-card:hover .card-icono {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 15px 35px rgba(255, 153, 51, 0.5);
}

.pagos-section .card-icono i {
    font-size: 2.8rem;
    color: white;
}

/* Título */
.pagos-section .card-titulo {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.pagos-section .card-titulo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #02A19C, #ff0080);
    border-radius: 3px;
}

/* Contenido - Mejor organizado */
.pagos-section .card-contenido {
    margin-bottom: 25px;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.info-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: left;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    width: 40%;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    font-size: 0.95rem;
}

.info-value {
    width: 60%;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
}

.info-value.highlight {
    color: #02A19C;
    font-weight: 600;
    background: rgba(2, 161, 156, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

/* Texto de copiar */
.pagos-section .card-copy {
    font-size: 0.95rem;
    color: #02A19C;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background: rgba(2, 161, 156, 0.2);
    border-radius: 40px;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.pagos-section .pago-card:hover .card-copy {
    background: rgba(255, 0, 128, 0.3);
    color: #ff0080;
    gap: 12px;
}

/* Tarjeta PayPal */
.pagos-section .card-paypal {
    background: linear-gradient(135deg, #003087, #009cde);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
}

.pagos-section .card-paypal::before {
    background: linear-gradient(90deg, #ff0080, #ff9933, #02A19C);
}

.pagos-section .card-paypal .card-icono {
    background: white;
}

.pagos-section .card-paypal .card-icono i {
    color: #003087;
    font-size: 3rem;
}

.pagos-section .card-paypal .card-titulo {
    color: white;
}

.pagos-section .card-paypal .card-titulo::after {
    background: linear-gradient(90deg, #ff0080, #ff9933);
}

.pagos-section .card-paypal .paypal-info {
    margin-bottom: 20px;
}

.pagos-section .card-paypal .paypal-info p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
}

.pagos-section .card-paypal .paypal-logo-grande {
    font-size: 2.2rem;
    margin: 10px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255,255,255,0.2);
    padding: 18px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.pagos-section .card-paypal .paypal-logo-grande i {
    font-size: 2.8rem;
    color: #ff0080;
}

.pagos-section .card-paypal .paypal-note {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 18px 15px;
    margin-top: 15px;
    border-left: 4px solid #ff9933;
    text-align: left;
}

.pagos-section .card-paypal .paypal-note p {
    color: white;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.pagos-section .card-paypal .paypal-note i {
    color: #ff9933;
    margin-right: 5px;
}

.pagos-section .card-paypal .paypal-note strong {
    color: #ff9933;
}

.pagos-section .card-paypal .card-copy {
    background: rgba(255,255,255,0.2);
    color: white;
}

.pagos-section .card-paypal .card-copy:hover {
    background: rgba(255, 0, 128, 0.4);
}

/* Confirmation Note */
.confirmation-note {
    background: #f5f5f5; /* Fondo gris claro */
    border-radius: 50px;
    padding: 20px 30px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #02A19C;
    justify-content: center;
    flex-wrap: wrap;
}

.confirmation-note i {
    color: #02A19C;
    font-size: 2rem;
}

.confirmation-note p {
    color: #1c1c1c; /* Texto negro */
    font-size: 1rem;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.confirmation-note strong {
    color: #02A19C; /* Turquesa para el nombre de la empresa */
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #262626;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 9999;
    border-left: 4px solid #02A19C;
    font-family: 'Poppins', sans-serif;
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-notification i {
    color: #ff9933;
    font-size: 1.3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .pagos-section .pagos-container {
        max-width: 100%;
    }
    
    .pagos-section .pagos-titulo {
        font-size: 2rem;
    }
    
    .pagos-section .pago-card {
        padding: 25px 20px;
    }
    
    .info-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .info-label, .info-value {
        width: 100%;
    }
    
    .confirmation-note {
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .pagos-section {
        padding: 40px 15px;
    }
    
    .note-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .note-icon {
        margin: 0 auto;
    }
    
    .pagos-section .card-icono {
        width: 80px;
        height: 80px;
    }
    
    .pagos-section .card-icono i {
        font-size: 2.2rem;
    }
    
    .pagos-section .card-titulo {
        font-size: 1.5rem;
    }
}









/* ===== BOTÓN DE MÉTODOS DE PAGO ===== */
.boton-pagos-container {
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
    padding: 0 20px;
}

/* Botón principal */
.boton-pagos {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #02A19C, #ff0080, #ff9933);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 18px 40px;
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(2, 161, 156, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.boton-pagos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff9933, #ff0080, #02A19C);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.boton-pagos:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 0, 128, 0.5);
    color: white;
}

.boton-pagos:hover::before {
    opacity: 1;
}

.boton-pagos:active {
    transform: translateY(0) scale(0.98);
}

.boton-icono {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.boton-pagos:hover .boton-icono {
    transform: scale(1.2);
}

.boton-subtexto {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    margin-top: 15px;
    letter-spacing: 1px;
}

/* ===== VERSIÓN ELEGANTE ===== */
.boton-pagos-elegante {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: transparent;
    color: #02A19C;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #02A19C;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.boton-pagos-elegante i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.boton-pagos-elegante::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #02A19C, #ff0080);
    transition: left 0.4s ease;
    z-index: -1;
}

.boton-pagos-elegante:hover {
    color: white;
    border-color: transparent;
}

.boton-pagos-elegante:hover::before {
    left: 0;
}

.boton-pagos-elegante:hover i:last-child {
    transform: translateX(5px);
}

.boton-pagos-elegante:hover i:first-child {
    transform: scale(1.1);
}

/* ===== ANIMACIÓN DE PULSO ===== */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(2, 161, 156, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(2, 161, 156, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(2, 161, 156, 0);
    }
}

.boton-pagos-pulse {
    animation: pulse 2s infinite;
}

/* ===== VERSIÓN CON BORDE GRADIENTE ===== */
.boton-pagos-gradiente {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #262626;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.boton-pagos-gradiente::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #02A19C, #ff0080, #ff9933);
    border-radius: 52px;
    z-index: -2;
}

.boton-pagos-gradiente::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #262626;
    border-radius: 50px;
    z-index: -1;
    transition: all 0.3s ease;
}

.boton-pagos-gradiente:hover {
    color: white;
    transform: scale(1.05);
}

.boton-pagos-gradiente:hover::after {
    opacity: 0.9;
}

.boton-pagos-gradiente i {
    color: #ff9933;
    transition: transform 0.3s ease;
}

.boton-pagos-gradiente:hover i {
    transform: scale(1.2);
    color: #02A19C;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .boton-pagos {
        font-size: 1.1rem;
        padding: 15px 30px;
    }
    
    .boton-pagos-elegante {
        font-size: 1.1rem;
        padding: 14px 30px;
    }
    
    .boton-pagos-gradiente {
        font-size: 1rem;
        padding: 14px 25px;
    }
    
    .boton-icono {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .boton-pagos {
        font-size: 1rem;
        padding: 12px 25px;
        gap: 8px;
        width: 100%;
    }
    
    .boton-pagos-elegante {
        font-size: 1rem;
        padding: 12px 20px;
        width: 100%;
    }
    
    .boton-pagos-gradiente {
        font-size: 0.95rem;
        padding: 12px 20px;
        width: 100%;
    }
    
    .boton-subtexto {
        font-size: 0.85rem;
    }
}