@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

:root {
  /* Dorados metálicos */
  --gold-base: #C5A059;
  --gold-light: #FEEBC1;
  --gold-dark: #7F592B;

  /* Verde esmeralda */
  --emerald-base: #0B3B24;
  --emerald-light: #1E6E45;

  /* Fondos oscuros premium */
  --black-deep: #0A0A0A;
  --black-soft: #1F1F1F;

  /* Alias semánticos */
  --color-primary: var(--gold-base);
  --color-secondary: var(--emerald-base);
  --color-bg-dark: var(--black-deep);
  
  /* Auxiliares */
  --text-light: #f9fafb;
  --text-muted: #9ca3af;

  --white-soft: #f8f9fa;  
}

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background: radial-gradient(
    circle at top right,
    #1F1F1F,
    #0A0A0A 70%
  );
  color: #ffffff;
}

/* =========================
   NAVBAR
========================= */
.custom-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 0;
  z-index: 1050;
  background: transparent;
  transition: all 0.4s ease;
}

.custom-navbar.scrolled {
  background: linear-gradient(135deg, var(--black-deep), var(--emerald-base));
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  padding: 10px 0;
}

.custom-navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: var(--gold-base) !important;
}

.logo-navbar {
  width: 280px;
}


.navbar-brand img {
  height: 100px;
  width: auto;
}

.social-icon {
  color: #ffffff;
}

.social-icon:hover {
  color: var(--gold-light);
}



/* Dropdown */
.custom-navbar .dropdown-menu {
  background: var(--black-soft);
  border: 1px solid var(--gold-dark);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.custom-navbar .dropdown-item {
  color: var(--gold-light);
}

.custom-navbar .dropdown-item:hover {
  background: var(--gold-base);
  color: var(--black-deep);
}


        .about-hero {
            background: var(--black-deep);   
            padding: 120px 0 80px;
            text-align: center;
            color: var(--white-soft);
            border-bottom: 3px solid var(--gold-base);
        }

        
        .about-hero .container{
            background: linear-gradient(135deg, var(--black-deep), var(--emerald-base));
        }


/* SECCIÓN CONTACTO */
.contact-main-section {
    padding: 100px 0;
    background-color: var(--black-soft); 
}

.title-contact {
    color: var(--gold-light); /* Dorado sobre fondo oscuro */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.title-contact::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold-base);
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03); /* Vidrio sutil */
    border-radius: 12px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    transition: all 0.3s ease;
}

.contact-method-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--gold-base);
}

.method-text strong {
    color: var(--white-soft); /* Texto claro sobre fondo oscuro */
    font-size: 1.1rem;
}

/* FORMULARIO */
.contact-form-container {
    background: var(--black-deep);
    padding: 50px;
    border-radius: 15px;
    color: white;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    border: 1px solid var(--gold-dark);
}

/* Estilo para los inputs para que se vean modernos */
.premium-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.2);
    color: white;
    padding: 15px;
    margin-bottom: 10px;
}

.premium-form .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-base);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.2);
    color: white;
}

/* Redes Sociales */
.social-contact-box {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-contact-box a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-deep);
    color: var(--gold-base);
    border-radius: 50%;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 1px solid var(--gold-dark);
    text-decoration: none;
}

.social-contact-box a:hover {
    background: var(--gold-base);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.btn-emerald-gold {
    background: linear-gradient(135deg, var(--emerald-base), var(--emerald-light));
    color: white;
    border: 1px solid var(--gold-base);
    padding: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    transition: all 0.4s ease;
    margin-top: 10px;
}

.btn-emerald-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(11, 59, 36, 0.4);
    filter: brightness(1.1);
    color: var(--gold-light);
}

/* ======= FOOTER PREMIUM ======= */
.site-footer {
  position: relative;
  background: linear-gradient(135deg, #0A0A0A, #0B3B24);
  color: #ffffff;
  padding: 80px 0 20px;
  border-top: 2px solid #C5A059;
  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(197,160,89,.18), transparent 70%);
  opacity: .35;
}

/* GRID */
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

/* BRAND SECTION */
.footer-logo {
  width: 220px;
  margin-bottom: 14px;
}

.footer-desc {
  color: #e5e7eb;
  font-size: .9rem;
  margin-bottom: 10px;
  max-width: 320px;
}

.footer-badge {
  display: inline-block;
  color: #C5A059;
  border: 1px solid #C5A059;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: .8rem;
  letter-spacing: .5px;
}

/* TITULOS */
.footer-column h4 {
  color: #FEEBC1;
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: .6px;
}

/* LISTAS */
.footer-column ul { list-style: none; padding: 0; }

.footer-column ul li { margin-bottom: 8px; }

.footer-column a {
  color: #e5e7eb;
  text-decoration: none;
  transition: .25s;
}

.footer-column a:hover {
  color: #C5A059;
  padding-left: 4px;
}

/* ICON TEXT */
.footer-column p i {
  color: #C5A059;
  margin-right: 6px;
}

/* SOCIAL */
.footer-social a {
  color: #ffffff;
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  margin-right: 10px;
  transition: .25s;
}

.footer-social a:hover {
  background: rgba(197,160,89,.25);
  border-color: #C5A059;
  transform: translateY(-2px);
}

/* BOTTOM LINE */
.footer-bottom {
  text-align: center;
  margin-top: 35px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.15);
  color: #d1d5db;
  font-size: .85rem;
}

/* BOTÓN FLOTANTE WHATSAPP */
.btn-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25D366;
  color: #ffffff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
  z-index: 9999;
}

/* Hover */
.btn-whatsapp:hover {
  background-color: #1ebe5c;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.35);
}

/* RESPONSIVE */
@media(max-width:900px){
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .btn-whatsapp {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 24px;
  }  
}

@media(max-width:600px){
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer { padding: 60px 0 20px; }
}

