/*
Theme Name: Reformas Orihuela
Theme URI: https://reformasenorihuela.com
Author: Daniel
Version: 2.2
Description: Tema premium para Reformas en Orihuela
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root{
  --bg:#f6f3ee;
  --bg-2:#fbf9f6;
  --surface:#ffffff;
  --text:#1a1a1a;
  --muted:#68645e;
  --line:#ddd5ca;
  --accent:#9b7b58;
  --accent-dark:#7f6244;
  --dark:#171717;
  --radius:18px;
  --shadow:0 12px 30px rgba(0,0,0,.05);
  --container:min(1180px, 90%);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:
    linear-gradient(rgba(246,243,238,.96), rgba(246,243,238,.96)),
    url('https://www.transparenttextures.com/patterns/concrete-wall.png');
  color:var(--text);
  font-family:'Inter', sans-serif;
  line-height:1.65;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

.container{
  width:var(--container);
  margin:0 auto;
}

.section{
  padding:110px 0;
}

.section-tight{
  padding:42px 0 36px;
}

.section-alt{
  background:rgba(255,255,255,.38);
  backdrop-filter:blur(2px);
}

.intro-section{
  padding-top:28px;
  padding-bottom:90px;
}

.services-section{
  padding-top:78px;
  padding-bottom:88px;
}

.eyebrow{
  display:inline-block;
  margin-bottom:18px;
  font-size:.76rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--accent);
  font-weight:600;
}

h1,h2,h3{
  margin:0 0 18px;
  color:var(--text);
  letter-spacing:-.03em;
}

h1,h2{
  font-family:'Cormorant Garamond', serif;
  font-weight:600;
  line-height:.95;
}

h1{
  font-size:clamp(3.2rem, 7vw, 6rem);
  max-width:820px;
}

h2{
  font-size:clamp(2.3rem, 4vw, 4rem);
  max-width:900px;
  position:relative;
}

h2::after{
  content:"";
  display:block;
  width:56px;
  height:1px;
  background:rgba(155,123,88,.4);
  margin-top:18px;
}

h3{
  font-size:1.15rem;
  font-weight:600;
}

p{
  margin:0 0 18px;
  color:var(--muted);
}

.lead{
  font-size:1.06rem;
  max-width:720px;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(246,243,238,.85);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(221,213,202,.7);
  transition:background .25s ease, box-shadow .25s ease, min-height .25s ease;
}

.site-header.is-scrolled{
  background:rgba(246,243,238,.96);
  box-shadow:0 8px 24px rgba(0,0,0,.06);
}

.site-header-inner{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.site-brand{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.site-brand strong{
  font-size:.95rem;
  font-weight:600;
  letter-spacing:-.01em;
}

.site-brand span{
  font-size:.75rem;
  color:var(--muted);
  opacity:.7;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 24px;
  border-radius:999px;
  border:1px solid transparent;
  background:var(--dark);
  color:#fff;
  font-weight:500;
  transition:.25s ease;
}

.btn:hover{
  transform:translateY(-1px);
  background:#000;
}

.btn-outline{
  background:transparent;
  border-color:rgba(255,255,255,.35);
  color:#fff;
}

.btn-soft{
  background:transparent;
  border-color:var(--line);
  color:var(--text);
}

.header-cta{
  background:transparent;
  color:#111;
  border:1px solid rgba(0,0,0,.18);
  padding:10px 18px;
  font-size:.95rem;
  font-weight:500;
  letter-spacing:.01em;
  box-shadow:none;
  transition:all .3s ease;
  position:relative;
  overflow:hidden;
}

.header-cta::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.05);
  opacity:0;
  transition:opacity .3s ease;
}

.header-cta:hover::after{
  opacity:1;
}

.header-cta:hover{
  background:#111;
  color:#fff;
  border-color:#111;
  transform:translateY(-1px);
}

.site-header.is-scrolled .header-cta{
  border-color:rgba(0,0,0,.3);
}

/* HERO */
.hero{
  position:relative;
  display:flex;
  align-items:center;
  min-height:78vh;
  padding:110px 0 70px;
  overflow:hidden;
  background:
    linear-gradient(90deg, rgba(10,10,10,.72) 0%, rgba(10,10,10,.52) 45%, rgba(10,10,10,.24) 100%),
    url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color:#fff;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:radial-gradient(circle at 30% 40%, rgba(0,0,0,.2), transparent 60%);
}

