
/*
Theme Name: Stetic Siempre Bella
Theme URI: https://steticasiemprebella.com
Author: Tsxsoft
Author URI: https://tsx-soft.com
Description: Tema personalizado para centro de estética Stetic Siempre Bella
Version: 1.0.0
License: Private
Text Domain: stetic-siempre-bella
*/


/* ===== RESET Y VARIABLES ===== */


:root {
  --blanco-puro: #FFFFFF;
  --hueso: #FFF9F5;
  --beige-suave: #F7EEE9;
  --rosado-polvo: #EAC0BD;
  --terracota-claro: #D9A9A0;
  --gris-cálido: #7A6A65;
  --grafito: #4A403D;
  --oro-rosado: #C7A1A0;
  --sombra-sutil: rgba(90, 70, 60, 0.06);
  --sombra-media: rgba(217, 169, 160, 0.2);
  --fuente-titulos: 'Playfair Display', serif;
  --fuente-cuerpo: 'Montserrat', sans-serif;
}


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



body {
  font-family: var(--fuente-cuerpo);
  background-color: var(--hueso);
  color: var(--grafito);
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/*

/* ===== BOTÓN FLOTANTE DE WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(145deg, #25D366, #128C7E);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.whatsapp-button i {
  font-size: 38px;
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
  background: linear-gradient(145deg, #128C7E, #0e7a6b);
}

.whatsapp-button:hover i {
  transform: rotate(5deg);
}

/* Tooltip / Mensaje flotante */
.whatsapp-tooltip {
  position: absolute;
  right: 80px;
  background: var(--grafito, #4A403D);
  color: white;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  pointer-events: none;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 8px 0 8px 8px;
  border-style: solid;
  border-color: transparent transparent transparent var(--grafito, #4A403D);
}

.whatsapp-button:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 90px;
}

/* Animación de pulso */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float .whatsapp-button {
  animation: pulse 2s infinite;
}

.whatsapp-float .whatsapp-button:hover {
  animation: none;
}

/* Responsive para móviles */
@media screen and (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-button {
    width: 60px;
    height: 60px;
  }
  
  .whatsapp-button i {
    font-size: 32px;
  }
  
  .whatsapp-tooltip {
    display: none; /* Ocultar tooltip en móvil */
  }
}

/*==== BOTON DE WHATSAPP FIN ====*/

/* ===== HEADER ===== */
header {
  background-color: var(--blanco-puro);
  box-shadow: 0 5px 25px var(--sombra-sutil);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.8rem 0;
}

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

.logo {
  font-family: var(--fuente-titulos);
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--terracota-claro);
  text-shadow: 0 2px 4px rgba(217, 169, 160, 0.1);
}

.logo span {
  color: var(--gris-cálido);
  font-weight: 400;
  font-size: 1.5rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
  font-weight: 500;
  font-size: 1.05rem;
}

.nav-menu a {
  padding: 0.5rem 0;
  position: relative;
  color: var(--grafito);
  transition: color 0.25s;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--rosado-polvo), var(--terracota-claro));
  transition: width 0.3s ease-in-out;
}

.nav-menu a:hover {
  color: var(--terracota-claro);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a.active {
  color: var(--terracota-claro);
  font-weight: 600;
}

.nav-menu a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--gris-cálido);
  cursor: pointer;
}

/* ===== HERO (Página de inicio) ===== */
.hero {
  background: linear-gradient(105deg, var(--beige-suave) 20%, #fdf7f4 80%);
  padding: 3.5rem 0 4rem;
  border-bottom: 1px solid rgba(217, 169, 160, 0.15);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.5rem;
}

.hero-info h1 {
  font-family: var(--fuente-titulos);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--grafito);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-info h1 i {
  color: var(--terracota-claro);
  font-size: 2.8rem;
  margin-right: 0.3rem;
}

.highlight {
  color: var(--terracota-claro);
  font-style: italic;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--gris-cálido);
  margin-bottom: 2rem;
  font-weight: 300;
  border-left: 5px solid var(--rosado-polvo);
  padding-left: 1.3rem;
}

