/* Tipografía Mística */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

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

body {
  max-width: 100%;
  overflow-x: hidden;
  scrollbar-width: none;
  font-family: 'Cormorant Garamond', serif;
  background: linear-gradient(
    to bottom,
    #0a0a0a 0%,
    #1a0f1a 50%,
    #0a0a0a 100%
  );
  color: #e5e5e5;
  line-height: 1.7;
}

html, body {
  max-width: 100% !important;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}

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

.numero-contacto {
  font-weight: 600;
  font-size: 28px;
  font-family: 'Playfair Display', serif;
  color: #d4af37;
  text-shadow: 
    0 0 10px rgba(212, 175, 55, 0.5),
    2px 2px 8px rgba(0, 0, 0, 0.8);
}

.btn-consultar {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 12px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 18px 35px;
  background: linear-gradient(135deg, #1a5f1a 0%, #2d8f2d 50%, #1a5f1a 100%);
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  gap: 10px;
  transition: all 0.4s ease;
  white-space: nowrap;
  min-width: 150px;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(45, 143, 45, 0.2);
  border: 2px solid rgba(212, 175, 55, 0.2);
}

.btn-consultar:hover {
  background: linear-gradient(135deg, #2d8f2d 0%, #3db03d 50%, #2d8f2d 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 6px 25px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(45, 143, 45, 0.4);
  transition: all 0.4s ease;
}

.footer {
  background: linear-gradient(to top, #1a0f1a 0%, #0a0a0a 100%);
  color: #d4af37;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer p {
  margin: 0;
  font-size: 1rem;
  font-family: 'Cormorant Garamond', serif;
}

@media (max-width: 768px) {
  .header .title {
    font-size: 2.5rem;
  }
  .service-list {
    flex-direction: column;
    align-items: center;
  }
  .service-item {
    width: 90%;
  }
  .testimonial-item {
    width: 100%;
  }
}

/* Animaciones */
@keyframes aparecer {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes aparecer {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.ocultar {
  opacity: 0;
}

.animar {
  animation: aparecer 0.5s;
  -webkit-animation: aparecer 0.5s;
}

@keyframes resaltar {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1.3);
  }
}

@-webkit-keyframes resaltar {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}

@keyframes resaltar2 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 1px 2px 15px rgba(188, 188, 188, 0.5);
  }
  100% {
    transform: scale(1.1);
    box-shadow: 1px 2px 15px rgba(188, 188, 188, 0.8);
  }
}

@-webkit-keyframes resaltar2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 1px 2px 15px rgba(188, 188, 188, 0.5);
    box-shadow: 1px 2px 15px rgba(188, 188, 188, 0.5);
  }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-box-shadow: 1px 2px 15px rgba(188, 188, 188, 0.8);
    box-shadow: 1px 2px 15px rgba(188, 188, 188, 0.8);
  }
}

@keyframes sacudir {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
  100% {
    transform: translateY(25px);
  }
}

@-webkit-keyframes sacudir {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(12px);
    transform: translateY(12px);
  }
  100% {
    -webkit-transform: translateY(25px);
    transform: translateY(25px);
  }
}

/* Scrollbar personalizado */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #8b4513, #654321);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #a0522d, #8b4513);
}

html {
  scrollbar-width: thin;
  scrollbar-color: #8b4513 #0a0a0a;
}

/* Estilos adicionales para textos */
h1, h2, h3 {
  font-family: 'Cinzel', serif;
  color: #f5e6d3;
}

p {
  font-family: 'Cormorant Garamond', serif;
  color: #e5e5e5;
}

strong {
  color: #d4af37;
  font-weight: 600;
}