.hero-inner{
  max-width:620px;
  position:relative;
  z-index:2;
}

.hero h1{
  font-size:clamp(2.6rem, 4.8vw, 4.6rem);
  line-height:.95;
  letter-spacing:-.02em;
  color:#fff;
}

.hero p{
  color:rgba(255,255,255,.84);
}

.hero .lead{
  color:rgba(255,255,255,.75);
  max-width:560px;
  font-size:1.02rem;
  line-height:1.55;
  margin-bottom:24px;
}

.hero .eyebrow{
  color:#c49a6c;
}

.hero .btn{
  background:#c49a6c;
  color:#111;
}

.hero .btn-outline{
  border-color:rgba(255,255,255,.4);
  color:#fff;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:20px;
}

.hero-meta{
  margin-top:16px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  color:rgba(255,255,255,.88);
  font-size:.9rem;
}

.hero-meta div{
  position:relative;
  padding-left:18px;
}

.hero-meta div::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--accent);
}

.hero-note{
  margin-top:18px;
  max-width:340px;
  padding:22px 24px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(6px);
  border-radius:18px;
}

.hero-note span{
  display:block;
  margin-bottom:10px;
  font-size:.76rem;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:rgba(255,255,255,.68);
}

.hero-note strong{
  display:block;
  font-size:1rem;
  line-height:1.45;
  color:#fff;
  font-weight:500;
}

/* TRUST BAND */
.trust-band{
  display:flex;
  gap:28px;
  flex-wrap:wrap;
  align-items:center;
  opacity:.85;
  margin-top:8px;
}

.trust-band span{
  position:relative;
  padding-left:16px;
  font-size:.95rem;
  color:var(--muted);
  line-height:1.5;
  white-space:nowrap;
}

.trust-band span::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--accent);
  opacity:.8;
}

/* INTRO */
.intro-grid{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:72px;
  align-items:center;
}

.intro-copy{
  max-width:760px;
}

.intro-copy h2{
  max-width:760px;
  font-size:clamp(2.5rem, 4.3vw, 4.6rem);
  line-height:1.05;
  letter-spacing:-.02em;
}

.intro-copy .lead{
  max-width:640px;
  font-size:1.08rem;
  line-height:1.7;
}

.panel{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:34px;
  box-shadow:var(--shadow);
}

.panel-dark{
  background:linear-gradient(135deg,#111 0%, #1c1c1c 100%);
  color:#fff;
  border:none;
  position:relative;
  overflow:hidden;
}

.panel-dark::after{
  content:"";
  position:absolute;
  right:-50px;
  bottom:-50px;
  width:180px;
  height:180px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(155,123,88,.20) 0%, rgba(155,123,88,0) 70%);
}

.panel-dark h3,
.panel-dark p{
  position:relative;
  z-index:2;
  color:#fff;
}

.intro-panel{
  padding:40px 38px;
  border-radius:24px;
  box-shadow:0 24px 60px rgba(0,0,0,.14);
  transform:translateY(20px);
}

.panel-kicker{
  display:inline-block;
  margin-bottom:14px;
  font-size:.72rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.58);
  position:relative;
  z-index:2;
}

.intro-panel h3{
  font-size:1.45rem;
  margin-bottom:16px;
}

.intro-panel::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:60px;
  height:1px;
  background:rgba(185,152,118,.6);
  z-index:2;
}

/* SERVICES */
.services-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:48px;
  margin-top:56px;
}

.service-item{
  position:relative;
  padding-top:26px;
  border-top:1px solid rgba(221,213,202,.8);
  transition:.3s ease;
  max-width:360px;
}

.service-item:hover{
  transform:translateY(-4px);
}

.service-top{
  display:flex;
  align-items:baseline;
  gap:16px;
  margin-bottom:18px;
}