.hero-imagen i {
  font-size: 16rem;
  background: radial-gradient(circle, #f5dedb 20%, #ecd0cb 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 10px 15px rgba(122, 106, 101, 0.1));
}

/* ===== PAGE HERO (para páginas internas) ===== */
.page-hero {
  background: linear-gradient(145deg, var(--beige-suave), #fcf1ed);
  padding: 3rem 0;
  text-align: center;
  margin-bottom: 2rem;
}

.page-hero h1 {
  font-family: var(--fuente-titulos);
  font-size: 2.8rem;
  color: var(--grafito);
  margin-bottom: 0.8rem;
}

.page-hero p {
  font-size: 1.2rem;
  color: var(--gris-cálido);
  max-width: 700px;
  margin: 0 auto;
}

/* ===== BOTONES ===== */
.btn {
  display: inline-block;
  background: linear-gradient(145deg, var(--terracota-claro), #c8948b);
  color: white;
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  box-shadow: 0 8px 18px rgba(217, 169, 160, 0.3);
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.btn:hover {
  background: linear-gradient(145deg, #c8948b, var(--terracota-claro));
  box-shadow: 0 10px 22px rgba(217, 169, 160, 0.45);
  transform: translateY(-3px);
  color: white;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--terracota-claro);
  color: var(--terracota-claro);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--terracota-claro);
  color: white;
}

.btn-full {
  width: 100%;
  background: linear-gradient(145deg, #7A6A65, #5f534e);
}

.btn-link {
  color: var(--terracota-claro);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}

.btn-link:hover {
  gap: 0.8rem;
}

/* ===== SECCIONES GENERALES ===== */
section {
  padding: 4rem 0;
}

.section-title {
  font-family: var(--fuente-titulos);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--grafito);
  text-align: center;
  margin-bottom: 1rem;
}

.section-sub {
  text-align: center;
  color: var(--gris-cálido);
  font-weight: 300;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  border-bottom: 2px dashed var(--rosado-polvo);
  padding-bottom: 0.8rem;
}

/* ===== FEATURES (Inicio) ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.feature-card {
  background: var(--blanco-puro);
  padding: 2.5rem 1.8rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 15px 30px var(--sombra-sutil);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-card i {
  font-size: 2.8rem;
  color: var(--terracota-claro);
  margin-bottom: 1.2rem;
}

/* ===== SOBRE NOSOTROS (página completa) ===== */
.about-full {
  padding-top: 1rem;
}

.about-wrapper {
  background: var(--blanco-puro);
  border-radius: 48px 16px 48px 16px;
  padding: 3.5rem;
  box-shadow: 0 30px 50px var(--sombra-sutil);
}

.about-intro-full {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: center;
}

.about-lead {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.quote-icon {
  font-size: 2rem;
  color: var(--rosado-polvo);
  margin-bottom: 0.5rem;
}

.about-babor-spotlight {
  background: linear-gradient(145deg, #fcf1ee, #fff6f3);
  padding: 2rem;
  border-radius: 32px;
  text-align: center;
  border-left: 8px solid var(--terracota-claro);
}

.about-babor-spotlight i {
  font-size: 3rem;
  color: var(--terracota-claro);
}

.about-babor-spotlight h3 {
  font-size: 2rem;
  font-family: var(--fuente-titulos);
  margin: 0.8rem 0;
}

.badge {
  background: var(--terracota-claro);
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
}

.about-manicure-spotlight {
  background: var(--rosado-polvo);
  border-radius: 60px 12px 60px 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.manicure-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--grafito);
}

.manicure-content i {
  font-size: 3rem;
}

.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-bottom: 3rem;
}

.about-card {
  background: #fffaf7;
  padding: 2rem 1.3rem;
  border-radius: 24px;
  text-align: center;
  border: 1px solid rgba(234, 192, 189, 0.2);
  transition: all 0.3s;
}

.about-card:hover {
  border-color: var(--rosado-polvo);
  transform: translateY(-5px);
}

.about-card i {
  font-size: 2.2rem;
  color: var(--terracota-claro);
  margin-bottom: 1rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

.values-list {
  list-style: none;
}

.values-list li {
  padding: 0.6rem 0;
  border-bottom: 1px dashed #eedad5;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.values-list i {
  color: var(--terracota-claro);
}

.values-quote {
  background: #ffeae6;
  padding: 2rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.values-quote i {
  font-size: 2.5rem;
  color: #c2847a;
  margin-bottom: 0.8rem;
}

.values-quote blockquote {
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 450;
  color: #634e48;
}

.about-footer-quote {
  background: #fff3f1;
  border-radius: 80px 20px 80px 20px;
  padding: 2rem;
  text-align: center;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #634e48;
}

/* ===== SERVICIOS (tabs) ===== */
.services-tabs-container {
  background: var(--blanco-puro);
  border-radius: 48px;
  padding: 2.5rem;
  box-shadow: 0 25px 45px var(--sombra-sutil);
}

.tabs-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--beige-suave);
  padding-bottom: 1.2rem;
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 0.9rem 1.8rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gris-cálido);
  border-radius: 50px;
  transition: all 0.25s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.tab-btn i {
  font-size: 1.2rem;
  color: var(--terracota-claro);
}

.tab-btn.active {
  background: linear-gradient(145deg, var(--rosado-polvo), var(--terracota-claro));
  color: white;
}

.tab-btn.active i {
  color: white;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-pane.active {
  display: block;
}

.service-detailed {
  padding: 1rem 0;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-header i {
  font-size: 2.5rem;
  color: var(--terracota-claro);
}

.service-header h2 {
  font-family: var(--fuente-titulos);
  font-size: 2rem;
}

.service-diagnostico {
  background: #fff9f5;
  padding: 1.8rem;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  border-left: 6px solid var(--terracota-claro);
}

.service-diagnostico i {
  font-size: 2.5rem;
  color: var(--terracota-claro);
}

.service-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  list-style: none;
  margin: 1.5rem 0;
}

.service-list-grid li {
  background: #fef9f7;
  padding: 0.8rem 1rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid #ffebe7;
}

.service-list-grid i {
  color: var(--terracota-claro);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.benefit-item {
  background: white;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===== PRODUCTOS ===== */
.product-category {
  margin-bottom: 4rem;
}

.category-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--rosado-polvo);
}

.category-title i {
  font-size: 2rem;
  color: var(--terracota-claro);
}

.category-title h3 {
  font-family: var(--fuente-titulos);
  font-size: 2rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--blanco-puro);
  border-radius: 24px;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 10px 25px var(--sombra-sutil);
  transition: all 0.3s;
  border: 1px solid rgba(234, 192, 189, 0.2);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--rosado-polvo);
  box-shadow: 0 20px 35px var(--sombra-media);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--rosado-polvo), var(--terracota-claro));
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-icon {
  font-size: 2.2rem;
  color: var(--terracota-claro);
  margin-bottom: 1rem;
}

.product-name {
  font-family: var(--fuente-titulos);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.advent-card {
  background: linear-gradient(145deg, #f1e2df, #fceae7);
  border: 2px solid var(--oro-rosado);
}

/* ===== CONTACTO ===== */
.contact-grid-full {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info-card, .contact-form-card {
  background: var(--blanco-puro);
  padding: 2.5rem;
  border-radius: 32px;
  box-shadow: 0 25px 45px var(--sombra-sutil);
}

.contact-detail-item {
  display: flex;
  gap: 1.2rem;
  margin: 1.8rem 0;
}

.contact-detail-item i {
  font-size: 1.6rem;
  color: var(--terracota-claro);
  width: 40px;
  text-align: center;
}

.contact-detail-item h4 {
  margin-bottom: 0.3rem;
  color: var(--grafito);
}

.contact-detail-item a {
  color: var(--gris-cálido);
  transition: color 0.2s;
}

.contact-detail-item a:hover {
  color: var(--terracota-claro);
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid #edd9d4;
  border-radius: 50px;
  font-family: var(--fuente-cuerpo);
  background: var(--hueso);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--terracota-claro);
  box-shadow: 0 0 0 3px rgba(217, 169, 160, 0.15);
}

.contact-form textarea {
  border-radius: 24px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.form-checkbox input {
  width: auto;
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--grafito);
  color: #f1e9e6;
  padding: 2.5rem 0;
  margin-top: 2rem;
}

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

.footer-logo {
  font-family: var(--fuente-titulos);
  font-size: 1.9rem;
  color: var(--rosado-polvo);
}

.social i {
  font-size: 1.8rem;
  margin-left: 1.2rem;
  color: #ecd0cb;
  transition: color 0.2s;
}

.social i:hover {
  color: var(--rosado-polvo);
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 992px) {
  .hero-info h1 { font-size: 2.7rem; }
  .hero-imagen i { font-size: 12rem; }
  .about-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro-full { grid-template-columns: 1fr; }
  .contact-grid-full { grid-template-columns: 1fr; }
}

@media screen and (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1.8rem 0 1rem;
    background-color: var(--blanco-puro);
    border-top: 1px solid var(--beige-suave);
    margin-top: 1rem;
  }
  .nav-menu.active { display: flex; }
  
  .hero-grid { grid-template-columns: 1fr; }
  .hero-imagen { grid-row: 1; }
  
  .features-grid { grid-template-columns: 1fr; }
  .about-cards-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-content { flex-direction: column; gap: 1.3rem; text-align: center; }
}

@media screen and (max-width: 480px) {
  .logo { font-size: 1.6rem; }
  .hero-info h1 { font-size: 2rem; }
  .section-title { font-size: 2rem; }
}

/* Estilos para el footer--PARA EL PIE DE PAGINA FOOTER */
.site-footer {
  background-color: #4A403D;  /* Color de fondo claro - cámbialo según tu diseño */
  padding: 40px 0;
  margin-top: 40px;
  border-top: 1px solid #ddd;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* 3 columnas iguales */
  gap: 30px;
  padding: 0 20px;
}

.footer-col {
  text-align: left;
}

.footer-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #e9dfdf;
  text-transform: uppercase;
}

.footer-content p {
  margin: 10px 0;
  line-height: 1.6;
  color: #ece7e7;
}

.footer-content a {
  color: #f0ecec;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-content a:hover {
  color: #000;  /* Cambia al color que prefieras */
  text-decoration: underline;
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;  /* En móviles, 1 columna */
    text-align: center;
    gap: 30px;
  }
  
  .footer-col {
    text-align: center;
  }
}


