@import url("https://use.typekit.net/mry4hxy.css");

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

body {
  font-family: "modula-serif", serif;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.4;
  font-size: 2.6rem;
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
  padding: 20px 0;
}

.header-left,
.header-right {
  flex: 1;
  padding: 0 20px;
}

.header-center {
  flex: 1;
  text-align: center;
  position: relative;
}

.main-title {
  font-family: "modula-serif", serif;
  font-size: 6rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 8px;
  margin: 0;
  position: relative;
  padding: 0 20px;
}

.main-title::before,
.main-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 150px;
  height: 2px;
  background-color: #000;
}

.main-title::before {
  left: -170px;
}

.main-title::after {
  right: -170px;
}

.extra-info {
  font-size: 1.4rem;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.extra-info span {
  display: block;
  margin-bottom: 0;
  text-align: left;
}

.header-left .extra-info {
  text-align: left;
}

.header-right .extra-info {
  text-align: right;
}

.logo {
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
}

.logo-circle {
  width: 80px;
  height: 80px;
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  position: relative;
}

.wheat-icon {
  font-size: 16px;
  margin-bottom: 2px;
}

.logo-text {
  text-align: center;
  line-height: 1;
}

.logo-main {
  font-family: "modula-serif", serif;
  font-size: 1.4rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 1px;
  display: block;
}

.logo-sub {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 1px;
  display: block;
}

/* Main Content */
.menu-content {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.cafe-section {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.menu-items {
  flex: 1;
  min-width: 200px;
}

.menu-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  gap: 8px;
}

.item-icon {
  font-size: 14px;
  width: 20px;
  flex-shrink: 0;
}

.item-name {
  flex: 1;
  font-size: 1.8rem;
  font-weight: 400;
}

.item-price {
  font-size: 1.8rem;
  font-weight: 500;
  margin-left: auto;
}

.seasonal-section {
  width: 100%;
  margin-top: 20px;
}

.seasonal-label {
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 10px;
  text-align: right;
  transform: rotate(90deg);
  transform-origin: right center;
  position: absolute;
  right: -20px;
  top: 50%;
}

/* Coffee Legend */
.coffee-legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
  padding: 25px;
  background: #fff;
  border-radius: 0;
  border: none;
}

.legend-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 70px;
}

.legend-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #000;
  position: relative;
  font-family: "Arial", "Helvetica", sans-serif;
}

.legend-dot.cafe {
  background: #fff;
  border: 1px solid #000;
}

.legend-dot.cafe::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  background-image: radial-gradient(circle, #000 1px, transparent 1px);
  background-size: 4px 4px;
  background-position: 0 0;
}

.legend-dot.leche {
  background: #fff;
  border: 1px solid #000;
}

.legend-dot.espuma {
  background: #fff;
  border: 1px solid #000;
}

.legend-dot.espuma::before {
  content: "ↄↄↄ";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: #000;
  line-height: 1;
  letter-spacing: 0px;
}

.legend-dot.cacao {
  background: #000;
  border: none;
}

.legend-dot.agua {
  background: #fff;
  border: 1px solid #000;
}

.legend-dot.agua::before {
  content: "~";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: bold;
  color: #000;
  line-height: 1;
  font-family: "Arial", "Helvetica", sans-serif;
}

.legend-dot.horchata {
  background: #fff;
  border: 1px solid #000;
}

.legend-dot.horchata::before {
  content: "////";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: bold;
  color: #000;
  line-height: 1;
  letter-spacing: -1px;
}

.legend-dot.leche-condensada {
  background: #617066;
  border: 1px solid #000;
}

.legend-dot.tonica {
  background: #fff;
  border: 1px solid #000;
}

.legend-dot.tonica::before {
  content: "|||||";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: bold;
  color: #000;
  line-height: 1;
  letter-spacing: -1px;
}

.coffee-legend span {
  font-family: "modula-serif", serif;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.1;
  color: #000;
  font-weight: 400;
  max-width: 80px;
}

.supplements-line {
  border-top: 1px solid #000;
  margin-top: 20px;
  padding-top: 20px;
  font-size: 1.3rem;
}

/* Botanical Section */
.botanical-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.botanical-illustration {
  width: 100%;
  max-width: 300px;
}

.botanical-svg {
  width: 100%;
  height: auto;
  opacity: 0.6;
}

