
:root{
  --primary:#5d9c1f;
  --primary-dark:#4b7f18;
  --dark:#0f172a;
  --dark-2:#1e293b;
  --text:#1f2937;
  --muted:#64748b;
  --light:#f8fafc;
  --white:#ffffff;
  --border:rgba(15,23,42,.08);
  --shadow:0 18px 50px rgba(15,23,42,.10);
  --shadow-soft:0 10px 30px rgba(15,23,42,.08);
  --radius:24px;
  --radius-sm:18px;
  --container:1240px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:#fff;
  overflow-x:hidden;
}
a{text-decoration:none}
img{max-width:100%;display:block}
.container-xxl{max-width:var(--container)}
.reveal{opacity:0;transform:translateY(24px);transition:all .7s ease}
.reveal.show{opacity:1;transform:none}

.topbar{
  background:#0b1220;
  color:#cbd5e1;
  font-size:13px;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.topbar-inner{
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.topbar a{color:#e2e8f0}
.topbar a:hover{color:#fff}

.site-header{
  position:sticky;
  top:0;
  z-index:1050;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
  transition:all .25s ease;
}
.site-header.scrolled{
  background:rgba(255,255,255,.94);
  box-shadow:0 10px 24px rgba(15,23,42,.06);
}
.navbar{min-height:88px;transition:min-height .25s ease}
.site-header.scrolled .navbar{min-height:74px}
.navbar-brand img{height:180px;width:auto;object-fit:contain;transition:height .25s ease}
.site-header.scrolled .navbar-brand img{height:62px}
.navbar-nav .nav-link{
  color:var(--text);
  font-weight:700;
  padding-left:1rem!important;
  padding-right:1rem!important;
  position:relative;
}
.navbar-nav .nav-link:hover,.navbar-nav .nav-link:focus,.navbar-nav .nav-link.active{color:var(--primary)}
.navbar-nav .nav-link::after{
  content:"";
  position:absolute;
  left:1rem; right:1rem; bottom:.4rem;
  height:2px; border-radius:999px;
  background:var(--primary);
  transform:scaleX(0); transform-origin:left;
  transition:.22s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{transform:scaleX(1)}
.dropdown-menu{
  border:1px solid var(--border);
  border-radius:20px;
  padding:.55rem;
  box-shadow:0 24px 60px rgba(15,23,42,.12);
  overflow:hidden;
}
.dropdown-item{
  border-radius:14px;
  font-weight:700;
  padding:.85rem 1rem;
}
.dropdown-item:hover{background:#f8fafc;color:var(--primary)}
.lang-switch{
  display:flex; gap:8px; align-items:center; margin-left:18px;
}
.lang-switch button{
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  min-width:44px;
  height:38px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  transition:.2s ease;
}
.lang-switch button.active,
.lang-switch button:hover{
  background:var(--dark);
  color:#fff;
  border-color:var(--dark);
}
.btn-gt{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  min-height:52px; padding:0 22px; border-radius:999px;
  font-weight:800; transition:.25s ease; border:1px solid transparent;
}
.btn-gt-primary{background:var(--primary); color:#fff; box-shadow:0 14px 28px rgba(93,156,31,.22)}
.btn-gt-primary:hover{background:var(--primary-dark); color:#fff; transform:translateY(-2px)}
.btn-gt-outline{background:rgba(255,255,255,.12); color:#fff; border-color:rgba(255,255,255,.22); backdrop-filter:blur(10px)}
.btn-gt-outline:hover{background:rgba(255,255,255,.18); color:#fff}
.btn-gt-dark{background:var(--dark); color:#fff}
.btn-gt-dark:hover{background:#020617;color:#fff;transform:translateY(-2px)}

.hero{
  position:relative;
  min-height:100vh;
  background:
    radial-gradient(circle at top right, rgba(93,156,31,.14), transparent 22%),
    linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
}
.hero-shell{
  position:relative; overflow:hidden; background:#0f172a;
  min-height:100vh;
}
.hero .carousel,.hero .carousel-inner,.hero .carousel-item{height:100vh}
.hero-image{
  width:100%; height:100vh; object-fit:cover; object-position:center; display:block;
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(15,23,42,.80) 0%, rgba(15,23,42,.40) 46%, rgba(15,23,42,.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.28) 100%);
}
.hero-content{
  position:absolute; inset:0; z-index:3; display:flex; align-items:center;
}
.hero-copy{max-width:780px; color:#fff}
.hero-chip{
  display:inline-flex; align-items:center; gap:10px; min-height:40px; padding:0 16px;
  border-radius:999px; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(10px); font-size:13px; font-weight:800; margin-bottom:18px;
}
.hero-title{
  font-size:clamp(38px,5vw,72px); line-height:1.02; font-weight:900;
  margin-bottom:18px; letter-spacing:-.03em;
}
.hero-title span{color:#d8ff9a}
.hero-text{
  font-size:18px; line-height:1.85; color:rgba(255,255,255,.88);
  max-width:62ch; margin-bottom:28px;
}
.hero-actions{display:flex; gap:14px; flex-wrap:wrap; margin-bottom:26px}
.hero-points{
  display:flex; flex-wrap:wrap; gap:12px 18px; color:rgba(255,255,255,.88);
  font-size:14px; font-weight:700;
}
.hero-points span{display:inline-flex; align-items:center; gap:8px}
.hero-float{
  position:absolute; right:42px; bottom:42px; z-index:4; max-width:360px;
  background:rgba(255,255,255,.90); border:1px solid rgba(255,255,255,.60);
  border-radius:22px; padding:18px; box-shadow:var(--shadow); backdrop-filter:blur(14px);
}
.hero-float small{display:block; color:var(--muted); font-weight:700; margin-bottom:6px}
.hero-float strong{display:block; color:var(--dark); font-size:22px; line-height:1.3; margin-bottom:6px}
.hero-float p{margin:0; color:#475569; font-size:14px; line-height:1.65}
.hero .carousel-indicators{margin-bottom:1.5rem; z-index:5}
.hero .carousel-indicators [data-bs-target]{width:10px;height:10px;border-radius:999px;opacity:.6}
.hero .carousel-indicators .active{opacity:1}
.hero .carousel-control-prev,.hero .carousel-control-next{width:68px;z-index:5;opacity:.95}
.hero .carousel-control-prev-icon,.hero .carousel-control-next-icon{filter:drop-shadow(0 8px 16px rgba(0,0,0,.35))}

.intro-band{margin-top:-56px; position:relative; z-index:7}
.intro-grid{
  background:rgba(255,255,255,.96); border:1px solid rgba(15,23,42,.08);
  border-radius:28px; box-shadow:var(--shadow); padding:22px;
}
.intro-item{display:flex; gap:14px; align-items:flex-start; padding:16px; border-radius:18px; height:100%}
.intro-icon{
  width:54px; height:54px; border-radius:16px; display:flex; align-items:center; justify-content:center;
  background:rgba(93,156,31,.10); color:var(--primary); flex:0 0 auto; font-size:22px;
}
.intro-item h4{font-size:17px; font-weight:800; color:var(--dark); margin-bottom:4px}
.intro-item p{font-size:14px; color:var(--muted); margin:0; line-height:1.7}

.section{padding:92px 0}
.section-kicker{
  display:inline-flex; align-items:center; gap:10px; color:var(--primary);
  font-size:13px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; margin-bottom:14px;
}
.section-kicker::before{
  content:""; width:34px; height:2px; border-radius:999px; background:var(--primary);
}
.section-title{
  font-size:clamp(30px,4vw,48px); line-height:1.08; font-weight:900; color:var(--dark); margin-bottom:16px;
}
.section-text{font-size:16px; line-height:1.9; color:var(--muted)}

.about-media{
  position:relative; height:100%; min-height:560px; border-radius:28px; overflow:hidden;
  box-shadow:var(--shadow); border:1px solid var(--border); background:#fff;
}
.about-media img{width:100%; height:100%; object-fit:cover}
.about-badge{
  position:absolute; left:24px; bottom:24px; background:rgba(255,255,255,.92);
  border:1px solid rgba(15,23,42,.08); border-radius:22px; padding:18px 20px;
  max-width:320px; box-shadow:var(--shadow-soft);
}
.about-badge strong{display:block; color:var(--dark); font-size:24px; line-height:1; margin-bottom:8px}
.about-badge span{color:var(--muted); font-size:14px; line-height:1.6; display:block}

.card-pro{
  background:#fff; border:1px solid var(--border); border-radius:28px; box-shadow:var(--shadow); padding:38px; height:100%;
}
.card-pro h3{font-size:18px; line-height:1.8; color:var(--text); font-weight:700; margin-bottom:16px}
.card-pro p{margin-bottom:16px; color:var(--muted); line-height:1.9; font-size:15.5px}

.mini-card{
  height:100%; background:#fff; border:1px solid var(--border); border-radius:24px; padding:28px;
  box-shadow:var(--shadow-soft); transition:.25s ease;
}
.mini-card:hover{transform:translateY(-6px); box-shadow:var(--shadow)}
.mini-card .icon{
  width:58px; height:58px; border-radius:18px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, rgba(93,156,31,.10), rgba(93,156,31,.18)); color:var(--primary);
  font-size:24px; margin-bottom:18px;
}
.mini-card h4{font-size:21px; color:var(--dark); font-weight:800; margin-bottom:10px}
.mini-card p{margin:0; color:var(--muted); line-height:1.8; font-size:15px}

.page-hero{
  padding:64px 0 28px;
  background:
    radial-gradient(circle at top right, rgba(93,156,31,.10), transparent 22%),
    linear-gradient(180deg,#fff 0%,#f8fafc 100%);
}
.page-hero-shell{
  position:relative; overflow:hidden; border-radius:30px;
  background:linear-gradient(135deg,#0f172a 0%,#1e293b 100%);
  color:#fff; box-shadow:0 28px 70px rgba(15,23,42,.18);
}
.page-hero-shell::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(circle at top right, rgba(216,255,154,.16), transparent 25%),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size:auto,34px 34px,34px 34px; pointer-events:none;
}
.page-hero-content{position:relative; z-index:2; padding:52px}
.breadcrumb-pro{display:flex; gap:10px; flex-wrap:wrap; color:rgba(255,255,255,.72); font-size:14px; margin-bottom:18px}
.breadcrumb-pro a{color:#fff; opacity:.9}
.breadcrumb-pro a:hover{opacity:1}
.page-title{font-size:clamp(34px,4vw,56px); font-weight:900; line-height:1.05; margin-bottom:16px; letter-spacing:-.03em}
.page-desc{max-width:70ch; color:rgba(255,255,255,.86); font-size:17px; line-height:1.85}

.list-check{list-style:none; padding:0; margin:0; display:grid; gap:14px}
.list-check li{display:flex; gap:12px; color:var(--text); line-height:1.8}
.list-check li i{color:var(--primary); margin-top:6px}

.subsidiaries{background:linear-gradient(180deg, #ffffff 0%, #f8fafc 100%)}
.subs-card{background:#fff; border:1px solid var(--border); border-radius:28px; box-shadow:var(--shadow); padding:34px}
.subs-link{
  display:flex; align-items:center; justify-content:space-between; gap:16px; min-height:74px; padding:0 22px;
  border:1px solid var(--border); border-radius:20px; color:var(--text); background:#fff; font-weight:800;
  transition:.22s ease; box-shadow:0 6px 18px rgba(15,23,42,.04);
}
.subs-link:hover{color:var(--primary); border-color:rgba(93,156,31,.28); transform:translateX(4px)}

.info-card{
  background:#fff; border:1px solid var(--border); border-radius:26px; padding:28px; box-shadow:var(--shadow-soft); height:100%;
}
.info-row{display:flex; gap:14px; align-items:flex-start; margin-bottom:18px}
.info-row:last-child{margin-bottom:0}
.info-icon{
  width:50px; height:50px; border-radius:16px; display:flex; align-items:center; justify-content:center;
  background:rgba(93,156,31,.10); color:var(--primary); flex:0 0 auto; font-size:20px;
}
.info-row h4{font-size:17px; font-weight:800; color:var(--dark); margin-bottom:4px}
.info-row p,.info-row a{margin:0; color:var(--muted); line-height:1.8; font-size:15px}

.form-card{
  background:#fff; border:1px solid var(--border); border-radius:28px; padding:30px; box-shadow:var(--shadow);
}
.form-label{font-weight:800; color:var(--dark); font-size:14px}
.form-control,.form-select{
  min-height:52px; border-radius:16px; border:1px solid rgba(15,23,42,.12); box-shadow:none!important;
}
.form-control:focus,.form-select:focus{border-color:rgba(93,156,31,.42)}
textarea.form-control{min-height:150px; padding-top:14px}
.map-frame{width:100%; min-height:380px; border:0; border-radius:26px; box-shadow:var(--shadow)}

.cta{
  padding:90px 0;
  background:
    radial-gradient(circle at top right, rgba(93,156,31,.20), transparent 26%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color:#fff;
}
.cta-box{
  border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.08); border-radius:30px;
  box-shadow:0 24px 70px rgba(0,0,0,.20); backdrop-filter:blur(12px); padding:38px;
}
.cta-box h3{font-size:clamp(30px,4vw,46px); line-height:1.08; font-weight:900; margin-bottom:14px}
.cta-box p{color:rgba(255,255,255,.84); font-size:16px; line-height:1.8; margin:0}

.whatsapp-fab{
  position:fixed; right:18px; bottom:18px; z-index:1100;
  width:58px; height:58px; border-radius:999px;
  display:flex; align-items:center; justify-content:center;
  background:#25D366; color:#fff; font-size:28px;
  box-shadow:0 16px 30px rgba(37,211,102,.30);
}

.site-footer{background:#fafafa; border-top:1px solid rgba(17,24,39,.08)}
.footer-wrap{padding:48px 0 24px}
.footer-card{
  background:rgba(255,255,255,.86); border:1px solid rgba(17,24,39,.08); border-radius:24px; padding:24px; height:100%;
  box-shadow:var(--shadow-soft);
}
.footer-brand{display:flex; align-items:center; gap:14px; margin-bottom:16px}
.footer-brand img{height:58px; width:auto; object-fit:contain}
.footer-brand strong{display:block; font-weight:900; color:var(--dark); line-height:1.3}
.footer-title{font-size:13px; font-weight:900; text-transform:uppercase; letter-spacing:.05em; color:var(--dark); margin-bottom:14px}
.footer-text{color:var(--muted); font-size:14px; line-height:1.85}
.footer-link{
  display:inline-flex; align-items:center; gap:10px; color:#475569; font-size:14px; font-weight:600;
  margin-bottom:10px; transition:.2s ease;
}
.footer-link:hover{color:var(--primary)}
.socials{display:flex; gap:10px; flex-wrap:wrap}
.socials a{
  width:40px; height:40px; border-radius:999px; display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(17,24,39,.10); background:#fff; color:#475569; transition:.2s ease;
}
.socials a:hover{color:var(--primary); border-color:rgba(93,156,31,.28); transform:translateY(-2px)}
.footer-bottom{
  margin-top:24px; border-top:1px solid rgba(17,24,39,.08); padding:18px 10px 0; color:rgba(17,24,39,.68); font-size:13px;
}
.cookie-note{text-align:center; padding-top:18px; color:rgba(17,24,39,.70); font-size:14px; line-height:1.8}
.cookie-note u{text-underline-offset:3px}

@media (max-width:1199.98px){
  .hero-image,.hero .carousel,.hero .carousel-inner,.hero .carousel-item,.hero-shell{height:100vh}
}
@media (max-width:991.98px){
  .navbar{min-height:82px}
  .navbar-brand img{height:66px}
  .hero-shell,.hero .carousel,.hero .carousel-inner,.hero .carousel-item,.hero-image{height:100vh}
  .hero-content{align-items:flex-end}
  .hero-copy{padding-bottom:34px}
  .hero-title{font-size:36px}
  .hero-text{font-size:15px}
  .hero-float{display:none}
  .intro-band{margin-top:22px}
  .about-media{min-height:360px}
  .card-pro,.subs-card,.cta-box,.form-card,.page-hero-content{padding:26px}
  .lang-switch{margin:10px 0 0 0}
}
@media (max-width:575.98px){
  .topbar-inner{justify-content:center}
  .hero-title{font-size:30px}
  .hero-actions{flex-direction:column}
  .hero-actions .btn-gt{width:100%}
  .intro-grid{padding:14px}
  .about-badge{left:16px; right:16px; bottom:16px; max-width:none}
  .whatsapp-fab{width:54px;height:54px;font-size:26px}
}
