:root{
  /* Coral Coworking palette */
  --coral-cream:#F5EDE8;
  --coral-salmon:#F16C6C;
  --coral-cyan:#00C2D1;
  --coral-blue:#005F99;

  /* System */
  --bg: var(--coral-cream);
  --card: rgba(255,255,255,.86);
  --text:#0B1B24;
  --muted:#5B6B75;
  --brand: var(--coral-cyan);
  --brand2: var(--coral-blue);
  --accent: var(--coral-salmon);
  --line: rgba(0,0,0,.08);
  --shadow: 0 12px 30px rgba(0,0,0,.10);
  --radius:18px;
}


*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background: radial-gradient(1100px 550px at 15% -10%, rgba(0,194,209,.22), transparent 60%),
              radial-gradient(900px 500px at 90% 0%, rgba(0,95,153,.18), transparent 55%),
              var(--bg);
  color:var(--text);
}

a{color:var(--coral-blue);text-decoration:none}
a:hover{color:var(--coral-cyan)}
.container{width:min(1120px,92%);margin:0 auto}
.narrow{width:min(820px,92%);margin:0 auto}

.site-header{
  position:sticky;top:0;z-index:20;
  background: rgba(245,237,232,.78);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:14px;padding:14px 0;
}
.brand img{display:block}
.header-right{display:flex;align-items:center;gap:12px}
.cart{opacity:.9}
.lang-switch{display:flex;align-items:center;gap:8px;font-weight:600}
.lang-switch a{opacity:.75;color:var(--coral-blue)}
.lang-switch a.active{opacity:1;color:var(--coral-cyan)}
.nav{
  display:flex;align-items:center;gap:18px;
}
.nav a{opacity:1;font-weight:600;color:var(--coral-blue)}
.nav a:hover{color:var(--coral-cyan)}

.nav-toggle{
  display:none;
  background:transparent;border:1px solid var(--line);color:var(--text);
  padding:8px 10px;border-radius:12px;
}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 18px;border-radius:999px;font-weight:700;
  border:1px solid rgba(0,95,153,.18);
  transition: transform .15s ease, opacity .15s ease, background .15s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-cta{
  border:none;
  background:linear-gradient(90deg,var(--brand),var(--brand2));
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0,194,209,.22);
}
.btn-ghost{
  background: rgba(0,95,153,.08);
  border: 1px solid rgba(0,95,153,.16);
  color: var(--coral-blue);
}

.hero{
  position:relative;
  min-height: 100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}
.hero-bg{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
  filter:saturate(1.1);
  transform:scale(1.02);
}

.hero-video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero::after{
  content:"";
  position:absolute;inset:0;
  background: linear-gradient(90deg, rgba(0,95,153,.78), rgba(0,194,209,.52), rgba(0,194,209,.18));
}
.hero-inner{position:relative;z-index:2;padding:78px 0}
.hero h1{font-size: clamp(34px, 5vw, 58px); margin:0 0 12px; letter-spacing:-.02em; color:#fff}
.lead{font-size: clamp(16px, 2.2vw, 20px); color:var(--muted); margin:0 0 20px; max-width:62ch}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}

.trust-bar{
  background:rgba(255,255,255,.04);
  border-bottom:1px solid var(--line);
}
.trust-inner{
  display:flex;gap:18px;flex-wrap:wrap;
  padding:14px 0;color:rgba(234,242,255,.86);
  font-weight:700;
}
.trust-inner span{
  padding:8px 12px;border:1px solid var(--line);
  border-radius:999px;background:rgba(0,0,0,.12)
}