/* Otras Bebidas Section */
.otras-bebidas-section {
  border-top: 2px solid #000;
  padding-top: 30px;
}

.section-title {
  font-family: "modula-serif", serif;
  font-size: 3.5rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 4px;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 200px;
  height: 2px;
  background-color: #000;
}

.section-title::before {
  left: -220px;
}

.section-title::after {
  right: -220px;
}

.bebidas-grid {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.bebidas-column {
  flex: 1;
}

.subsection-title {
  font-family: "modula-serif", serif;
  font-size: 2.2rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 2px;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #000;
}

.smoothies-title,
.cervezas-title {
  margin-top: 30px;
}

.bebidas-items {
  margin-bottom: 25px;
}

.bebida-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
  gap: 10px;
}

.bebida-name {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
}

.bebida-price {
  font-size: 1.6rem;
  font-weight: 500;
  flex-shrink: 0;
}

.cervezas-grid .bebida-item {
  margin-bottom: 4px;
}

/* Categorías adicionales */
.category-section {
  padding: 20px 0;
}

.category-section .section-title {
  font-family: "modula-serif", serif;
  font-size: 3.5rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 4px;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.category-section .section-title::before,
.category-section .section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100px;
  height: 2px;
  background-color: #000;
}

.category-section .section-title::before {
  left: -120px;
}

.category-section .section-title::after {
  right: -120px;
}

/* Suplementos de categorías */
.category-supplements {
  margin-bottom: 30px;
  text-align: center;
}

.supplements-title {
  font-family: "modula-serif", serif;
  font-size: 2.2rem;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 15px;
  color: #333;
}

.supplements-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.supplement-item {
  font-style: italic;
  font-size: 1.8rem;
  color: #333;
}

/* Grid de subcategorías */
.subcategories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.subcategory-column {
  background: #fff;
  padding: 20px;
}

.subcategory-column .subsection-title {
  font-family: "modula-serif", serif;
  font-size: 2.4rem;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #000;
  text-align: center;
}

.subcategory-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.subcategory-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.subcategory-item:last-child {
  border-bottom: none;
}

.subcategory-item .item-name {
  flex: 1;
  margin-right: 15px;
}

.subcategory-item .item-name strong {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
}

.subcategory-item .item-description {
  font-size: 1.4rem;
  color: #666;
  margin-top: 4px;
  line-height: 1.4;
}

.subcategory-item .item-price {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .main-title::before,
  .main-title::after {
    display: none;
  }

  .section-title::before,
  .section-title::after {
    display: none;
  }

  .menu-content {
    flex-direction: column;
  }

  .cafe-section {
    flex-direction: column;
  }

  .bebidas-grid {
    flex-direction: column;
    gap: 20px;
  }

  .coffee-legend {
    justify-content: center;
  }

  .subcategories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .category-section .section-title::before,
  .category-section .section-title::after {
    display: none;
  }

  .supplements-grid {
    flex-direction: column;
    align-items: center;
  }

  .subcategory-column {
    padding: 10px;
  }
}

/* Header Principal */
.main-header {
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 30px;
}

.restaurant-name {
  font-family: "modula-serif", serif;
  font-size: 4.5rem;
  font-weight: 700;
  margin: 0 0 30px 0;
  letter-spacing: 6px;
  color: #000;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.decorative-lines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
  max-width: 600px;
}

.line {
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, transparent, #000, transparent);
  border-radius: 2px;
}

.logo-container {
  flex-shrink: 0;
}

.logo-container .logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}

.logo-container .logo-circle {
  width: 100px;
  height: 100px;
  border: 3px solid #000;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo-container .wheat-icon {
  font-size: 20px;
  margin-bottom: 4px;
}

.logo-container .logo-main {
  font-family: "modula-serif", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  display: block;
}

.logo-container .logo-sub {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 1px;
  display: block;
}

/* Navbar de Navegación */
.category-navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid #000;
  z-index: 1000;
  margin-bottom: 40px;
  animation: slideInDown 0.6s ease-out;
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  padding: 0 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
}

.nav-container::-webkit-scrollbar {
  display: none;
}

.nav-item {
  font-family: "modula-serif", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  padding: 20px 25px;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 3px solid transparent;
  position: relative;
}