.service-item .num{
  font-family:'Cormorant Garamond', serif;
  font-size:1.8rem;
  color:var(--accent);
  opacity:.8;
}

.service-item h3{
  font-size:1.2rem;
  margin:0;
}

.services-section h2{
  font-size:clamp(2.2rem, 3.8vw, 3.6rem);
}

.service-item p{
  max-width:360px;
  line-height:1.7;
  color:#5f5a54;
}

.service-link{
  margin-top:18px;
  display:inline-block;
  color:var(--accent-dark);
  font-weight:500;
  letter-spacing:.01em;
  position:relative;
}

.service-link::after{
  content:"";
  display:block;
  width:0%;
  height:1px;
  background:var(--accent-dark);
  transition:.3s ease;
  margin-top:4px;
}

.service-link:hover::after{
  width:100%;
}

/* PRICING */
.price-wrap{
  display:grid;
  grid-template-columns:1fr .95fr;
  gap:54px;
  align-items:start;
}

.pricing-card{
  background:#f7f4ef;
  border:1px solid rgba(221,213,202,.9);
  border-radius:20px;
  padding:34px;
  box-shadow:0 18px 40px rgba(0,0,0,.05);
}

.pricing-item{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:24px;
  padding:18px 0;
  border-bottom:1px solid rgba(0,0,0,.06);
  transition:.25s ease;
}

.pricing-item:last-child{
  border-bottom:none;
}

.pricing-item:hover{
  transform:translateX(4px);
}

.pricing-title{
  display:block;
  font-weight:600;
  margin-bottom:4px;
}

.pricing-note{
  display:block;
  font-size:.85rem;
  color:#7a756f;
}

.pricing-price{
  font-weight:600;
  font-size:1.05rem;
  white-space:nowrap;
}

.pricing-disclaimer{
  margin-top:16px;
  font-size:.88rem;
  color:#7a756f;
  max-width:520px;
}

/* PROCESS */
.process-line{
  position:relative;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:28px;
  margin-top:40px;
}

.process-line::before{
  content:"";
  position:absolute;
  top:24px;
  left:0;
  right:0;
  height:1px;
  background:rgba(0,0,0,.05);
  z-index:0;
}

.process-item{
  position:relative;
  z-index:1;
  padding-top:34px;
}

.process-item .step{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#1e1e1e;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.9rem;
  font-weight:500;
  margin-bottom:22px;
  box-shadow:0 8px 18px rgba(0,0,0,.08);
  border:1px solid rgba(255,255,255,.05);
}

.process-item h3{
  font-size:1.2rem;
  margin-bottom:14px;
}

.process-item p{
  color:#5f5a54;
  line-height:1.7;
  max-width:230px;
}

.section-alt .lead{
  max-width:760px;
}

.process-item:hover .step{
  transform:translateY(-2px);
  transition:.25s ease;
}

/* PROJECTS */
.projects-showcase{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px;
  margin-top:36px;
}

.project-feature,
.project-secondary{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  background:#ddd;
  transition:.35s ease;
}

.project-feature{
  min-height:460px;
}

.project-secondary{
  min-height:216px;
}

.project-feature:hover,
.project-secondary:hover{
  transform:translateY(-4px);
}

.project-media{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transition:transform .8s ease;
}

.project-feature:hover .project-media,
.project-secondary:hover .project-media{
  transform:scale(1.05);
}

.project-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.75),
    rgba(0,0,0,.35)
  );
}

.project-content{
  position:absolute;
  left:28px;
  right:28px;
  bottom:28px;
  z-index:2;
  color:#fff;
}

.project-content h3{
  color:#fff;
  font-size:1.4rem;
  line-height:1.3;
}

.project-content p{
  color:#fff;
  font-size:1rem;
  line-height:1.55;
}

.projects-stack{
  display:grid;
  gap:28px;
}

.project-result{
  display:block;
  margin-top:12px;
  font-size:.85rem;
  color:#d9b995;
  letter-spacing:.03em;
  font-weight:500;
}

.project-result::before{
  content:"— ";
  opacity:.6;
}

