:root{
  --bg1:#2b0000;
  --bg2:#000;
  --card:#1a0000;
  --border:#4a0000;
  --gold:#e4b04a;
  --text:#f5e6c8;
  --red:#a00000;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family:'Inter', sans-serif;
  background: radial-gradient(circle at top, var(--bg1), var(--bg2));
  color:var(--text);
}

img{ max-width:100%; height:500px; display:block; }

.header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:14px 20px;
  background:#140000;
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:50;
}

.logo{
  font-family:'Cinzel', serif;
  font-size:20px;
  white-space:nowrap;
}

.phone{
  color:var(--gold);
  font-weight:600;
  font-size:14px;
  white-space:nowrap;
}

.hero{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:28px;
  padding:40px 20px;
  align-items:center;
}

.hero-text h1{
  font-family:'Cinzel', serif;
  font-size:40px;
  line-height:1.1;
  margin:0 0 10px 0;
}

.hero-text p{
  margin:0;
  max-width:52ch;
  opacity:0.95;
}

.hero-img img{
  width:100%;
  border-radius:12px;
  border:1px solid var(--border);
}

.btn{
  display:inline-block;
  background: linear-gradient(45deg, var(--red), var(--gold));
  color:#000;
  padding:12px 18px;
  text-decoration:none;
  margin-top:16px;
  font-weight:800;
  border-radius:10px;
  text-align:center;
}

.services{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:18px;
  padding:20px 20px 44px;
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  text-align:center;
  padding:14px;
}

.card img{
  border-radius:10px;
  border:1px solid rgba(228,176,74,.18);
}

.card h3{
  margin:12px 0 6px;
  font-family:'Cinzel', serif;
  font-size:18px;
}

.card p{
  margin:0 0 10px;
  font-size:14px;
  opacity:0.95;
}

.btn-small{
  display:inline-block;
  margin-top:6px;
  background:var(--red);
  color:white;
  padding:9px 14px;
  text-decoration:none;
  border-radius:10px;
  font-weight:700;
  font-size:13px;
}

.extras{
  text-align:center;
  padding:44px 20px;
  border-top:1px solid rgba(255,255,255,.06);
}

.extras h2{
  font-family:'Cinzel', serif;
  margin:0 0 18px;
  font-size:26px;
}

.extra-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:18px;
  margin:18px 0 22px;
}

.extra{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  text-align:left;
}

.extra img{
  width:100%;
  height:auto;
}

.extra h4{
  margin:12px 14px 14px;
  font-family:'Cinzel', serif;
  font-size:16px;
}

.contact{
  background:#100000;
  padding:44px 20px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,.06);
}

.contact h2{
  font-family:'Cinzel', serif;
  margin:0 0 10px;
  font-size:28px;
}

.big-phone{
  font-size:28px;
  color:var(--gold);
  margin:12px 0 18px;
  font-weight:800;
}

.footer{
  background:black;
  text-align:center;
  padding:18px 14px;
  font-size:12px;
  opacity:0.9;
}

