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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background-color: #0a0e17;
  color: #f1f5f9;
  overflow-x: hidden;
  line-height: 1.6;
}

.page-loader {
  position: fixed;
  inset: 0;
  background: #0a0e17;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

main {
  opacity: 0;
  animation: fadeInPage 0.8s ease 0.3s forwards;
}

@keyframes fadeInPage {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#particles-js {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-content {
  position: relative;
  z-index: 1;
}

.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .cursor-glow {
    display: none;
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(135deg, #b87333, #e67e22);
  z-index: 10000;
  width: 0%;
  transition: width 0.1s linear;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.highlight {
  background: linear-gradient(135deg, #b87333, #e67e22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #94a3b8;
  font-size: 1.125rem;
  max-width: 600px;
  margin-bottom: 3rem;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #b87333, #e67e22, transparent);
  border: none;
  margin: 4rem 0;
}

.btn-primary-custom {
  background: linear-gradient(135deg, #b87333, #e67e22);
  border: none;
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.3);
  color: #fff;
}

.btn-outline-custom {
  background: transparent;
  border: 2px solid #b87333;
  color: #b87333;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-outline-custom:hover {
  background: #b87333;
  color: #fff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  border: none;
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  color: #fff;
}

.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
  background: transparent;
}
.navbar-custom.scrolled {
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.navbar-custom .navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  color: #f1f5f9 !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar-custom .navbar-brand .brand-icon {
  color: #e67e22;
}
.navbar-custom .nav-link {
  color: #94a3b8 !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s ease;
  position: relative;
}
.navbar-custom .nav-link:hover, .navbar-custom .nav-link.active {
  color: #e67e22 !important;
}
.navbar-custom .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: linear-gradient(135deg, #b87333, #e67e22);
  border-radius: 1px;
}
.navbar-custom .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.2);
}
.navbar-custom .navbar-toggler:focus {
  box-shadow: none;
}
.navbar-custom .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28241, 245, 249, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media (max-width: 991px) {
  .navbar-custom .navbar-collapse {
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 0.5rem;
  }
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 23, 0.7) 0%, rgba(10, 14, 23, 0.85) 50%, rgba(10, 14, 23, 0.95) 100%);
  z-index: 1;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
}
.hero .hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(184, 115, 51, 0.2);
  border: 1px solid rgba(184, 115, 51, 0.4);
  border-radius: 50px;
  color: #b87333;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero .hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero .hero-title span {
  background: linear-gradient(135deg, #b87333, #e67e22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .hero-description {
  font-size: 1.25rem;
  color: #94a3b8;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero .hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero .scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero .scroll-indicator i {
  color: #8b95a5;
  font-size: 1.5rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  text-align: center;
  background: linear-gradient(180deg, #111827 0%, #0a0e17 100%);
}
.page-hero .page-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.page-hero .breadcrumb-custom {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.9rem;
}
.page-hero .breadcrumb-custom a {
  color: #b87333;
  text-decoration: none;
}
.page-hero .breadcrumb-custom a:hover {
  color: #e67e22;
}

.glass-card, .value-card, .service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover, .value-card:hover, .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(230, 126, 34, 0.15);
}
.glass-card, .value-card, .service-card {
  padding: 2rem;
  height: 100%;
}
.glass-card.gradient-border, .gradient-border.value-card, .gradient-border.service-card {
  position: relative;
  background: #111827;
  border-radius: 16px;
}
.glass-card.gradient-border::before, .gradient-border.value-card::before, .gradient-border.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, #b87333, #e67e22, #1e3a5f);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.glass-card.gradient-border, .gradient-border.value-card, .gradient-border.service-card {
  background: transparent;
}
.glass-card.gradient-border .glass-card-inner, .gradient-border.value-card .glass-card-inner, .gradient-border.service-card .glass-card-inner {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  position: relative;
  z-index: 1;
}

.service-card {
  text-align: center;
}
.service-card .service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 115, 51, 0.15);
  border-radius: 12px;
  color: #e67e22;
}
.service-card .service-icon i, .service-card .service-icon svg {
  width: 32px;
  height: 32px;
}
.service-card .service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #f1f5f9;
}
.service-card .service-desc {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.stat-card .stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #b87333, #e67e22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-card .stat-label {
  color: #94a3b8;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-card .stat-icon {
  color: #b87333;
  margin-bottom: 1rem;
}
.stat-card .stat-icon i, .stat-card .stat-icon svg {
  width: 28px;
  height: 28px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(230, 126, 34, 0.15);
}
.contact-card {
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.contact-card .contact-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 115, 51, 0.15);
  border-radius: 8px;
  color: #e67e22;
}
.contact-card .contact-icon i, .contact-card .contact-icon svg {
  width: 22px;
  height: 22px;
}
.contact-card .contact-info h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #f1f5f9;
}
.contact-card .contact-info p, .contact-card .contact-info a {
  color: #94a3b8;
  margin-bottom: 0;
  text-decoration: none;
  font-size: 0.95rem;
}
.contact-card .contact-info p:hover, .contact-card .contact-info a:hover {
  color: #e67e22;
}