/* TESTIMONIALS */
.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.quote{
  background:#f7f4ef;
  border:1px solid rgba(221,213,202,.8);
  border-radius:16px;
  padding:26px;
  transition:.25s ease;
}

.quote:hover{
  transform:translateY(-3px);
}

.quote p{
  font-style:italic;
  margin-bottom:18px;
  color:#3e3a36;
}

.quote-meta{
  display:flex;
  flex-direction:column;
  gap:4px;
  font-size:.85rem;
  color:#7a756f;
}

.quote-meta strong{
  font-style:normal;
  font-weight:600;
  color:#2a2a2a;
}

/* COVERAGE */
.zones-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

.coverage-item{
  transition:.25s ease;
}

.coverage-item:hover{
  transform:translateY(-3px);
}

.zone{
  padding:18px 0;
  border-bottom:1px solid var(--line);
  font-weight:500;
}

.coverage-item p{
  margin-top:12px;
  font-size:.9rem;
  color:#6f6a64;
  line-height:1.6;
  max-width:280px;
}

/* FAQ */
.faq-list{
  display:grid;
  gap:14px;
  margin-top:36px;
}

.faq-item{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:16px;
  padding:24px 26px;
  overflow:hidden;
}

.faq-toggle{
  width:100%;
  background:none;
  border:none;
  padding:0;
  text-align:left;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  font:inherit;
  color:inherit;
}

.faq-toggle::after{
  content:"+";
  font-size:1.4rem;
  line-height:1;
  color:var(--accent);
  transition:transform .25s ease;
}

.faq-item.is-open .faq-toggle::after{
  transform:rotate(45deg);
}

.faq-content{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

.faq-content-inner{
  padding-top:14px;
}

.faq-content-inner p{
  color:#5f5a54;
  line-height:1.7;
  font-size:.95rem;
  max-width:650px;
}

.faq-toggle h3{
  font-weight:500;
}

/* CTA */
.cta{
  background:
    linear-gradient(135deg,rgba(10,10,10,.96) 0%, rgba(22,22,22,.96) 100%),
    url('https://images.unsplash.com/photo-1513694203232-719a280e022f?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  border-radius:28px;
  padding:78px 64px;
  color:#fff;
  position:relative;
  overflow:hidden;
  box-shadow:0 28px 60px rgba(0,0,0,.18);
}

.cta::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.18) 100%);
}

.cta::after{
  content:"";
  position:absolute;
  right:-60px;
  bottom:-60px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(155,123,88,.28) 0%, rgba(155,123,88,0) 70%);
}

.cta h2,
.cta p,
.cta .btn,
.cta .eyebrow{
  position:relative;
  z-index:2;
  color:#fff;
}

.cta-split{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:48px;
  align-items:center;
}

.cta-copy{
  max-width:680px;
}

.cta-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:14px;
  margin-top:28px;
}

.cta-note{
  font-size:.9rem;
  color:rgba(255,255,255,.72);
  line-height:1.5;
}

.cta-form-wrap{
   display:flex;
  z-index:2;
  align-items:center;
    max-width: 400px;
  margin-left: auto;
  transform: translateY(10px);
}

.cta-form{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  padding:26px;
  backdrop-filter:blur(8px);
    width:100%;
  max-width:380px;
  margin-left:auto;
}

.form-row{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:16px;
}

.form-row label{
  font-size:.85rem;
  color:rgba(255,255,255,.78);
  letter-spacing:.01em;
}

.form-row input,
.form-row select,
.form-row textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:#fff;
  border-radius:12px;
  padding:14px 14px;
  font:inherit;
  outline:none;
  transition:border-color .25s ease, background .25s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder{
  color:rgba(255,255,255,.45);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus{
  border-color:rgba(185,152,118,.65);
  background:rgba(255,255,255,.08);
}

.form-row select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  padding:14px 44px 14px 14px;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23c49a6c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat:no-repeat;
  background-position:right 14px center;
  background-size:16px;
}

.form-row select option{
  color:#111;
  background:#fff;
}