/* SOLO PARA LA FILA INFERIOR - NO AFECTA TU FOOTER EXISTENTE */
.footer-bottom-row {
  background-color: #1a1a1a;  /* Color oscuro */
  padding: 15px 0;
  width: 100%;
  clear: both;  /* Asegura que esté debajo de todo */
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-col {
  flex: 1;  /* Las 3 columnas del mismo tamaño */
}

.footer-logo {
  color: white;
  font-weight: bold;
}

.copyright {
  color: #cccccc;
  margin: 0;
  text-align: center;
}

.social {
  display: flex;
  gap: 15px;
  justify-content: flex-end;  /* Redes a la derecha */
}

.social a {
  color: white;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .social {
    justify-content: center;
  }
}

/* CSS para la fila únicaBOTONES DE PRODUCTOS XT */
.fila-unica {
  display: flex;
  flex-wrap: nowrap; /* Fuerza a que no se envuelvan */
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
  overflow-x: auto; /* Scroll horizontal si no caben */
  padding: 10px 0;
}

/* Estilo para los botones dentro de la fila única */
.fila-unica .tab-btn.filter-btn {
  flex-shrink: 0; /* Evita que se encojan */
  padding: 10px 16px;
  font-size: 13px;
  white-space: nowrap; /* Evita que el texto se rompa */
}

/* Para pantallas pequeñas */
@media (max-width: 768px) {
  .fila-unica {
    gap: 5px;
  }
  
  .fila-unica .tab-btn.filter-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* Para que el mapa sea responsive MAPA XT */
.map-responsive {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* Relación de aspecto 16:9 (450/800 = 0.5625) */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-info {
  text-align: center;
  margin-top: 20px;
}

.address {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
}

.address i {
  color: #6c5ce7;
  margin-right: 8px;
}

.map-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-small {
  padding: 10px 20px;
  background: linear-gradient(145deg, #6c5ce7, #a463f5);
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

.btn-small i {
  font-size: 16px;
}

@media (max-width: 768px) {
  .map-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-small {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}





/* ===== SLIDESHOW ===== */
.slideshow-container {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Slides de fondo */
.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.slide-background.active {
  opacity: 1;
}

/* Overlay oscuro */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.2) 100%);
  z-index: 2;
}

/* Contenedor del texto - ¡ESTA PARTE ES LA CLAVE! */
.hero .container {
  position: relative;
  z-index: 10 !important; /* Forzar que el texto esté por encima */
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1rem;
  color: white;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.5rem;
}

.hero-info {
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  position: relative;
  z-index: 15;
}

.hero-info h1 {
  font-family: var(--fuente-titulos);
  font-size: 3.2rem;
  font-weight: 600;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-info h1 i {
  color: rgba(255,255,255,0.9);
  font-size: 2.8rem;
  margin-right: 0.3rem;
}

.highlight {
  color: var(--rosado-polvo);
  font-style: italic;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.hero-desc {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 2rem;
  font-weight: 400;
  border-left: 5px solid var(--rosado-polvo);
  padding-left: 1.3rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  background: linear-gradient(145deg, var(--terracota-claro), #c8948b);
  color: white;
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.3);
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.btn:hover {
  background: linear-gradient(145deg, #c8948b, var(--terracota-claro));
  box-shadow: 0 10px 22px rgba(0,0,0,0.4);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
  box-shadow: none;
}

.btn-outline:hover {
  background: white;
  color: var(--grafito);
  border-color: white;
}

.hero-imagen {
  text-align: center;
  z-index: 15;
  position: relative;
}

.hero-imagen i {
  font-size: 16rem;
  color: rgba(255,255,255,0.8);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

/* Flechas de navegación */
.slideshow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.3);
}

.slideshow-arrow:hover {
  background: var(--rosado-polvo);
  transform: translateY(-50%) scale(1.1);
}

.arrow-left {
  left: 20px;
}

.arrow-right {
  right: 20px;
}

/* Dots de navegación */
.slideshow-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot.active {
  background: var(--rosado-polvo);
  transform: scale(1.3);
  border-color: white;
}

.dot:hover {
  background: white;
}



/* ===== SERVICIOS EN 3 COLUMNAS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  /* 3 columnas iguales */
    gap: 25px;  /* Espacio entre columnas */
    margin: 30px 0;
}

.service-item {
    background: var(--blanco-puro);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 10px 25px var(--sombra-sutil);
    border: 1px solid rgba(234, 192, 189, 0.2);
    transition: transform 0.3s ease;
    text-align: center;  /* Centra el contenido */
    display: flex;
    flex-direction: column;
    height: 100%;  /* Para que todas las tarjetas tengan la misma altura */
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: var(--rosado-polvo);
    box-shadow: 0 15px 35px var(--sombra-media);
}

.service-item .service-subtitle {
    font-family: var(--fuente-titulos);
    color: var(--terracota-claro);
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
}

.service-item .service-subtitle i {
    color: var(--rosado-polvo);
    margin-right: 8px;
}

.service-item .service-image {
    width: 100%;
    max-width: 230px;
    height: 120px;
    object-fit: cover;  /* Mantiene la proporción sin deformar */
    border-radius: 13px;
    margin: 0 auto 12px auto;  /* Centra la imagen */
    display: block;
    box-shadow: 0 5px 12px var(--sombra-media);
}

.service-item .service-description {
    color: var(--gris-cálido);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    text-align: center;
    flex-grow: 1;  /* Para que todas las descripciones ocupen el mismo espacio */
}

/* Responsive para tablet (2 columnas) */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive para móvil (1 columna) */
@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}




/* ===== HEADER CON LOGO CENTRADO ===== */
.header-content {
    display: flex;
    align-items: center;  /* Centra verticalmente todos los elementos */
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;  /* Centra verticalmente la imagen y el texto */
    gap: 10px;  /* Espacio entre imagen y texto */
}

.logo-img {
    height: 30px;  /* Ajusta esta altura según tu logo */
    width: auto;   /* Mantiene la proporción */
    display: block;
}

.logo a {
    display: flex;
    align-items: center;  /* Centra verticalmente el texto */
    text-decoration: none;
    font-family: var(--fuente-titulos);
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--terracota-claro);
    line-height: 1;  /* Evita espacios extras */
}

.logo span {
    color: var(--gris-cálido);
    font-weight: 400;
    font-size: 1.5rem;
    margin-left: 5px;
}

/* Responsive para móvil */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;  /* Más pequeño en móvil */
    }
    
    .logo a {
        font-size: 1.5rem;
    }
    
    .logo span {
        font-size: 1.2rem;
    }
}




/* ===== PARA GALERIA DE IMAGENES ===== */
/* Sección Galería con fondo beige */


/* Sección Galería con fondo beige/rosado suave */
.gallery-section {
  padding: 80px 0;
  background: #fdf5f2;  /* Beige rosado muy suave que combina con la paleta */
  position: relative;
  overflow: hidden;
}

/* Efecto de textura sutil con los colores de la paleta */
.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(234, 192, 189, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 70% 60%, rgba(217, 169, 160, 0.1) 0%, transparent 40%),
    repeating-linear-gradient(45deg, rgba(199, 161, 160, 0.05) 0px, rgba(199, 161, 160, 0.05) 2px, transparent 2px, transparent 8px);
  pointer-events: none;
}

/* Línea decorativa superior con los nuevos colores */
.gallery-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rosado-polvo), var(--terracota-claro), var(--oro-rosado), var(--rosado-polvo));
  background-size: 300% 100%;
  animation: gradientMove 4s linear infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* Header de sección con los nuevos colores */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.section-subtitle {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--terracota-claro);
  background: rgba(234, 192, 189, 0.15);
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 15px;
  border: 1px solid rgba(217, 169, 160, 0.3);
}

