:root {
  /* Colores principales */
  --th-terracota: #c56c39;
  --th-azul: #2b5d7d;
  --th-crema: #f2e8dc;
  --th-marron: #8c6e54;
  --th-gris: #6c757d;
  --th-verde: #697b46;
  --th-naranja: #e98a4f;
  --th-pergamino: #f9f6f1;
  --th-beige: #e9e0d5;
  --th-ceniza: #e5e5e5;
  
  /* Fuentes */
  --th-fuente-principal: 'Lexend', sans-serif;
  
  /* Espaciado */
  --th-espacio-xs: 0.5rem;
  --th-espacio-sm: 1rem;
  --th-espacio-md: 2rem;
  --th-espacio-lg: 3rem;
  --th-espacio-xl: 5rem;
  
  /* Bordes */
  --th-borde-radio: 0.5rem;
  --th-borde-radio-lg: 1rem;
  
  /* Transiciones */
  --th-transicion: all 0.3s ease;
}

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

body {
  font-family: var(--th-fuente-principal);
  color: #333;
  background-color: var(--th-pergamino);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Tipografía artesanal */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--th-fuente-principal);
  font-weight: 700;
  color: var(--th-azul);
  position: relative;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: var(--th-espacio-md);
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  margin-bottom: var(--th-espacio-sm);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: var(--th-espacio-sm);
}

h4 {
  font-size: 1.4rem;
  margin-bottom: var(--th-espacio-xs);
}

p {
  margin-bottom: var(--th-espacio-sm);
  font-weight: 300;
}

a {
  color: var(--th-terracota);
  text-decoration: none;
  transition: var(--th-transicion);
}

a:hover, a:focus {
  color: var(--th-marron);
  text-decoration: none;
}

nav + section {
  margin-top: 60px;
}

/* Efecto artesanal para los títulos */
.th-titulo-artesanal {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.th-titulo-artesanal::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 3px;
  background: var(--th-terracota);
  border-radius: 2px;
}

/* Layout */
.th-envoltorio {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--th-espacio-sm);
}

.th-seccion {
  padding: var(--th-espacio-lg) 0;
  position: relative;
}

.th-seccion-alterna {
  background-color: var(--th-crema);
}

/* Navegación */
.th-navegacion {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background-color: rgba(249, 246, 241, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--th-transicion);
}

.th-navegacion-scroll {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.th-navegacion-interior {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--th-espacio-xs) var(--th-espacio-sm);
}

.th-logo {
  display: flex;
  align-items: center;
}

.th-logo img {
  height: 50px;
}

.th-menu {
  display: flex;
  list-style: none;
}

.th-menu-item {
  margin-left: var(--th-espacio-md);
  position: relative;
}

.th-menu-enlace {
  color: var(--th-azul);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.th-menu-enlace::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--th-terracota);
  transition: var(--th-transicion);
}

.th-menu-enlace:hover::after,
.th-menu-enlace:focus::after,
.th-menu-activo::after {
  width: 100%;
}

.th-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--th-azul);
  cursor: pointer;
}

/* Héroe - Sección principal */
.th-principal {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr;
  position: relative;
  padding-top: 100px;
}

.th-principal-contenido {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--th-espacio-lg);
  align-items: center;
}

.th-principal-texto {
  max-width: 600px;
}

.th-principal-titulo {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: var(--th-espacio-md);
  color: var(--th-azul);
}

.th-principal-subtitulo {
  font-size: 1.5rem;
  color: var(--th-terracota);
  margin-bottom: var(--th-espacio-md);
  font-weight: 500;
}

.th-principal-descripcion {
  font-size: 1.1rem;
  margin-bottom: var(--th-espacio-md);
}

.th-principal-imagen {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.th-principal-imagen img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.th-principal-imagen::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid var(--th-terracota);
  border-radius: 8px;
  z-index: -1;
  opacity: 0.7;
  transform: translate(10px, 10px);
  transition: transform 0.3s ease;
}