.cta-submit-btn,
.cta-call-btn{
  background:#c49a6c;
  color:#111;
}

.cta-submit-btn:hover,
.cta-call-btn:hover{
  background:#d2aa7b;
  color:#111;
}

/* FOOTER */
.site-footer{
  padding:30px 0 40px;
  border-top:1px solid var(--line);
  font-size:.92rem;
  color:var(--muted);
}

/* REVEAL */
.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .8s ease, transform .8s ease;
}

.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}
.site-footer{
  padding:56px 0 28px;
  border-top:1px solid var(--line);
  background:rgba(255,255,255,.35);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.3fr .9fr 1fr 1fr;
  gap:36px;
  align-items:start;
}

.footer-col h3,
.footer-col h4{
  margin:0 0 16px;
  color:var(--text);
}

.footer-col h3{
  font-size:1.35rem;
}

.footer-col h4{
  font-size:1rem;
  font-weight:600;
}

.footer-col p{
  color:var(--muted);
  margin:0 0 14px;
  line-height:1.7;
}

.footer-list{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-list li{
  margin-bottom:12px;
  color:var(--muted);
  line-height:1.6;
}

.footer-list a{
  color:inherit;
}

.footer-phone{
  display:inline-block;
  margin-top:6px;
  font-weight:600;
  color:var(--text);
}

.footer-btn{
  margin-top:8px;
}

.footer-bottom{
  margin-top:34px;
  padding-top:18px;
  border-top:1px solid rgba(221,213,202,.8);
}

.footer-bottom p{
  margin:0;
  font-size:.92rem;
  color:var(--muted);
}
.site-brand-logo{
  display:flex;
  align-items:center;
}

.site-brand-logo img{
  width: 300px;
  height:auto;
  display:block;
}
/* CONTENEDOR FORM */
.wpforms-dark{
  background:
    linear-gradient(180deg, rgba(20,20,20,.9), rgba(15,15,15,.85));
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  padding:28px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
   box-shadow:
    0 30px 80px rgba(0,0,0,.7),
    inset 0 1px 0 rgba(255,255,255,.04);
    max-width: 340px;
}

/* CAMPOS */
.wpforms-dark .wpforms-field{
  margin-bottom:18px !important;
    width:100% !important;
  max-width:100% !important;
}
.wpforms-dark .wpforms-field input,
.wpforms-dark .wpforms-field select,
.wpforms-dark .wpforms-field textarea{
  width:100% !important;
  max-width:100% !important;
}

/* LABELS */
.wpforms-dark .wpforms-field-label{
  font-size:.78rem !important;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:rgba(255,255,255,.55) !important;
  margin-bottom:6px !important;
}

/* INPUTS */
.wpforms-dark input,
.wpforms-dark select,
.wpforms-dark textarea{
  width:100% !important;
  border:1px solid rgba(255,255,255,.08) !important;
  background:rgba(255,255,255,.03) !important;
  color:#fff !important;
  border-radius:10px !important;
  padding:12px 14px !important;
  font-size:.9rem !important;
  transition:all .25s ease !important;
}

/* HOVER */
.wpforms-dark input:hover,
.wpforms-dark select:hover,
.wpforms-dark textarea:hover{
  border-color:rgba(255,255,255,.18) !important;
}

/* FOCUS */
.wpforms-dark input:focus,
.wpforms-dark select:focus,
.wpforms-dark textarea:focus{
  border-color:#c49a6c !important;
  background:rgba(255,255,255,.05) !important;
  box-shadow:0 0 0 1px rgba(196,154,108,.25);
}

/* TEXTAREA */
.wpforms-dark textarea{
  min-height:110px !important;
  resize:none !important;
}

/* SELECT */
.wpforms-dark select{
  appearance:none !important;
  padding-right:40px !important;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23c49a6c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat:no-repeat;
  background-position:right 12px center;
}

/* BOTÓN */
.wpforms-dark button[type="submit"]{
  width:100% !important;
  margin-top:8px;
  background:#c49a6c !important;
  color:#111 !important;
  border:none !important;
  border-radius:999px !important;
  padding:14px !important;
  font-weight:600 !important;
  letter-spacing:.02em;
  font-size:.95rem;
  transition:all .25s ease;
    box-shadow:
    0 8px 20px rgba(196,154,108,.25),
    inset 0 1px 0 rgba(255,255,255,.2);
}

/* HOVER BOTÓN */
.wpforms-dark button[type="submit"]:hover{
  background:#d2aa7b !important;
  transform:translateY(-1px);
  box-shadow:0 10px 25px rgba(196,154,108,.25);
}

/* MENSAJE OK */
.wpforms-dark .wpforms-confirmation-container-full{
  background:rgba(255,255,255,.05) !important;
  border:1px solid rgba(255,255,255,.1) !important;
  border-radius:12px;
  color:#fff !important;
}

/* ERRORES */
.wpforms-dark .wpforms-error{
  font-size:.75rem !important;
  margin-top:4px;
}
.wpforms-dark input,
.wpforms-dark select,
.wpforms-dark textarea{
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.02)
  ) !important;

  border:1px solid rgba(255,255,255,0.06) !important;
}
.wpforms-dark input,
.wpforms-dark select,
.wpforms-dark textarea{
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)) !important;

  border:1px solid rgba(255,255,255,.06) !important;

  box-shadow:
    inset 0 1px 2px rgba(0,0,0,.4);
}
.wpforms-dark::after{
  content:"";
  position:absolute;
  bottom:-60px;
  right:-60px;
  width:220px;
  height:220px;
  background: radial-gradient(circle, rgba(196,154,108,.12), transparent 70%);
  filter: blur(50px);
  pointer-events:none;
}
.wpforms-dark .wpforms-field-phone input{
  padding-left:48px !important;
}
.wpforms-dark .wpforms-field-phone{
  position:relative;
}

