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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #111827;
  background-color: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "DM Serif Display", serif;
  color: #111827;
  line-height: 1.2;
}

p {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #64748b;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.bg-light-custom {
  background-color: #f8fafc;
}

.section-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #111827;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: #64748b;
  max-width: 540px;
  margin: 0 auto;
}

.lead-text {
  font-size: 1.1rem;
  color: #111827;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.text-muted-custom {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.btn-accent {
  background-color: #b8860b;
  color: #ffffff;
  border: none;
  padding: 0.6rem 1.6rem;
  border-radius: 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.btn-accent:hover {
  background-color: #d4a843;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#demo-bar {
  background-color: rgba(17, 24, 39, 0.85);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  font-size: 0.78rem;
  padding: 7px 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  position: relative;
  z-index: 1100;
}
#demo-bar a {
  color: #d4a843;
  font-weight: 600;
  text-decoration: underline;
}
#demo-bar a:hover {
  color: #ffffff;
}

@media (hover: hover) {
  body {
    cursor: none;
  }
  a, button {
    cursor: none;
  }
}
#custom-cursor {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(212, 168, 67, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
#custom-cursor.hovered {
  width: 56px;
  height: 56px;
  background-color: rgba(184, 134, 11, 0.12);
  border-color: #b8860b;
}

#custom-cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background-color: #d4a843;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s ease;
}

#mainNavbar {
  background-color: transparent;
  padding: 1.2rem 0;
  transition: all 0.3s ease;
}
#mainNavbar.scrolled {
  background-color: #111827;
  padding: 0.7rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
#mainNavbar .navbar-brand {
  font-family: "DM Serif Display", serif;
  font-size: 1.3rem;
  color: #ffffff;
  letter-spacing: 0.3px;
}
#mainNavbar .navbar-brand span {
  color: #d4a843;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  margin-left: 4px;
}
#mainNavbar .navbar-brand:hover {
  color: #d4a843;
}
#mainNavbar .nav-link {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85) !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.4rem 0.2rem;
  position: relative;
}
#mainNavbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #d4a843;
  transition: all 0.3s ease;
}
#mainNavbar .nav-link:hover {
  color: #ffffff !important;
}
#mainNavbar .nav-link:hover::after {
  width: 100%;
}
#mainNavbar .nav-link.active {
  color: #d4a843 !important;
}
#mainNavbar .nav-link.active::after {
  width: 100%;
  background-color: #d4a843;
}
#mainNavbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.4);
}
#mainNavbar .navbar-toggler:focus {
  box-shadow: none;
}
@media (max-width: 991px) {
  #mainNavbar {
    background-color: #111827;
    padding: 0.8rem 0;
  }
  #mainNavbar .nav-link {
    padding: 0.6rem 0;
  }
  #mainNavbar .nav-link::after {
    display: none;
  }
}

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../img/hero.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
#hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.75) 0%, rgba(30, 58, 95, 0.65) 100%);
  z-index: 0;
}
#hero .hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 16px 80px;
}
#hero .hero-pretitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d4a843;
  margin-bottom: 1rem;
}
#hero .hero-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: #ffffff;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
#hero .hero-subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes widthGrow {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}
.hero-pretitle {
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}
.hero-pretitle::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(to right, #b8860b, #d4a843);
  margin: 0.6rem auto 0;
  animation: widthGrow 0.8s ease forwards;
  animation-delay: 0.8s;
}

.hero-title {
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.hero-subtitle {
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

.hero-content .d-flex {
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 1.1s;
  opacity: 0;
}

#servicios .service-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: default;
  opacity: 0;
  transform: translateY(30px);
}
#servicios .service-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
#servicios .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14);
}
#servicios .service-card:hover .service-icon i {
  color: #b8860b;
  transform: scale(1.15);
}
#servicios .service-icon i {
  font-size: 2.4rem;
  color: #1e3a5f;
  transition: all 0.3s ease;
}
#servicios .card-title {
  font-family: "DM Serif Display", serif;
  font-size: 1.15rem;
  color: #111827;
  margin-bottom: 0.6rem;
}
#servicios .card-text {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.7;
}

#testimonios .testimonial-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: default;
  opacity: 0;
  transform: translateY(30px);
}
#testimonios .testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
#testimonios .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14);
}
#testimonios .testimonial-card {
  border-top: 3px solid transparent;
}
#testimonios .testimonial-card:hover {
  border-top-color: #b8860b;
}
#testimonios .stars i {
  color: #d4a843;
  font-size: 1rem;
}
#testimonios .testimonial-text {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.8;
  font-style: italic;
}
#testimonios .testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(100, 116, 139, 0.15);
}
#testimonios .testimonial-author strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  color: #111827;
}
#testimonios .testimonial-author span {
  font-size: 0.8rem;
  color: #94a3b8;
}

#sobre-mi .sobremi-img-wrapper {
  display: inline-block;
  padding: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b8860b, #d4a843);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
#sobre-mi .sobremi-img {
  width: 220px;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 4px solid #ffffff;
  display: block;
}
#sobre-mi .cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
#sobre-mi .badge-cert {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #f8fafc;
  color: #1e3a5f;
  border: 1px solid rgba(30, 58, 95, 0.2);
  border-radius: 20px;
  padding: 0.35rem 0.9rem;
  font-size: 0.82rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}
#sobre-mi .badge-cert i {
  color: #b8860b;
  font-size: 0.9rem;
}
#sobre-mi .badge-cert:hover {
  background-color: #1e3a5f;
  color: #ffffff;
  border-color: #1e3a5f;
}
#sobre-mi .badge-cert:hover i {
  color: #d4a843;
}

#contacto .contact-card {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14);
}
#contacto .form-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.4rem;
  letter-spacing: 0.3px;
}
#contacto .form-control,
#contacto .form-select {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  color: #111827;
  border: 1px solid rgba(100, 116, 139, 0.3);
  border-radius: 6px;
  padding: 0.6rem 0.9rem;
  background-color: #f8fafc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
#contacto .form-control::-moz-placeholder, #contacto .form-select::-moz-placeholder {
  color: #94a3b8;
  font-size: 0.85rem;
}
#contacto .form-control::placeholder,
#contacto .form-select::placeholder {
  color: #94a3b8;
  font-size: 0.85rem;
}
#contacto .form-control:focus,
#contacto .form-select:focus {
  border-color: #b8860b;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.12);
  outline: none;
}
#contacto textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
#contacto .btn-accent {
  font-size: 0.9rem;
  padding: 0.65rem 2rem;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

#footer {
  background-color: #0f172a;
  padding: 2rem 0;
}
#footer p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.3rem;
}
#footer .footer-credit {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}
#footer .footer-credit a {
  color: #d4a843;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
#footer .footer-credit a:hover {
  color: #ffffff;
}
#footer::before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #b8860b, #d4a843);
  margin: 0 auto 1.5rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background-color: #b8860b;
  border-color: #b8860b;
  color: #ffffff;
  transform: translateY(-3px);
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: all 0.3s ease;
}
.whatsapp-float i {
  font-size: 1.7rem;
  line-height: 1;
}
.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
  color: #ffffff;
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(37, 211, 102, 0.35);
  animation: whatsapp-pulse 2s ease-out infinite;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}/*# sourceMappingURL=main.css.map */