.th-principal-imagen:hover::before {
  transform: translate(5px, 5px);
}

/* Botones artesanales */
.th-boton {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--th-terracota);
  color: white;
  border: none;
  border-radius: var(--th-borde-radio);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--th-transicion);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.th-boton::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--th-transicion);
}

.th-boton:hover, .th-boton:focus {
  background-color: var(--th-marron);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.th-boton:hover::before {
  left: 100%;
}

.th-boton-secundario {
  background-color: transparent;
  color: var(--th-terracota);
  border: 2px solid var(--th-terracota);
}

.th-boton-secundario:hover, .th-boton-secundario:focus {
  background-color: var(--th-terracota);
  color: white;
}

/* Tarjetas de servicios */
.th-servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--th-espacio-md);
  margin-top: var(--th-espacio-md);
}

.th-tarjeta {
  background-color: white;
  border-radius: var(--th-borde-radio);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--th-transicion);
  position: relative;
  top: 0;
}

.th-tarjeta:hover {
  top: -10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.th-tarjeta-imagen {
  height: 200px;
  overflow: hidden;
}

.th-tarjeta-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.th-tarjeta:hover .th-tarjeta-imagen img {
  transform: scale(1.05);
}

.th-tarjeta-contenido {
  padding: var(--th-espacio-sm) var(--th-espacio-md);
}

.th-tarjeta-titulo {
  margin-bottom: var(--th-espacio-xs);
  font-size: 1.4rem;
}

.th-tarjeta-descripcion {
  font-size: 0.95rem;
  margin-bottom: var(--th-espacio-sm);
}

/* Características */
.th-caracteristicas {
  margin-top: var(--th-espacio-lg);
}

.th-caracteristicas-lista {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--th-espacio-md);
  margin-top: var(--th-espacio-md);
}

.th-caracteristica {
  text-align: center;
  padding: var(--th-espacio-sm);
}

.th-caracteristica-icono {
  font-size: 2.5rem;
  color: var(--th-terracota);
  margin-bottom: var(--th-espacio-sm);
}

.th-caracteristica-titulo {
  font-size: 1.2rem;
  margin-bottom: var(--th-espacio-xs);
}

.th-caracteristica-descripcion {
  font-size: 0.9rem;
}

/* Formulario de contacto */
.th-contacto-contenedor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--th-espacio-lg);
  margin-top: var(--th-espacio-md);
}

.th-formulario {
  background-color: white;
  padding: var(--th-espacio-md);
  border-radius: var(--th-borde-radio);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.th-grupo-campo {
  margin-bottom: var(--th-espacio-sm);
}

.th-etiqueta {
  display: block;
  margin-bottom: var(--th-espacio-xs);
  font-weight: 500;
  color: var(--th-azul);
}

.th-campo {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: var(--th-borde-radio);
  font-family: var(--th-fuente-principal);
  font-size: 1rem;
  transition: var(--th-transicion);
}

.th-campo:focus {
  outline: none;
  border-color: var(--th-terracota);
  box-shadow: 0 0 0 2px rgba(197, 108, 57, 0.2);
}

.th-campo-area {
  min-height: 150px;
  resize: vertical;
}

.th-aceptar-terminos {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--th-espacio-sm);
}

.th-aceptar-terminos input {
  margin-top: 5px;
  margin-right: 10px;
}

/* Pie de página */
.th-pie {
  background-color: var(--th-azul);
  color: white;
  padding: var(--th-espacio-lg) 0;
}

.th-pie-contenido {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--th-espacio-md);
}

.th-pie-columna {
  padding: 0 var(--th-espacio-sm);
}

.th-pie-titulo {
  color: white;
  margin-bottom: var(--th-espacio-sm);
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.th-pie-titulo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--th-terracota);
}

.th-pie-enlaces {
  list-style: none;
}

.th-pie-enlace {
  margin-bottom: var(--th-espacio-xs);
}