.value-card .value-icon {
  color: #b87333;
  margin-bottom: 1rem;
}
.value-card .value-icon i, .value-card .value-icon svg {
  width: 36px;
  height: 36px;
}
.value-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.value-card p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.testimonials-swiper {
  padding: 2rem 0 4rem;
}
.testimonials-swiper .swiper-slide {
  height: auto;
}
.testimonials-swiper .testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
}
.testimonials-swiper .testimonial-card .testimonial-text {
  color: #94a3b8;
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
}
.testimonials-swiper .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonials-swiper .testimonial-card .testimonial-author .author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b87333, #e67e22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 1.125rem;
}
.testimonials-swiper .testimonial-card .testimonial-author .author-info h6 {
  margin-bottom: 0;
  font-weight: 600;
  color: #f1f5f9;
}
.testimonials-swiper .testimonial-card .testimonial-author .author-info span {
  color: #94a3b8;
  font-size: 0.85rem;
}
.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
  color: #e67e22;
}
.testimonials-swiper .swiper-button-next::after,
.testimonials-swiper .swiper-button-prev::after {
  font-size: 1.5rem;
}
.testimonials-swiper .swiper-pagination-bullet {
  background: #8b95a5;
  opacity: 0.5;
}
.testimonials-swiper .swiper-pagination-bullet-active {
  background: #e67e22;
  opacity: 1;
}

.metals-swiper .metal-slide {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.metals-swiper .metal-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(230, 126, 34, 0.15);
}
.metals-swiper .metal-slide {
  padding: 1.5rem;
  text-align: center;
}
.metals-swiper .metal-slide .metal-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #b87333;
}
.metals-swiper .metal-slide h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.metals-swiper .metal-slide p {
  color: #94a3b8;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
}
.contact-form .form-label {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.contact-form .form-control,
.contact-form .form-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f1f5f9;
  padding: 0.875rem 1rem;
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #b87333;
  box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.15);
  color: #f1f5f9;
}
.contact-form .form-control::placeholder,
.contact-form .form-select::placeholder {
  color: rgba(148, 163, 184, 0.6);
}
.contact-form textarea.form-control {
  min-height: 140px;
  resize: vertical;
}
.contact-form .form-select option {
  background: #0a0e17;
  color: #f1f5f9;
}

.map-placeholder {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  height: 100%;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #94a3b8;
}
.map-placeholder i, .map-placeholder svg {
  width: 48px;
  height: 48px;
  color: #b87333;
  margin-bottom: 1rem;
}

.about-story .about-image {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  border-radius: 16px;
}
.about-story .about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.about-story .about-text h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.about-story .about-text p {
  color: #94a3b8;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #b87333, #e67e22, transparent);
}
.timeline .timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
}
.timeline .timeline-item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 0.25rem;
  width: 12px;
  height: 12px;
  background: #e67e22;
  border-radius: 50%;
  transform: translateX(-5px);
}
.timeline .timeline-item .timeline-year {
  color: #b87333;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.timeline .timeline-item h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.timeline .timeline-item p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.accordion-button {
  color: #f1f5f9 !important;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  background: rgba(184, 115, 51, 0.1) !important;
  color: #e67e22 !important;
}
.accordion-button::after {
  filter: invert(1);
}

.cta-section {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.3), rgba(184, 115, 51, 0.1));
}
.cta-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.cta-section p {
  color: #94a3b8;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.footer-custom {
  background: #111827;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}
.footer-custom .footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-custom .footer-brand .brand-icon {
  color: #e67e22;
}
.footer-custom .footer-desc {
  color: #94a3b8;
  font-size: 0.95rem;
  max-width: 300px;
  margin-bottom: 1.5rem;
}
.footer-custom .footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-custom .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-custom .footer-links li {
  margin-bottom: 0.75rem;
}
.footer-custom .footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.footer-custom .footer-links a:hover {
  color: #e67e22;
}
.footer-custom .footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #94a3b8;
  font-size: 0.95rem;
}
.footer-custom .footer-contact-item i, .footer-custom .footer-contact-item svg {
  color: #b87333;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.footer-custom .footer-contact-item a {
  color: #94a3b8;
  text-decoration: none;
}
.footer-custom .footer-contact-item a:hover {
  color: #e67e22;
}
.footer-custom .footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-custom .footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: #94a3b8;
  transition: all 0.2s ease;
  text-decoration: none;
}
.footer-custom .footer-social a:hover {
  background: #e67e22;
  color: #fff;
  transform: translateY(-3px);
}
.footer-custom .footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: #94a3b8;
  font-size: 0.875rem;
}

.floating-contact {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
@media (max-width: 576px) {
  .floating-contact {
    right: 1rem;
    bottom: 1rem;
  }
}
.floating-contact .floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.floating-contact .floating-btn i {
  font-size: 1.5rem;
}
.floating-contact .floating-btn:hover {
  transform: translateY(-4px) scale(1.05);
  color: #fff;
}
.floating-contact .floating-btn .floating-btn-label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 14, 23, 0.92);
  color: #f1f5f9;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.floating-contact .floating-btn .floating-btn-label::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(10, 14, 23, 0.92);
}
.floating-contact .floating-btn:hover .floating-btn-label {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 576px) {
  .floating-contact .floating-btn {
    width: 50px;
    height: 50px;
  }
  .floating-contact .floating-btn i {
    font-size: 1.35rem;
  }
  .floating-contact .floating-btn .floating-btn-label {
    display: none;
  }
}
.floating-contact .floating-btn-whatsapp {
  background: #25d366;
}
.floating-contact .floating-btn-whatsapp:hover {
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}
.floating-contact .floating-btn-phone {
  background: linear-gradient(135deg, #b87333, #e67e22);
}
.floating-contact .floating-btn-phone:hover {
  box-shadow: 0 8px 28px rgba(230, 126, 34, 0.4);
}