.section{padding:64px 0}
.section.alt{background: rgba(255,255,255,.03); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.section h2{margin:0 0 18px;font-size: clamp(24px, 3vw, 34px)}
.section h1{margin:0 0 12px;font-size: clamp(28px, 4vw, 44px)}
.muted{color:var(--muted)}

.grid{display:grid;gap:16px}
.grid-5{grid-template-columns: repeat(5, minmax(0,1fr))}
.grid-4{grid-template-columns: repeat(4, minmax(0,1fr))}
.grid-3{grid-template-columns: repeat(3, minmax(0,1fr))}

.card{
  background: var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.iconcard{padding:18px; text-align:left}
.icon{font-size:28px;margin-bottom:8px}
.iconcard h3{margin:6px 0 6px;font-size:16px}
.iconcard p{margin:0;color:var(--muted);font-size:13px;line-height:1.45}

.two-col{display:grid;grid-template-columns: 1.1fr .9fr; gap:18px; align-items:stretch}
.video-card{height:100%}
.video-placeholder{
  height:100%;
  min-height:260px;
  display:flex;flex-direction:column;justify-content:center;align-items:center;
  gap:10px;
  border-radius: var(--radius);
  border:1px dashed rgba(255,255,255,.25);
  background: rgba(0,0,0,.18);
  padding:18px;
  text-align:center;
}
.video-placeholder small{color:var(--muted)}

.bullets{margin:14px 0 0;padding-left:18px;color:var(--muted)}
.bullets li{margin:8px 0}

.media{display:block;padding:0;overflow:hidden}
.media-bg{height:160px;background-size:cover;background-position:center;filter:saturate(1.1)}
.media-content{padding:16px}
.media-content h3{margin:0 0 6px}
.media-content p{margin:0 0 12px;color:var(--muted);font-size:13px}
.link{font-weight:800; color:rgba(255,255,255,.92)}

.reviews{position:relative}
.review{display:none}
.review.active{display:block}
.stars{margin:0 0 6px}
.who{margin:10px 0 0;color:var(--muted);font-weight:700}

.review-dots{display:flex;gap:8px;margin-top:12px}
.dot{
  width:10px;height:10px;border-radius:999px;
  background: rgba(255,255,255,.25);
  border:1px solid var(--line);
  cursor:pointer;
}
.dot.active{background: linear-gradient(90deg,var(--brand),var(--brand2)); border:none}

.gallery .g{
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background-size:cover;background-position:center;
  box-shadow: var(--shadow);
  opacity:.95;
}

.map-embed iframe{
  width:100%;height:360px;border:0;border-radius: var(--radius);
  border:1px solid var(--line); background:rgba(0,0,0,.2)
}

#leaflet-map{
  width:100%;
  height:360px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-footer{
  padding:34px 0;
  border-top:1px solid var(--line);
  background: rgba(0,95,153,.06);
}
.footer-inner{display:grid;gap:10px}
.footer-links{display:flex;gap:14px;flex-wrap:wrap}
.small{font-size:12px;color:var(--muted);margin:0}
.seo{margin:0;color:var(--muted)}

.promo{
  position:fixed;inset:0;z-index:50;
  background: rgba(0,0,0,.55);
  display:flex;align-items:center;justify-content:center;
  padding:16px;
}
.promo-card{
  width:min(520px, 96%);
  background: #fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
  position:relative;
}
.promo-close{
  position:absolute;top:10px;right:10px;
  background:transparent;border:1px solid var(--line);color:var(--text);
  border-radius:12px;padding:6px 10px;cursor:pointer;
}
.promo-card h3{margin:0 0 10px}
.promo-card p{margin:0 0 12px;color:var(--muted)}

@media (max-width: 980px){
  .grid-5{grid-template-columns: repeat(2, minmax(0,1fr))}
  .grid-4{grid-template-columns: repeat(2, minmax(0,1fr))}
  .two-col{grid-template-columns: 1fr}
  .nav-toggle{display:inline-flex}
  .nav{display:none; position:absolute; top:66px; left:0; right:0;
       flex-direction:column; gap:10px; padding:14px; margin:0 auto;
       background: rgba(6,18,29,.92); border-bottom:1px solid var(--line)}
  .nav.open{display:flex}
  .header-inner{position:relative}
}
@media (max-width: 560px){
  .grid-3{grid-template-columns: 1fr}
}
/* Ensure hidden promo actually hides even with .promo display:flex */
.promo[hidden]{display:none!important;}

/* === MISION & VISION === */
.mv .section-head{ margin-bottom: 18px; }

.mv-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mv-card{
  padding: 18px;
}

.mv-card h3{
  margin: 0 0 8px 0;
  color: var(--coral-blue);
  letter-spacing: .18em;
}

.social-strip{
  margin-top: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.social-icons{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.social-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(0,0,0,.06);
  transition: .2s ease;
  color: var(--coral-blue);
  font-weight: 700;
}

.social-btn svg{
  width: 18px;
  height: 18px;
  fill: var(--coral-cyan);
}

.social-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(0,194,209,.35);
  box-shadow: 0 10px 24px rgba(0,194,209,.12);
  color: var(--coral-cyan);
}

.social-btn:hover svg{ fill: var(--coral-blue); }

@media (max-width: 900px){
  .mv-grid{ grid-template-columns: 1fr; }
  .social-strip{ flex-direction: column; align-items: flex-start; }
  .social-icons{ justify-content: flex-start; }
}



/* === RESPONSIVE FIX: Social icons & feature chips === */
.social-strip{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap; /* allow wrap on small screens */
}

.social-icons{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
  max-width:100%;
}

.social-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  max-width:100%;
  white-space:nowrap;
}

.social-btn svg{
  width:18px;
  height:18px;
  flex:0 0 auto;
}

/* chips / pills */
.feature-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  max-width:100%;
}

