/* ═══ SHARED STYLES — OceanMonks ═══ */

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

:root{
  --bg:#0a0a0a;
  --bg-card:#111111;
  --bg-card-2:#161616;
  --border:rgba(255,255,255,0.07);
  --border-hover:rgba(255,255,255,0.15);
  --text:#f0ede8;
  --text-muted:#888;
  --text-faint:#444;
  --accent:#25D366;
  --accent-dim:rgba(37,211,102,0.1);
  --accent-glow:rgba(37,211,102,0.25);
  --white:#ffffff;
}

html{scroll-behavior:smooth;}

body{
  background:var(--bg);
  color:var(--text);
  font-family:'DM Sans',sans-serif;
  font-size:16px;
  line-height:1.6;
  overflow-x:hidden;
}

/* NOISE OVERLAY */
body::before{
  content:'';
  position:fixed;
  inset:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events:none;
  z-index:0;
  opacity:0.4;
}

/* ═══ NAV ═══ */
nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  padding:1.25rem 2rem;
  display:flex;align-items:center;justify-content:space-between;
  border-bottom:1px solid var(--border);
  backdrop-filter:blur(20px);
  background:rgba(10,10,10,0.85);
}

.nav-logo{
  font-family:'Syne',sans-serif;
  font-size:1.2rem;font-weight:800;
  letter-spacing:-0.02em;
  color:var(--white);
  text-decoration:none;
}
.nav-logo span{color:var(--accent);}

.nav-links{
  display:flex;align-items:center;gap:1.5rem;
}

nav a, .nav-links a{
  color:var(--text-muted);
  text-decoration:none;
  font-size:14px;
  transition:color 0.2s;
}
nav a:hover, .nav-links a:hover{color:var(--text);}
nav a.active, .nav-links a.active{color:var(--accent);}

.nav-cta{
  display:inline-flex;align-items:center;gap:8px;
  padding:9px 20px;
  background:var(--accent);
  color:#000 !important;
  font-size:14px;font-weight:500;
  border-radius:100px;
  text-decoration:none;
  transition:opacity 0.2s;
}
.nav-cta:hover{opacity:0.85;color:#000 !important;}

/* HAMBURGER */
.nav-hamburger{
  display:none;flex-direction:column;gap:5px;
  cursor:pointer;padding:4px;z-index:101;
}
.nav-hamburger span{
  width:22px;height:2px;
  background:var(--text);border-radius:2px;
  transition:all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1){transform:rotate(45deg) translate(5px,5px);}
.nav-hamburger.open span:nth-child(2){opacity:0;}
.nav-hamburger.open span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px);}

/* ═══ PAGE HERO ═══ */
.page-hero{
  padding:10rem 2rem 4rem;
  max-width:1100px;margin:0 auto;
  position:relative;
}
.page-hero-glow{
  position:absolute;top:10%;right:-10%;
  width:500px;height:500px;
  background:radial-gradient(circle,rgba(37,211,102,0.06) 0%,transparent 70%);
  pointer-events:none;border-radius:50%;
}
.page-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:11px;font-weight:500;letter-spacing:0.12em;
  text-transform:uppercase;color:var(--accent);
  margin-bottom:1.5rem;
}
.page-eyebrow::before{content:'';width:20px;height:1px;background:var(--accent);}

.page-title{
  font-family:'Syne',sans-serif;
  font-size:clamp(2.5rem,6vw,4.5rem);
  font-weight:800;line-height:1.05;
  letter-spacing:-0.03em;
  color:var(--white);margin-bottom:1.5rem;
}
.page-title em{font-style:normal;color:var(--accent);}

.page-subtitle{
  font-size:clamp(1rem,2vw,1.15rem);
  color:var(--text-muted);max-width:560px;
  font-weight:300;line-height:1.7;
}

/* ═══ SECTIONS ═══ */
section{padding:5rem 2rem;max-width:1100px;margin:0 auto;}

.section-tag{
  font-size:11px;font-weight:500;letter-spacing:0.12em;
  text-transform:uppercase;color:var(--accent);
  margin-bottom:1rem;display:flex;align-items:center;gap:8px;
}
.section-tag::before{content:'';width:16px;height:1px;background:var(--accent);}