.section-title {
  font-size: 2.5rem;
  color: var(--grafito);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-title span {
  color: var(--terracota-claro);
  position: relative;
  display: inline-block;
}

.section-title span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--rosado-polvo), var(--oro-rosado));
  border-radius: 3px;
}

.section-description {
  font-size: 1.1rem;
  color: var(--gris-cálido);
  max-width: 600px;
  margin: 0 auto;
}

/* Filtros de galería con los nuevos colores */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.gallery-filter {
  padding: 10px 25px;
  border: none;
  border-radius: 30px;
  background: white;
  color: var(--gris-cálido);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(217, 169, 160, 0.15);
  border: 1px solid rgba(234, 192, 189, 0.3);
}

.gallery-filter:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(217, 169, 160, 0.25);
  color: var(--grafito);
  background: var(--rosado-polvo);
  border-color: var(--terracota-claro);
}

.gallery-filter.active {
  background: linear-gradient(145deg, var(--rosado-polvo), var(--terracota-claro));
  color: var(--grafito);
  box-shadow: 0 4px 15px rgba(234, 192, 189, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 700;
}

/* Grid de galería */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(199, 161, 160, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  aspect-ratio: 4/3;
  border: 3px solid white;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(217, 169, 160, 0.3);
  border-color: var(--oro-rosado);
}

.gallery-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

/* Overlay con los nuevos colores */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(217, 169, 160, 0.4), rgba(234, 192, 189, 0.3));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--grafito);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
}