.th-pie-enlace a {
  color: #ddd;
  transition: var(--th-transicion);
}

.th-pie-enlace a:hover, .th-pie-enlace a:focus {
  color: white;
  padding-left: 5px;
}

.th-contacto-info {
  margin-bottom: var(--th-espacio-xs);
  display: flex;
  align-items: flex-start;
}

.th-contacto-icono {
  color: var(--th-terracota);
  margin-right: 10px;
  font-size: 1.2rem;
}

.th-copyright {
  text-align: center;
  padding-top: var(--th-espacio-md);
  margin-top: var(--th-espacio-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #ddd;
}

/* Sección de testimonios */
.th-testimonios {
  background-color: var(--th-beige);
  padding: var(--th-espacio-lg) 0;
}

.th-testimonios-lista {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--th-espacio-md);
  margin-top: var(--th-espacio-md);
}

.th-testimonio {
  background-color: white;
  padding: var(--th-espacio-md);
  border-radius: var(--th-borde-radio);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.th-testimonio::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 4rem;
  color: var(--th-terracota);
  opacity: 0.2;
  font-family: serif;
}

.th-testimonio-texto {
  font-style: italic;
  margin-bottom: var(--th-espacio-sm);
  position: relative;
  z-index: 1;
}

.th-testimonio-autor {
  display: flex;
  align-items: center;
}

.th-testimonio-autor-imagen {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: var(--th-espacio-xs);
}

.th-testimonio-autor-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.th-testimonio-autor-info {
  line-height: 1.2;
}

.th-testimonio-autor-nombre {
  font-weight: 500;
  color: var(--th-azul);
}

.th-testimonio-autor-cargo {
  font-size: 0.85rem;
  color: var(--th-gris);
}

/* Animaciones al desplazar */
.th-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.th-fade-in.th-visible {
  opacity: 1;
  transform: translateY(0);
}

.th-delay-1 {
  transition-delay: 0.1s;
}

.th-delay-2 {
  transition-delay: 0.2s;
}

.th-delay-3 {
  transition-delay: 0.3s;
}

/* Tablas de comparación */
.th-tabla-comparativa {
  width: 100%;
  border-collapse: collapse;
  margin: var(--th-espacio-md) 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: var(--th-borde-radio);
  overflow: hidden;
}

.th-tabla-comparativa th, 
.th-tabla-comparativa td {
  padding: var(--th-espacio-sm);
  text-align: left;
  border-bottom: 1px solid #eee;
}

.th-tabla-comparativa th {
  background-color: var(--th-azul);
  color: white;
  font-weight: 500;
}

.th-tabla-comparativa tr:nth-child(even) {
  background-color: #f9f9f9;
}

.th-tabla-comparativa tr:hover {
  background-color: var(--th-crema);
}

.th-tabla-destacada {
  background-color: rgba(197, 108, 57, 0.1);
}

/* Blog y artículos */
.th-articulos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--th-espacio-md);
  margin-top: var(--th-espacio-md);
}

.th-articulo {
  background-color: white;
  border-radius: var(--th-borde-radio);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--th-transicion);
}

.th-articulo:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.th-articulo-imagen {
  height: 200px;
  overflow: hidden;
}

.th-articulo-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.th-articulo:hover .th-articulo-imagen img {
  transform: scale(1.05);
}

.th-articulo-contenido {
  padding: var(--th-espacio-md);
}

.th-articulo-fecha {
  font-size: 0.85rem;
  color: var(--th-gris);
  margin-bottom: var(--th-espacio-xs);
}

.th-articulo-titulo {
  margin-bottom: var(--th-espacio-xs);
  font-size: 1.4rem;
}

.th-articulo-extracto {
  margin-bottom: var(--th-espacio-sm);
}

.th-articulo-enlace {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.th-articulo-enlace i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.th-articulo-enlace:hover i {
  transform: translateX(5px);
}

/* Cookie consent */
.th-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--th-azul);
  color: white;
  padding: var(--th-espacio-md);
  z-index: 1000;
  display: none;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.th-cookie-contenido {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--th-espacio-sm);
}