.feature-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  max-width:100%;
}

/* 📱 Mobile */
@media (max-width: 768px){
  .social-strip{
    flex-direction:column;
    align-items:flex-start;
  }
  .social-icons{
    width:100%;
    justify-content:flex-start;
  }
  /* 3 per row */
  .social-btn{
    flex:1 1 calc(33.333% - 10px);
    justify-content:center;
    padding:10px 10px;
  }
  /* icon-only on mobile */
  .social-btn span{ display:none; }
  .social-btn svg{ width:20px; height:20px; }

  /* chips: 2 per row */
  .feature-chip{
    flex:1 1 calc(50% - 10px);
    white-space:normal;
    text-align:center;
    line-height:1.15;
  }
}

/* very small phones */
@media (max-width: 380px){
  .social-btn{ flex:1 1 calc(50% - 10px); } /* 2 per row */
  .feature-chip{ flex:1 1 100%; }          /* 1 per row */
}

/* === FINAL SOCIAL ICONS (MOBILE FIRST) === */
.social-icons{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}

.social-circle{
  width:38px;
  height:38px;
  border-radius:50%;
  background: var(--coral-blue);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.2s ease;
}

.social-circle svg{
  width:18px;
  height:18px;
  fill:#fff;
}

.social-circle:hover{
  background: var(--coral-cyan);
  transform: translateY(-1px);
}

@media(min-width:769px){
  .social-circle{
    width:44px;
    height:44px;
  }
  .social-circle svg{
    width:20px;
    height:20px;
  }
}

/* === MENU CON ICONOS === */
.menu li a{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:600;
  color: var(--coral-blue);
}
.menu-icon{font-size:16px;line-height:1;}
.menu li a:hover{color:var(--coral-cyan);}
@media (max-width: 768px){
  /* Mobile: icon + text */
  .nav .menu-text{ display:inline; }
  .nav a{ justify-content:flex-start; padding:10px 12px; }
  .nav .menu-icon{ font-size:18px; }
}
}


/* === NAV MENU ICONS (HEADER) === */
.nav a{
  display:flex;
  align-items:center;
  gap:8px;
}

.nav .menu-icon{
  font-size:16px;
  line-height:1;
}

@media (max-width: 768px){
  /* Mobile: icon + text */
  .nav .menu-text{ display:inline; }
  .nav a{ justify-content:flex-start; padding:10px 12px; }
  .nav .menu-icon{ font-size:18px; }
}
  .nav a{ justify-content:center; }
}


/* === INNER PAGES === */
.page-hero{
  padding: 90px 0 30px;
  background: linear-gradient(135deg, rgba(0,194,209,.16), rgba(0,95,153,.10));
}
.page-hero h1{ margin:0 0 8px 0; color: var(--coral-blue); }
.page-hero .text-muted{ margin:0; }

.grid-2{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:16px; }
.grid-3{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:16px; }

.clean-list{ margin:0; padding-left: 18px; color: var(--muted); }
.clean-list li{ margin: 8px 0; }

.service-card, .event-card{ padding:18px; }
.price-grid{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:12px; margin-top:12px; }
.price-card{ background: rgba(255,255,255,.75); border:1px solid rgba(0,0,0,.06); border-radius: 14px; padding:14px; }
.price{ font-size: 22px; font-weight: 800; color: var(--coral-blue); margin-top:6px; }