.gallery-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--grafito);
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.gallery-info p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
  color: var(--grafito);
}

.gallery-actions {
  text-align: right;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-actions {
  transform: translateY(0);
}

.gallery-btn {
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: white;
  color: var(--terracota-claro);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-btn:hover {
  background: var(--oro-rosado);
  color: white;
  transform: scale(1.1);
}

/* Botón ver más con los nuevos colores */
.gallery-more {
  text-align: center;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.btn-gallery {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background: linear-gradient(145deg, var(--rosado-polvo), var(--terracota-claro));
  color: var(--grafito);
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(217, 169, 160, 0.3);
  border: 2px solid transparent;
}

.btn-gallery:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(199, 161, 160, 0.4);
  border-color: var(--oro-rosado);
  background: linear-gradient(145deg, var(--terracota-claro), var(--oro-rosado));
  color: white;
}

.btn-gallery i {
  font-size: 1.2rem;
  color: var(--grafito);
}

.btn-gallery:hover i {
  color: white;
}

/* Lightbox adaptado con los nuevos colores */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(74, 64, 61, 0.95); /* --grafito con transparencia */
  backdrop-filter: blur(5px);
}

.lightbox.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  animation: lightboxFade 0.3s ease;
}

@keyframes lightboxFade {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 3px solid var(--oro-rosado);
}