/* ✅ RESPONSIVE */
@media (max-width: 1024px){
  .services{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .extra-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .header{
    padding:12px 14px;
  }
  .logo{ font-size:18px; }
  .phone{ font-size:13px; }
  .hero{
    padding:26px 14px;
    gap:16px;
  }
  .hero-text h1{
    font-size:28px;
  }
  .btn{
    width:100%;
  }
  .services{
    grid-template-columns: 1fr;
    padding:14px 14px 34px;
  }
  .extra-grid{
    grid-template-columns: 1fr;
  }
  .extras{
    padding:34px 14px;
  }
  .contact{
    padding:34px 14px;
  }
  .big-phone{
    font-size:24px;
  }
}

/* ===== HERO FULL BACKGROUND (FORZADO) ===== */
.hero-full{
  position: relative;
  width: 100%;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 70px 20px;
  overflow: hidden;
}

/* ✅ aquí definimos la imagen de fondo SIN variables */
.hero-full__bg{
  position: absolute;
  inset: 0;
  background: url("../img/hero.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

/* ✅ overlay oscuro */
.hero-full__overlay{
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(0,0,0,.25), rgba(0,0,0,.82));
}

/* ✅ contenido encima */
.hero-full__content{
  position: relative;
  z-index: 2;
  max-width: 680px;
  background: rgba(20,0,0,.38);
  border: 1px solid rgba(228,176,74,.16);
  border-radius: 16px;
  padding: 24px 22px;
  backdrop-filter: blur(4px);
}

.hero-full__content h1{
  margin: 0 0 10px 0;
  font-family: 'Cinzel', serif;
  font-size: 46px;
  line-height: 1.05;
}

.hero-full__content p{
  margin: 0;
  opacity: .95;
  max-width: 55ch;
}

/* ✅ móvil */
@media (max-width: 768px){
  .hero-full{
    min-height: 520px;
    padding: 48px 14px;
  }
  .hero-full__bg{
    background-position: 65% center; /* ajusta el foco en móvil */
  }
  .hero-full__content{
    padding: 18px 16px;
  }
  .hero-full__content h1{
    font-size: 30px;
  }
  .btn{
    width: 100%;
    text-align: center;
  }
}

.about{
  background: linear-gradient(180deg, #0b0000, #150000);
  padding: 70px 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.about-container{
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.about-img img{
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(228,176,74,.25);
  box-shadow: 0 0 40px rgba(0,0,0,.6);
}

.about-text h2{
  font-family: 'Cinzel', serif;
  font-size: 32px;
  margin-bottom: 15px;
}

.about-text p{
  line-height: 1.6;
  margin-bottom: 12px;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px){
  .about-container{
    grid-template-columns: 1fr;
  }
  .about-text h2{
    font-size: 26px;
  }
}

.works{
  background: linear-gradient(180deg, #150000, #0b0000);
  padding: 70px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.06);
}

.works-container{
  max-width: 1100px;
  margin: auto;
}

.works h2{
  font-family: 'Cinzel', serif;
  font-size: 32px;
  margin-bottom: 10px;
}

.works-subtitle{
  opacity: 0.9;
  margin-bottom: 40px;
}

.works-grid{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.works-grid img{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(228,176,74,.25);
  box-shadow: 0 0 25px rgba(0,0,0,.6);
  transition: transform .3s ease;
}

.works-grid img:hover{
  transform: scale(1.05);
}

.works-note{
  font-size: 13px;
  opacity: 0.75;
  margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 768px){
  .works-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px){
  .works-grid{
    grid-template-columns: 1fr;
  }
}


.logo img{
  height: 60px;   /* puedes subir a 50px si lo quieres más grande */
  width: auto;
  display: block;
}

.phone{
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e4b04a;
  font-weight: 600;
  font-size: 14px;
}

.phone img{
  width: 18px;
  height: 18px;
}

.phone a{
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e4b04a;
  text-decoration: none;
}











.btn,
.btn-small{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn img{
  width: 18px;
  height: 18px;
}

.btn-small img{
  width: 22px;
  height: 22px;
}

.smoke-overlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: url("../img/smoke.png") center/cover repeat;
  opacity: 0.08;   /* intensidad del humo */
  z-index: 1;
  animation: smokeMove 120s linear infinite;
}

/* todo el contenido por encima del humo */
body > *:not(.smoke-overlay){
  position: relative;
  z-index: 2;
}

@keyframes smokeMove{
  from { background-position: 0 0; }
  to { background-position: 1000px 500px; }
}




.final-cta{
  background: linear-gradient(180deg, #0b0000, #000);
  padding: 80px 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.final-container{
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.final-img img{
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(228,176,74,.25);
  box-shadow: 0 0 50px rgba(0,0,0,.8);
}

.final-text h2{
  font-family: 'Cinzel', serif;
  font-size: 34px;
  margin-bottom: 18px;
}

.final-text p{
  line-height: 1.6;
  margin-bottom: 14px;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px){
  .final-container{
    grid-template-columns: 1fr;
  }
  .final-text h2{
    font-size: 26px;
  }
}





.whatsapp-float{
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  display: flex !important;
  align-items: center;
  gap: 10px;
  background: #25D366;
  padding: 10px 14px 10px 18px;
  border-radius: 40px;
  color: #000;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  z-index: 99999 !important;
  box-shadow: 0 0 25px rgba(0,0,0,.7);
}

.whatsapp-float img{
  width: 28px;
  height: 28px;
}

.whatsapp-text{
  white-space: nowrap;
}

/* Móvil: solo icono */
@media (max-width: 600px){
  .whatsapp-text{
    display: inline;
    font-size: 13px;
  }
  .whatsapp-float{
    padding: 10px 12px 10px 14px;
    border-radius: 40px;
  }
  .whatsapp-float img{
    width: 24px;
    height: 24px;
  }
}


.whatsapp-float{
  animation: pulse 2s infinite;
}

@keyframes pulse{
  0%{ transform: scale(1); }
  50%{ transform: scale(1.05); }
  100%{ transform: scale(1); }
}



.faq{
  background: linear-gradient(180deg, #0b0000, #140000);
  padding: 80px 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.faq-container{
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.faq h2{
  font-family: 'Cinzel', serif;
  font-size: 32px;
  margin-bottom: 10px;
}

.faq-subtitle{
  opacity: 0.9;
  margin-bottom: 40px;
}

.faq-grid{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.faq-box{
  background: rgba(20,0,0,.6);
  border: 1px solid rgba(228,176,74,.25);
  border-radius: 14px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 0 30px rgba(0,0,0,.6);
}

.faq-box h4{
  color: #e4b04a;
  margin-bottom: 10px;
}

.faq-box p{
  line-height: 1.6;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px){
  .faq-grid{
    grid-template-columns: 1fr;
  }
}



.top-info{
  background: linear-gradient(90deg, #1a0000, #000);
  border-bottom: 1px solid rgba(228,176,74,.25);
  padding: 8px 0;
  font-size: 13px;
  color: #e4b04a;
}

.top-info-container{
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.top-info-container span{
  opacity: 0.9;
  white-space: nowrap;
}


.section-divider{
  width: 100%;
  height: 60px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-divider::before{
  content:"";
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(228,176,74,.8), 
    transparent
  );
}

.section-divider::after{
  content:"✦";
  position: absolute;
  color: rgba(228,176,74,.9);
  font-size: 18px;
  background: #000;
  padding: 0 12px;
}


.urgency{
  background:#250000;
  color:#e4b04a;
  text-align:center;
  padding:8px;
  font-size:13px;
  border-bottom:1px solid rgba(228,176,74,.25);
}