.contact-form .form-row{ display:flex; flex-direction:column; gap:6px; margin-bottom:12px; }
.contact-form input, .contact-form textarea{
  border:1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,.85);
}
.placeholder-map{
  border:1px dashed rgba(0,95,153,.35);
  border-radius: 14px;
  padding: 18px;
  text-align:center;
  color: var(--coral-blue);
  background: rgba(245,237,232,.7);
}

@media(max-width:900px){
  .grid-2{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .price-grid{ grid-template-columns: 1fr; }
}


/* === Chat Areas UI (Tawk.to) === */
.chat-fab{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9998;
  border:0;
  border-radius:999px;
  padding:12px 16px;
  font-weight:800;
  color:#fff;
  background: var(--grad-brand);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  cursor:pointer;
}

.chat-modal{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.45);
  z-index:9999;
  display:none;
  align-items:flex-end;
  justify-content:center;
  padding:16px;
}

.chat-modal[aria-hidden="false"]{ display:flex; }

.chat-modal-card{
  width:min(520px, 100%);
  background: rgba(255,255,255,.95);
  border:1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding:16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.chat-area-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
  margin:12px 0 6px;
}

.chat-area-btn{
  border:1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  padding:12px 10px;
  font-weight:800;
  background: rgba(0,194,209,.12);
  color: var(--coral-blue);
  cursor:pointer;
  transition:.2s ease;
}

.chat-area-btn:hover{
  background: var(--coral-cyan);
  color:#fff;
  transform: translateY(-1px);
}

.chat-close{
  width:100%;
  margin-top:10px;
  border:0;
  border-radius: 14px;
  padding:12px 10px;
  font-weight:800;
  background: rgba(0,95,153,.10);
  color: var(--coral-blue);
  cursor:pointer;
}

@media(max-width: 520px){
  .chat-area-grid{ grid-template-columns: 1fr; }
}


/* === Google Translate cosmetic fixes === */
.goog-te-banner-frame.skiptranslate { display: none !important; }
body { top: 0px !important; }
.goog-logo-link, .goog-te-gadget { display:none !important; }
.goog-te-gadget { font-size:0 !important; }


/* === Coral Chat Areas (Website Selector) === */
.chat-fab{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9998;
  border:0;
  border-radius:999px;
  padding:12px 16px;
  font-weight:800;
  color:#fff;
  background: var(--grad-brand, linear-gradient(135deg, #00C2D1, #005F99));
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  cursor:pointer;
}

.chat-robot{
  width:64px;
  height:64px;
  padding:0;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.chat-robot-icon{
  font-size:28px;
  line-height:1;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.25));
}

.chat-modal{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.45);
  z-index:9999;
  display:none;
  align-items:flex-end;
  justify-content:center;
  padding:16px;
}

.chat-modal[aria-hidden="false"]{ display:flex; }

.chat-modal-card{
  width:min(560px, 100%);
  background: rgba(255,255,255,.96);
  border:1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding:16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.chat-modal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
}

.chat-badge{
  font-weight:900;
  color: var(--coral-blue, #005F99);
  background: rgba(0,194,209,.12);
  border: 1px solid rgba(0,194,209,.22);
  padding:6px 10px;
  border-radius:999px;
  font-size: 12px;
}

.chat-x{
  border:0;
  background: transparent;
  font-size: 18px;
  cursor:pointer;
  color: rgba(0,0,0,.6);
}

.chat-area-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
  margin:12px 0 6px;
}

.chat-area-btn{
  border:1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  padding:12px 10px;
  font-weight:900;
  background: rgba(0,194,209,.10);
  color: var(--coral-blue, #005F99);
  cursor:pointer;
  transition:.2s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.chat-area-btn .ico{ font-size:18px; }
.chat-area-btn:hover{
  background: var(--coral-cyan, #00C2D1);
  color:#fff;
  border-color: transparent;
  transform: translateY(-1px);
}

.chat-note{
  display:block;
  margin-top:10px;
  color: rgba(0,0,0,.55);
}

@media(max-width: 520px){
  .chat-area-grid{ grid-template-columns: 1fr; }
  .chat-robot{ width:58px; height:58px; }
}