.lightbox-caption {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  padding: 15px;
  background: linear-gradient(to top, rgba(217, 169, 160, 0.9), transparent);
  border-radius: 0 0 10px 10px;
}

.lightbox-caption h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--grafito);
}

.lightbox-caption p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
  color: var(--grafito);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(234, 192, 189, 0.3);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.lightbox-close:hover {
  transform: rotate(90deg);
  background: var(--oro-rosado);
  color: var(--grafito);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(234, 192, 189, 0.3);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--oro-rosado);
  color: var(--grafito);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }
}

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

  .section-title {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
  }

  .gallery-filter {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
    font-size: 2rem;
  }
}

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

  .btn-gallery {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/* Efectos adicionales con los nuevos colores */
.gallery-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(234, 192, 189, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Estilo para el contador de imágenes (si lo deseas) */
.gallery-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  color: var(--gris-cálido);
}

.gallery-stat {
  text-align: center;
}

.gallery-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--terracota-claro);
  line-height: 1;
}

.gallery-stat-label {
  font-size: 0.9rem;
  color: var(--gris-cálido);
  text-transform: uppercase;
  letter-spacing: 1px;
}


.service-list-detailed {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}


/* Filtros de galería con los nuevos colores */
.service-list-detailed li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(234, 192, 189, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.service-list-detailed li:hover {
  background: rgba(234, 192, 189, 0.2);
  transform: translateX(5px);
}

.service-list-detailed i {
  color: var(--rosado-polvo, #EAC0BD);
  font-size: 1.5rem;
  margin-top: 3px;
}

.service-list-detailed strong {
  color: var(--grafito, #4A403D);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 5px;
}

.service-list-detailed p {
  color: var(--gris-cálido, #7A6A65);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}