.section-title{
  font-family:'Syne',sans-serif;
  font-size:clamp(1.8rem,4vw,2.5rem);
  font-weight:700;color:var(--white);
  letter-spacing:-0.02em;line-height:1.15;
  margin-bottom:1.5rem;
}

.line{border:none;border-top:1px solid var(--border);max-width:1100px;margin:0 auto;}

/* ═══ CONTENT GRID ═══ */
.content-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:3rem;align-items:start;
}
.content-text p{
  color:var(--text-muted);font-size:15px;
  line-height:1.8;margin-bottom:1.5rem;font-weight:300;
}
.content-text p strong{color:var(--text);font-weight:500;}

.stats-col{display:flex;flex-direction:column;gap:2rem;}
.stat-block .stat-num{
  font-family:'Syne',sans-serif;font-size:2.2rem;
  font-weight:700;color:var(--white);line-height:1;
}
.stat-block .stat-num span{color:var(--accent);font-size:1.5rem;}
.stat-block .stat-label{font-size:13px;color:var(--text-muted);margin-top:4px;}

/* ═══ VALUES GRID ═══ */
.values-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:1px;background:var(--border);
  border:1px solid var(--border);border-radius:16px;overflow:hidden;
}
.value-item{background:var(--bg-card);padding:2rem;transition:background 0.2s;}
.value-item:hover{background:var(--bg-card-2);}
.value-icon{
  width:40px;height:40px;background:var(--accent-dim);
  border-radius:10px;display:flex;align-items:center;
  justify-content:center;margin-bottom:1rem;font-size:18px;
}
.value-title{
  font-family:'Syne',sans-serif;font-size:1.05rem;
  font-weight:600;color:var(--white);margin-bottom:0.4rem;
}
.value-desc{font-size:14px;color:var(--text-muted);line-height:1.6;}

/* ═══ MISSION/VISION ═══ */
.mv-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:1px;background:var(--border);
  border:1px solid var(--border);border-radius:16px;overflow:hidden;
}
.mv-card{background:var(--bg-card);padding:2.5rem;transition:background 0.2s;}
.mv-card:hover{background:var(--bg-card-2);}
.mv-label{
  font-size:11px;font-weight:500;letter-spacing:0.12em;
  text-transform:uppercase;color:var(--accent);margin-bottom:0.75rem;
}
.mv-title{
  font-family:'Syne',sans-serif;font-size:1.3rem;
  font-weight:700;color:var(--white);line-height:1.3;
}

/* ═══ PAGE CTA ═══ */
.page-cta{text-align:center;padding:5rem 2rem;}
.cta-title{
  font-family:'Syne',sans-serif;
  font-size:clamp(1.8rem,4vw,2.5rem);
  font-weight:700;color:var(--white);margin-bottom:0.75rem;
}
.cta-sub{color:var(--text-muted);font-size:15px;margin-bottom:2rem;font-weight:300;}

/* ═══ BUTTONS ═══ */
.btn-primary{
  display:inline-flex;align-items:center;gap:10px;
  padding:16px 30px;background:var(--accent);color:#000;
  font-size:15px;font-weight:500;border-radius:100px;
  text-decoration:none;transition:all 0.2s;font-family:'DM Sans',sans-serif;
}
.btn-primary:hover{background:#1fba58;transform:translateY(-1px);}

.btn-ghost{
  display:inline-flex;align-items:center;gap:8px;
  padding:16px 28px;background:transparent;
  color:var(--text-muted);font-size:15px;
  border:1px solid var(--border);border-radius:100px;
  text-decoration:none;transition:all 0.2s;font-family:'DM Sans',sans-serif;
}
.btn-ghost:hover{border-color:var(--border-hover);color:var(--text);}

/* ═══ CONTACT FORM ═══ */
.contact-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:3rem;align-items:start;
}
.contact-form{display:grid;gap:0.9rem;}
.contact-input{
  width:100%;border:1px solid var(--border);
  background:var(--bg-card-2);color:var(--text);
  border-radius:12px;padding:14px 16px;
  font-family:'DM Sans',sans-serif;font-size:15px;
  outline:none;transition:border-color 0.2s;
}
.contact-input:focus{border-color:var(--accent);}
textarea.contact-input{resize:vertical;min-height:120px;}
.contact-submit{
  display:inline-flex;justify-content:center;align-items:center;
  border:0;border-radius:100px;padding:14px 28px;
  background:var(--accent);color:#000;
  font-family:'DM Sans',sans-serif;font-size:15px;
  font-weight:600;cursor:pointer;transition:opacity 0.2s;
}
.contact-submit:hover{opacity:0.88;}