.wpforms-dark .wpforms-field-phone .wpforms-field-row{
  position:relative;
}
.wpforms-dark .wpforms-field-select select{
  width:100% !important;
}
.wpforms-dark input::placeholder,
.wpforms-dark textarea::placeholder{
  color: rgba(255,255,255,.6) !important;
}
.by-brand{
  display:block;
  font-size:.7rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#c49a6c;
  margin-bottom:10px;
  opacity:.8;
}
.whatsapp-float{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:9999;

  display:flex;
  align-items:center;
  gap:10px;

  padding:14px 18px;
  border-radius:999px;

  background:#c49a6c;
  color:#111;

  font-size:.95rem;
  font-weight:500;

  box-shadow:0 10px 25px rgba(0,0,0,.15);

  transition:.3s ease;
}

.whatsapp-float:hover{
  transform:translateY(-2px);
  background:#d2aa7b;
}

.whatsapp-icon{
  display:flex;
  align-items:center;
  justify-content:center;

  width:34px;
  height:34px;
  border-radius:50%;

  background:#111;
  color:#fff;
}

.whatsapp-text{
  white-space:nowrap;
}

/* MOBILE */
@media (max-width: 768px){
  .whatsapp-float{
    right:16px;
    bottom:16px;
    padding:12px;
  }

  .whatsapp-text{
    display:none; /* solo icono en móvil */
  }
}