.th-cookie-texto {
  flex: 1;
  min-width: 300px;
}

.th-cookie-acciones {
  display: flex;
  gap: var(--th-espacio-xs);
  flex-wrap: wrap;
}

.th-cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  padding: var(--th-espacio-md);
  display: none;
}

.th-cookie-modal-contenido {
  background-color: white;
  padding: var(--th-espacio-md);
  border-radius: var(--th-borde-radio);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.th-cookie-modal-cabecera {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--th-espacio-md);
  padding-bottom: var(--th-espacio-sm);
  border-bottom: 1px solid #eee;
}

.th-cookie-modal-titulo {
  margin: 0;
}

.th-cookie-modal-cerrar {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--th-gris);
}

.th-cookie-categoria {
  margin-bottom: var(--th-espacio-md);
}

.th-cookie-categoria-cabecera {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--th-espacio-xs);
}

.th-cookie-categoria-titulo {
  margin: 0;
  font-size: 1.2rem;
}

.th-cookie-categoria-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.th-cookie-categoria-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.th-cookie-categoria-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.th-cookie-categoria-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .th-cookie-categoria-slider {
  background-color: var(--th-terracota);
}

input:focus + .th-cookie-categoria-slider {
  box-shadow: 0 0 1px var(--th-terracota);
}

input:checked + .th-cookie-categoria-slider:before {
  transform: translateX(26px);
}

.th-cookie-modal-pie {
  display: flex;
  justify-content: flex-end;
  gap: var(--th-espacio-xs);
  margin-top: var(--th-espacio-md);
  padding-top: var(--th-espacio-sm);
  border-top: 1px solid #eee;
}

/* Página de contacto */
.th-mapa {
  height: 400px;
  border-radius: var(--th-borde-radio);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Página de gracias */
.th-gracias {
  text-align: center;
  padding: var(--th-espacio-xl) 0;
}

.th-gracias-icono {
  font-size: 5rem;
  color: var(--th-verde);
  margin-bottom: var(--th-espacio-md);
}

.th-gracias-titulo {
  margin-bottom: var(--th-espacio-md);
  font-size: 2.5rem;
}

.th-gracias-mensaje {
  max-width: 600px;
  margin: 0 auto var(--th-espacio-lg);
  font-size: 1.2rem;
}

/* Intl-tel-input personalizado */
.iti {
  width: 100%;
}

/* Página no encontrada */
.th-no-encontrado {
  text-align: center;
  padding: var(--th-espacio-xl) 0;
}

.th-no-encontrado-icono {
  font-size: 5rem;
  color: var(--th-gris);
  margin-bottom: var(--th-espacio-md);
}

.th-no-encontrado-titulo {
  margin-bottom: var(--th-espacio-md);
  font-size: 2.5rem;
}

.th-no-encontrado-mensaje {
  max-width: 600px;
  margin: 0 auto var(--th-espacio-lg);
  font-size: 1.2rem;
}

/* Experto y consejo */
.th-experto-perfil {
  display: flex;
  align-items: center;
  margin-bottom: var(--th-espacio-md);
  padding: var(--th-espacio-md);
  background-color: white;
  border-radius: var(--th-borde-radio);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.th-experto-imagen {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: var(--th-espacio-md);
  border: 3px solid var(--th-terracota);
}

.th-experto-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.th-experto-info {
  flex: 1;
}

.th-experto-nombre {
  margin-bottom: var(--th-espacio-xs);
  font-size: 1.5rem;
}

.th-experto-titulo {
  color: var(--th-terracota);
  margin-bottom: var(--th-espacio-xs);
  font-weight: 500;
}

.th-experto-bio {
  margin-bottom: 0;
}

.th-consejo {
  margin-bottom: var(--th-espacio-lg);
  padding: var(--th-espacio-md);
  background-color: white;
  border-radius: var(--th-borde-radio);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.th-consejo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--th-terracota);
  border-radius: var(--th-borde-radio) 0 0 var(--th-borde-radio);
}

.th-consejo-fecha {
  color: var(--th-gris);
  font-size: 0.9rem;
  margin-bottom: var(--th-espacio-xs);
}

.th-consejo-titulo {
  margin-bottom: var(--th-espacio-sm);
}

.th-consejo-contenido p:last-child {
  margin-bottom: 0;
}

/* Efectos de scroll */
.th-scroll-transform {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), 
              opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.th-scroll-from-left {
  transform: translateX(-50px);
  opacity: 0;
}

.th-scroll-from-right {
  transform: translateX(50px);
  opacity: 0;
}

.th-scroll-from-bottom {
  transform: translateY(50px);
  opacity: 0;
}

.th-scroll-from-top {
  transform: translateY(-50px);
  opacity: 0;
}

.th-scroll-scale {
  transform: scale(0.8);
  opacity: 0;
}

.th-scroll-visible {
  transform: translate(0) scale(1);
  opacity: 1;
}

/* Comparación de tarifas */
.th-tarifa {
  background-color: white;
  border-radius: var(--th-borde-radio);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--th-transicion);
  margin-bottom: var(--th-espacio-md);
}