.nav-item:hover {
  color: #000;
  background: rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-item.active {
  color: #000;
  border-bottom-color: #000;
  background: rgba(0, 0, 0, 0.02);
  transform: translateY(-2px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.nav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #000;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 80%;
}

/* Indicadores de Scroll para Móvil */
.scroll-indicator {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgb(0 0 0 / 6%);
  color: rgb(0, 0, 0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  z-index: 1001;
  opacity: 0;
  backdrop-filter: blur(1px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.scroll-indicator:hover {
  background: rgba(0, 0, 0, 0.155);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.128);
}

.scroll-indicator-left {
  left: 10px;
}

.scroll-indicator-right {
  right: 10px;
}

/* Animación de pulso para indicar que hay más contenido */
@keyframes pulse-indicator {
  0% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-50%) scale(1.05);
  }
  100% {
    transform: translateY(-50%) scale(1);
  }
}

.scroll-indicator.pulse {
  animation: pulse-indicator 2s infinite;
}

/* Animación de entrada para el navbar */
@keyframes slideInDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Efecto de scroll mejorado para el contenido */
.menu-content,
.category-section {
  scroll-margin-top: 120px; /* Ajustar el margen para el navbar sticky */
}

/* Responsive para el header principal */
@media (max-width: 768px) {
  .main-header {
    padding: 30px 15px;
  }

  .restaurant-name {
    font-size: 3.5rem;
    letter-spacing: 4px;
    margin-bottom: 25px;
  }

  .decorative-lines {
    gap: 20px;
  }

  .logo-container .logo-image {
    width: 90px;
    height: 90px;
  }

  .logo-container .logo-circle {
    width: 80px;
    height: 80px;
  }

  .logo-container .wheat-icon {
    font-size: 16px;
  }

  .logo-container .logo-main {
    font-size: 10px;
  }

  .logo-container .logo-sub {
    font-size: 8px;
  }
}

@media (max-width: 480px) {
  .restaurant-name {
    font-size: 2.8rem;
    letter-spacing: 3px;
  }

  .decorative-lines {
    gap: 15px;
  }

  .logo-container .logo-image {
    width: 90px;
    height: 90px;
  }

  .logo-container .logo-circle {
    width: 70px;
    height: 70px;
  }
}

/* Responsive para el navbar */
@media (max-width: 768px) {
  .nav-container {
    justify-content: flex-start;
    padding: 0 15px;
  }

  .nav-item {
    font-size: 1.6rem;
    padding: 10px 10px;
  }

  .scroll-indicator {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .scroll-indicator-left {
    left: 5px;
  }

  .scroll-indicator-right {
    right: 5px;
  }
}

@media (max-width: 480px) {
  .nav-item {
    font-size: 1.1rem;
    padding: 12px 16px;
  }

  .scroll-indicator {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

/* Estilos para la sección de cafés */
.cafe-subcategory {
  margin-bottom: 40px;
}

.cafe-subcategory .subsection-title {
  font-family: "modula-serif", serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #000;
  text-align: left;
}

.cafe-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cafe-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.cafe-item:last-child {
  border-bottom: none;
}

.cafe-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cafe-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cafe-icon-placeholder {
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  border: 2px solid #ddd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #999;
}

.cafe-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cafe-name {
  font-family: "modula-serif", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  line-height: 1.2;
}

.cafe-description {
  font-family: "modula-serif", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #666;
  font-style: italic;
  line-height: 1.3;
  margin-top: 4px;
  display: block;
}

.cafe-price {
  font-family: "modula-serif", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  margin-left: 20px;
  flex-shrink: 0;
}

/* Responsive para cafés */
@media (max-width: 768px) {
  .cafe-item {
    gap: 15px;
    padding: 12px 0;
  }

  .cafe-icon {
    width: 50px;
    height: 50px;
  }

  .cafe-name {
    font-size: 1.8rem;
  }
  
  .cafe-description {
    font-size: 1.2rem;
    margin-top: 3px;
    margin-bottom: 6px;
  }

  .cafe-price {
    font-size: 1.8rem;
    margin-left: 15px;
  }

  .cafe-subcategory .subsection-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .cafe-item {
    gap: 12px;
    padding: 10px 0;
  }

  .cafe-icon {
    width: 45px;
    height: 45px;
  }

  .cafe-name {
    font-size: 1.3rem;
  }
  
  .cafe-description {
    font-size: 1.1rem;
    margin-top: 2px;
    margin-bottom: 5px;
  }

  .cafe-price {
    font-size: 1.3rem;
    margin-left: 12px;
  }

  .cafe-subcategory .subsection-title {
    font-size: 1.6rem;
    margin-bottom: 18px;
  }
}

/* Footer */
.site-footer {
  margin-top: 80px;
  padding: 40px 20px;
  border-top: 1px solid #e0e0e0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.powered-by {
  font-family: "modula-serif", serif;
  font-size: 1.4rem;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #e0e0e0;
}

.powered-by:hover {
  color: #000;
  background: rgba(255, 255, 255, 1);
  border-color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tuqr-brand {
  font-weight: 700;
  color: #000;
  letter-spacing: 1px;
}

/* Responsive para el footer */
@media (max-width: 768px) {
  .site-footer {
    margin-top: 10px;
    padding: 30px 15px;
  }
  
  .powered-by {
    font-size: 1.2rem;
    padding: 8px 16px;
  }
}

/* ─────────── ESTILOS DE HORARIOS ─────────── */
.footer-section {
  margin-bottom: 40px;
}

.footer-title {
  font-family: "modula-serif", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
  text-align: center;
  letter-spacing: 2px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #000;
}

.horarios-table {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-collapse: collapse;
  font-family: "modula-serif", serif;
  font-size: 1.4rem;
}

.horarios-table th {
  background: #f8f9fa;
  padding: 12px 8px;
  text-align: center;
  font-weight: 600;
  color: #000;
  border-bottom: 2px solid #e0e0e0;
  letter-spacing: 1px;
}

.horarios-table td {
  padding: 10px 8px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}

.horario-dia {
  font-weight: 600;
  color: #000;
  text-align: left;
  padding-left: 15px;
}

.horario-horas {
  color: #333;
  font-size: 1.7rem;
}

.horario-row.today {
  background: #000;
  color: #fff;
}

.horario-row.today .horario-dia,
.horario-row.today .horario-horas {
  color: #fff;
}

.horario-row:hover {
  background: #f8f9fa;
}

.horario-row.today:hover {
  background: #333;
}

/* Responsive para horarios */
@media (max-width: 768px) {
  .footer-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .horarios-table {
    font-size: 1.7rem;
    max-width: 100%;
  }
  
  .horarios-table th,
  .horarios-table td {
    padding: 8px 6px;
  }
  
  .horario-dia {
    padding-left: 10px;
  }
}

@media (max-width: 480px) {
  .horarios-table {
    font-size: 1.7rem;
  }
  
  .horarios-table th,
  .horarios-table td {
    padding: 6px 4px;
  }
  
  .footer-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .site-footer {
    margin-top: 10px;
    padding: 30px 15px;
  }
  
  .powered-by {
    font-size: 1.1rem;
    padding: 6px 14px;
  }
}

/* ─────────── LANDING PAGE STYLES ─────────── */

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 50%, #6b4423 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="coffee-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23coffee-pattern)"/></svg>');
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-logo-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: logoFloat 3s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.2);
    background: white;
    padding: 8px;
}

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

.hero-title {
    font-family: "modula-serif", serif;
    font-size: 5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    letter-spacing: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: titleSlideIn 1s ease-out 0.3s both;
}

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

.hero-subtitle {
    font-size: 2.4rem;
    margin: 0 0 15px 0;
    font-weight: 400;
    opacity: 0.9;
    animation: titleSlideIn 1s ease-out 0.5s both;
}

.hero-description {
    font-size: 1.8rem;
    margin: 0 0 40px 0;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: titleSlideIn 1s ease-out 0.7s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: titleSlideIn 1s ease-out 0.9s both;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.6rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    min-width: 160px;
}

.btn-primary {
    background: linear-gradient(135deg, #d4a574 0%, #b8860b 100%);
    color: white;
    border-color: #d4a574;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.6);
    background: linear-gradient(135deg, #e6b88a 0%, #d4a574 100%);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #2c1810;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: #2c1810;
    border-color: #2c1810;
}

.btn-outline:hover {
    background: #2c1810;
    color: white;
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.8rem;
    min-width: 200px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: titleSlideIn 1s ease-out 1.1s both;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

.scroll-arrow.bounce {
    animation: scrollBounce 0.6s ease-in-out;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(-10px); }
    60% { transform: rotate(45deg) translateY(-5px); }
}

/* Especialidades Section */
.especialidades-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.especialidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.especialidad-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
}

.especialidad-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.especialidad-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.especialidad-icon {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: block;
    background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(44, 24, 16, 0.2);
}

.especialidad-card h3 {
    font-family: "modula-serif", serif;
    font-size: 2.2rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #2c1810;
}

.especialidad-card p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Horarios Completos Section */
.horarios-destacados-section {
    padding: 100px 0;
    background: white;
}

.horarios-completos-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 25px;
    padding: 10px;
    margin-top: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.horarios-completos-container.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.horarios-completos-container .horarios-table {
    margin: 0 auto;
    max-width: 600px;
}

.horarios-completos-container .horarios-table th {
    background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 100%);
    color: white;
    border-bottom: 2px solid #d4a574;
}

.horarios-completos-container .horarios-table td {
    border-bottom: 1px solid #e0e0e0;
}

.horarios-completos-container .horario-row.today {
    background: linear-gradient(135deg, #d4a574 0%, #b8860b 100%);
    color: white;
}

.horarios-completos-container .horario-row.today .horario-dia,
.horarios-completos-container .horario-row.today .horario-horas {
    color: white;
    font-weight: 600;
}

/* Ubicación Section */
.ubicacion-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.ubicacion-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.ubicacion-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ubicacion-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.ubicacion-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.ubicacion-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 5px;
    background: linear-gradient(135deg, #d4a574 0%, #b8860b 100%);
    color: white;
    padding: 12px 16px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(212, 165, 116, 0.3);
}

.ubicacion-item h3 {
    font-family: "modula-serif", serif;
    font-size: 2.2rem;
    margin: 0 0 8px 0;
    color: #2c1810;
}

.ubicacion-item p {
    font-size: 1.6rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.mapa-real {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-out;
}

.mapa-real.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.mapa-real iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.mapa-info {
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.mapa-info h4 {
    font-family: "modula-serif", serif;
    font-size: 2rem;
    margin: 0 0 15px 0;
    color: #2c1810;
    text-align: center;
}

.mapa-info p {
    font-size: 1.5rem;
    margin: 0 0 10px 0;
    color: #333;
    line-height: 1.4;
}

.mapa-info .btn-small {
    padding: 10px 20px;
    font-size: 1.4rem;
    min-width: auto;
    margin-top: 15px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 100%);
    text-align: center;
    color: white;
}

.cta-title {
    font-family: "modula-serif", serif;
    font-size: 4rem;
    margin: 0 0 20px 0;
    color: #d4a574;
}

.cta-description {
    font-size: 2rem;
    margin: 0 0 50px 0;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Landing Footer */
.landing-footer {
    background: #1a0f0a;
    color: white;
    padding: 60px 0 30px 0;
}

.landing-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.landing-footer .footer-section {
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: none;
    background: white;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.footer-logo h3 {
    font-family: "modula-serif", serif;
    font-size: 2.4rem;
    margin: 0;
    color: #d4a574;
}

.landing-footer .footer-section p {
    font-size: 1.6rem;
    color: #ccc;
    margin: 5px 0;
}

.landing-footer .footer-section h4 {
    font-family: "modula-serif", serif;
    font-size: 2rem;
    margin: 0 0 20px 0;
    color: #d4a574;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 1.6rem;
    transition: color 0.3s ease;
}

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

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

/* Estilos adicionales para mejorar la apariencia */
.btn-outline {
    background: transparent;
    color: #2c1810;
    border-color: #2c1810;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #2c1810;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 24, 16, 0.3);
}

.btn-small {
    padding: 8px 16px;
    font-size: 1.3rem;
    min-width: 120px;
}

/* Mejoras en las tarjetas de especialidades */
.especialidad-card {
    position: relative;
    overflow: hidden;
}

.especialidad-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    transition: left 0.5s ease;
}

.especialidad-card:hover::before {
    left: 100%;
}

/* Responsive Design para Landing */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 6px;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .especialidades-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ubicacion-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-title {
        font-size: 3rem;
    }
    
    .cta-description {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .landing-footer .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 4px;
    }
    
    .hero-logo-img {
        width: 100px;
        height: 100px;
    }
    
    .especialidad-card {
        padding: 30px 20px;
    }
    
    .horarios-highlight {
        padding: 30px 20px;
    }
    
    .ubicacion-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* ─────────── MODAL DE AVISOS ─────────── */
.aviso-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.aviso-modal.show {
    opacity: 1;
    visibility: visible;
}

.aviso-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 0;
    max-width: 90%;
    width: 420px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: scale(0.8) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.aviso-modal.show .aviso-content {
    transform: scale(1) translateY(0);
}

.aviso-header {
    color: rgb(28, 28, 28);
    padding: 2rem 2rem 1.5rem 2rem;
    position: relative;
}

.aviso-emoji {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.aviso-titulo {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
    color: rgb(28, 28, 28);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.aviso-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 1.5rem;
    color: rgb(0, 0, 0);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.aviso-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.aviso-body {
    padding: 2rem;
    color: #4a5568;
    font-size: 1.8rem;
    line-height: 1.6;
    background: white;
}

.aviso-body p {
    margin: 0;
    font-weight: 400;
}

/* Barra de progreso */
.aviso-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.aviso-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #989898 0%, #323232 100%);
    width: 100%;
    transform-origin: left;
    animation: progressShrink 8s linear forwards;
}

@keyframes progressShrink {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .aviso-content {
        width: 95%;
        margin: 1rem;
        border-radius: 16px;
    }
    
    .aviso-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .aviso-emoji {
        font-size: 2.5rem;
    }
    
    .aviso-titulo {
        font-size: 1.9rem;
    }
    
    .aviso-body {
        padding: 1.5rem;
        font-size: 1.7rem;
    }
    
    .aviso-close {
        top: 0.8rem;
        right: 0.8rem;
        width: 28px;
        height: 28px;
        font-size: 1.3rem;
    }
}

/* ─────────── SECCIÓN DE CONTACTO ─────────── */
.contacto-section {
    padding: 100px 0;
    background: white;
}

.contacto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.contacto-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.contacto-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.contacto-card::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: left 0.5s ease;
}

.contacto-card:hover::before {
    left: 100%;
}

.contacto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.contacto-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    transition: all 0.3s ease;
}

.contacto-card:hover .contacto-icon {
    transform: scale(1.1);
}

.contacto-card h3 {
    font-family: "modula-serif", serif;
    font-size: 2.2rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #2c1810;
}

.contacto-card p {
    font-size: 1.8rem;
    color: #666;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.contacto-action {
    font-size: 1.4rem;
    font-weight: 600;
    color: #d4a574;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.contacto-card:hover .contacto-action {
    color: #b8860b;
}

/* Instagram Card */
.instagram-card {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.instagram-card .contacto-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.instagram-card h3,
.instagram-card p {
    color: white;
}

.instagram-card .contacto-action {
    color: rgba(255, 255, 255, 0.9);
}

.instagram-card:hover {
    background: linear-gradient(135deg, #f0a050 0%, #e67850 25%, #e04060 50%, #d03070 75%, #c02090 100%);
}

/* Teléfono Card */
.telefono-card {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.telefono-card .contacto-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.telefono-card h3,
.telefono-card p {
    color: white;
}

.telefono-card .contacto-action {
    color: rgba(255, 255, 255, 0.9);
}

.telefono-card:hover {
    background: linear-gradient(135deg, #2ed573 0%, #17a085 100%);
}

/* WhatsApp Card */
.whatsapp-card {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.whatsapp-card .contacto-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.whatsapp-card h3,
.whatsapp-card p {
    color: white;
}

.whatsapp-card .contacto-action {
    color: rgba(255, 255, 255, 0.9);
}

.whatsapp-card:hover {
    background: linear-gradient(135deg, #2ed573 0%, #17a085 100%);
}

/* Responsive para Contacto */
@media (max-width: 768px) {
    .contacto-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .contacto-card {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .contacto-card h3 {
        font-size: 1.6rem;
        margin-bottom: 5px;
    }
    
    .contacto-card p {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .contacto-action {
        font-size: 1.1rem;
    }
    
    .contacto-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 15px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .contacto-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .contacto-card {
        padding: 15px 10px;
        border-radius: 20px;
        min-height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .contacto-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 10px;
        font-size: 16px;
    }
    
    .contacto-card h3 {
        font-size: 1.2rem;
        margin-bottom: 3px;
    }
    
    .contacto-card p {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .contacto-action {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .contacto-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .contacto-card {
        padding: 12px 8px;
        border-radius: 25px;
        min-height: 100px;
    }
    
    .contacto-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 8px;
        font-size: 14px;
    }
    
    .contacto-card h3 {
        font-size: 1rem;
        margin-bottom: 2px;
    }
    
    .contacto-card p {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .contacto-action {
        font-size: 0.8rem;
    }
}