/* RESPONSIVE */
@media (max-width: 991px){

  :root{
    --container:min(100%, 92%);
  }

  .section{
    padding:72px 0;
  }

  .section-tight{
    padding:24px 0 20px;
  }

  .intro-section,
  .services-section{
    padding-top:48px;
    padding-bottom:72px;
  }

  h1{
    font-size:clamp(2.4rem, 10vw, 4rem);
    max-width:none;
  }

  h2{
    font-size:clamp(2rem, 8vw, 3rem);
    max-width:none;
  }

  .lead{
    max-width:none;
    font-size:1rem;
  }

  .site-header-inner{
    min-height:72px;
    gap:12px;
  }

  .site-brand{
    min-width:0;
  }

  .site-brand strong{
    font-size:.92rem;
  }

  .site-brand span{
    font-size:.72rem;
    line-height:1.35;
  }

  .header-cta{
    padding:10px 14px;
    font-size:.9rem;
    white-space:nowrap;
  }

  .hero{
    min-height:auto;
    padding:88px 0 44px;
    align-items:flex-end;
  }

  .hero-inner{
    max-width:none;
  }

  .hero h1{
    font-size:clamp(2.5rem, 11vw, 4rem);
    line-height:.96;
    margin-bottom:14px;
  }

  .hero .lead{
    max-width:none;
    font-size:1rem;
    line-height:1.55;
    margin-bottom:18px;
  }

  .hero-actions{
    flex-direction:column;
    align-items:stretch;
    gap:12px;
  }

  .hero-actions .btn{
    width:100%;
  }

  .hero-meta{
    flex-direction:column;
    gap:10px;
    font-size:.95rem;
  }

  .hero-note{
    max-width:none;
    padding:18px 18px;
  }

  .trust-band{
    gap:10px;
    margin-top:0;
  }

  .trust-band span{
    width:100%;
    white-space:normal;
    padding-left:14px;
    font-size:.92rem;
  }

  .intro-grid,
  .services-list,
  .price-wrap,
  .process-line,
  .projects-showcase,
  .testimonials-grid,
  .zones-grid,
  .cta-split{
    grid-template-columns:1fr !important;
  }

  .intro-grid{
    gap:32px;
  }

  .intro-copy,
  .intro-copy h2,
  .intro-copy .lead,
  .cta-copy{
    max-width:none;
  }

  .intro-panel{
    transform:none;
    padding:28px 24px;
  }

  .services-list{
    gap:30px;
    margin-top:36px;
  }

  .service-item{
    max-width:none;
  }

  .service-item p{
    max-width:none;
  }

  .price-wrap{
    gap:28px;
  }

  .pricing-card{
    padding:22px;
  }

  .pricing-item{
    flex-direction:column;
    gap:8px;
    align-items:flex-start;
  }

  .pricing-price{
    white-space:normal;
  }

  .process-line{
    gap:28px;
    margin-top:28px;
  }

  .process-line::before{
    display:none;
  }

  .process-item{
    padding-top:0;
    border-top:none;
  }

  .process-item p{
    max-width:none;
  }

  .project-feature{
    min-height:360px;
  }

  .project-secondary{
    min-height:220px;
  }

  .projects-stack{
    gap:20px;
  }

  .project-content{
    left:18px;
    right:18px;
    bottom:18px;
  }

  .project-content h3{
    font-size:1.2rem;
    line-height:1.25;
  }

  .project-content p{
    font-size:.95rem;
    line-height:1.5;
  }

  .quote{
    padding:22px;
  }

  .coverage-item p{
    max-width:none;
  }

  .faq-item{
    padding:20px 18px;
  }

  .faq-toggle{
    align-items:flex-start;
  }

  .faq-toggle h3{
    font-size:1.08rem;
    line-height:1.4;
  }

  .cta{
    padding:30px 20px;
    border-radius:22px;
  }

  .cta-actions{
    width:100%;
  }

  .cta-call-btn,
  .cta-submit-btn{
    width:100%;
  }

  .cta-form{
    padding:18px;
    border-radius:18px;
  }

  .form-row{
    margin-bottom:14px;
  }

  .form-row input,
  .form-row select,
  .form-row textarea{
    padding:13px 14px;
    font-size:16px;
  }

  .site-footer{
    padding:22px 0 28px;
    font-size:.88rem;
  }
    .site-brand-logo img{
    width:235px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .footer-bottom{
    margin-top:24px;
    padding-top:16px;
  }
    .site-header-inner{
    min-height:68px;
    gap:10px;
  }

  .site-brand{
    min-width:0;
    flex:1;
  }

  .site-brand-logo img{
    max-width:100%;
    width:235px;
  }

  .header-cta{
    padding:9px 12px;
    font-size:.86rem;
  }
    .cta-split{
    grid-template-columns:1fr;
    gap:24px;
    align-items: center;
  }

  .cta-copy{
    max-width:none;
  }

  .cta-form-wrap{
    width:100%;
  }

  .cta-form{
    padding:18px;
  }
}