.contact-info{display:flex;flex-direction:column;gap:1.5rem;}
.contact-info-item{
  display:flex;align-items:flex-start;gap:1rem;
  padding:1.25rem;background:var(--bg-card);
  border:1px solid var(--border);border-radius:14px;
  transition:border-color 0.2s;
}
.contact-info-item:hover{border-color:var(--border-hover);}
.contact-info-icon{
  width:40px;height:40px;min-width:40px;
  background:var(--accent-dim);border-radius:10px;
  display:flex;align-items:center;justify-content:center;font-size:18px;
}
.contact-info-label{font-size:13px;color:var(--text-muted);margin-bottom:2px;}
.contact-info-value{font-size:15px;color:var(--white);font-weight:500;}
.contact-info-value a{color:var(--accent);text-decoration:none;}
.contact-info-value a:hover{text-decoration:underline;}

/* ═══ PRIVACY CONTENT ═══ */
.privacy-content{max-width:720px;}
.privacy-content h3{
  font-family:'Syne',sans-serif;font-size:1.15rem;
  font-weight:600;color:var(--white);
  margin-top:2.5rem;margin-bottom:0.75rem;
}
.privacy-content p{
  color:var(--text-muted);font-size:15px;
  line-height:1.8;margin-bottom:1rem;font-weight:300;
}
.privacy-content a{color:var(--accent);text-decoration:none;}
.privacy-content a:hover{text-decoration:underline;}

/* ═══ FOOTER ═══ */
footer{
  border-top:1px solid var(--border);
  padding:2rem;display:flex;justify-content:space-between;
  align-items:center;max-width:1100px;margin:0 auto;
  flex-wrap:wrap;gap:1rem;
}
.footer-logo{
  font-family:'Syne',sans-serif;font-size:1rem;
  font-weight:800;color:var(--white);
}
.footer-logo span{color:var(--accent);}
.footer-copy{font-size:13px;color:var(--text-faint);}
.footer-links a{
  color:var(--text-muted);text-decoration:none;
  font-size:13px;transition:color 0.2s;
}
.footer-links a:hover{color:var(--accent);}

/* ═══ WHATSAPP FLOAT ═══ */
.wa-float{
  position:fixed;bottom:2rem;right:2rem;
  width:56px;height:56px;background:var(--accent);
  border-radius:50%;display:flex;align-items:center;
  justify-content:center;text-decoration:none;
  box-shadow:0 4px 20px rgba(37,211,102,0.35);
  z-index:99;transition:transform 0.2s;
}
.wa-float:hover{transform:scale(1.08);}
.wa-float svg{width:28px;height:28px;}

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(24px);}
  to{opacity:1;transform:translateY(0);}
}
.reveal{opacity:0;transform:translateY(30px);transition:opacity 0.6s ease,transform 0.6s ease;}
.reveal.visible{opacity:1;transform:translateY(0);}
.fade-in{opacity:0;animation:fadeUp 0.7s ease forwards;}
.fade-in-d1{animation-delay:0.1s;}
.fade-in-d2{animation-delay:0.2s;}
.fade-in-d3{animation-delay:0.3s;}

/* ═══ MOBILE ═══ */
@media(max-width:768px){
  .nav-links{
    position:fixed;top:0;right:-100%;width:70%;height:100vh;
    background:rgba(10,10,10,0.97);backdrop-filter:blur(20px);
    flex-direction:column;justify-content:center;gap:2rem;
    transition:right 0.3s ease;z-index:100;
    border-left:1px solid var(--border);
  }
  .nav-links.open{right:0;}
  .nav-links a{font-size:18px;}
  .nav-hamburger{display:flex;}
  .content-grid,.contact-grid{grid-template-columns:1fr;}
  .mv-grid{grid-template-columns:1fr;}
  .page-hero{padding:8rem 1rem 3rem;}
  section{padding:4rem 1rem;}
  footer{flex-direction:column;text-align:center;}
}
@media(max-width:600px){nav{padding:1rem;}}