.th-tarifa-cabecera {
  background-color: var(--th-azul);
  color: white;
  padding: var(--th-espacio-sm) var(--th-espacio-md);
  text-align: center;
}

.th-tarifa-cabecera h3 {
  color: white;
  margin: 0;
}

.th-tarifa-precio {
  font-size: 2.5rem;
  margin: var(--th-espacio-sm) 0;
  color: var(--th-terracota);
  font-weight: 700;
}

.th-tarifa-periodo {
  font-size: 0.9rem;
  color: var(--th-gris);
}

.th-tarifa-caracteristicas {
  list-style: none;
  padding: var(--th-espacio-md);
}

.th-tarifa-caracteristica {
  padding: var(--th-espacio-xs) 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.th-tarifa-caracteristica:last-child {
  border-bottom: none;
}

.th-tarifa-caracteristica i {
  color: var(--th-terracota);
  margin-right: var(--th-espacio-xs);
}

.th-tarifa-pie {
  padding: 0 var(--th-espacio-md) var(--th-espacio-md);
  text-align: center;
}

.th-tarifa-destacada {
  transform: scale(1.05);
  position: relative;
}

.th-tarifa-destacada::before {
  content: 'Recomendado';
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--th-terracota);
  color: white;
  padding: 5px 10px;
  font-size: 0.8rem;
  border-radius: 3px;
  z-index: 1;
}

/* Adaptación móvil */
@media (max-width: 768px) {
  .th-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--th-pergamino);
    flex-direction: column;
    align-items: center;
    padding: var(--th-espacio-md) 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
  }
  
  .th-menu.th-menu-activo {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .th-menu-item {
    margin: var(--th-espacio-xs) 0;
  }
  
  .th-menu-toggle {
    display: block;
  }
  
  .th-principal-contenido,
  .th-contacto-contenedor {
    grid-template-columns: 1fr;
  }
  
  .th-principal-imagen {
    margin-top: var(--th-espacio-md);
  }
  
  .th-cookie-contenido {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .th-experto-perfil {
    flex-direction: column;
    text-align: center;
  }
  
  .th-experto-imagen {
    margin-right: 0;
    margin-bottom: var(--th-espacio-sm);
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .th-principal-titulo {
    font-size: 2.2rem;
  }
  
  .th-principal-subtitulo {
    font-size: 1.3rem;
  }
  
  .th-tarifa-precio {
    font-size: 2rem;
  }
  
  .th-tarifa-destacada {
    transform: scale(1);
  }
  
  .th-servicios-grid,
  .th-testimonios-lista,
  .th-articulos-grid,
  .th-caracteristicas-lista {
    grid-template-columns: 1fr;
  }
}