
:root{
  --navy:#061d34;
  --orange:#ff6508;
  --white:#fff;
  --text:#061d34;
}
*{box-sizing:border-box}
html,body{
  margin:0;
  padding:0;
  background:#fff;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
}
a{text-decoration:none}
.container{
  width:min(1180px,94%);
  margin:0 auto;
}
.header{
  background:#fff;
  border-bottom:1px solid #e8edf3;
  position:sticky;
  top:0;
  z-index:999;
}
.nav{
  height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.logo img{
  width:190px;
  display:block;
}
.menu{
  display:flex;
  gap:28px;
  align-items:center;
  font-weight:800;
  font-size:13px;
  text-transform:uppercase;
}
.menu a{color:var(--text)}
.menu a:hover{color:var(--orange)}
.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  padding:14px 22px;
  border-radius:12px;
  font-weight:900;
  font-size:14px;
  text-transform:uppercase;
  border:0;
  cursor:pointer;
}
.btn-orange{
  background:var(--orange);
  color:#fff;
  box-shadow:0 10px 24px rgba(255,101,8,.25);
}
.btn-dark{
  background:var(--navy);
  color:#fff;
}
.hero-wrap{
  position:relative;
  background:#071b33;
}
.full-section img{
  width:100%;
  display:block;
}
.actions{
  position:absolute;
  left:5.3%;
  bottom:8.5%;
  display:flex;
  gap:12px;
  z-index:20;
}
.real-actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  padding:22px 12px;
  background:#fff;
}
.cta-final{
  background:linear-gradient(90deg,#ff6508,#ff7a18);
  color:#fff;
  padding:30px 0;
}
.cta-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}
.cta-row h2{
  margin:0 0 5px;
  font-size:28px;
}
.cta-row p{
  margin:0;
}
.footer{
  background:var(--navy);
  color:#cbd9e7;
  padding:38px 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:30px;
}
.footer img{
  width:170px;
  background:#fff;
  border-radius:10px;
}
.footer a,.footer p{
  color:#cbd9e7;
  display:block;
  margin:8px 0;
}
.page-hero{
  background:linear-gradient(135deg,var(--navy),#0b365d);
  color:#fff;
  padding:80px 0;
}
.page-hero h1{font-size:44px;margin:0 0 10px}
.card{
  width:min(900px,92%);
  margin:50px auto;
  background:#fff;
  border:1px solid #e8edf3;
  border-radius:18px;
  padding:30px;
  box-shadow:0 12px 34px rgba(6,29,52,.08);
}
input,textarea,select{
  width:100%;
  padding:14px;
  margin-bottom:12px;
  border:1px solid #dfe6ee;
  border-radius:10px;
  font:inherit;
}
textarea{min-height:130px}
.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  width:60px;
  height:60px;
  border-radius:50%;
  background:#25d366;
  color:#fff;
  font-size:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:999;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
}
@media(max-width:900px){
  .menu{display:none}
  .nav{height:72px}
  .logo img{width:165px}
  .actions{
    position:relative;
    left:auto;
    bottom:auto;
    padding:16px;
    background:#071b33;
    justify-content:center;
    flex-wrap:wrap;
  }
  .actions .btn,.real-actions .btn{width:100%}
  .cta-row,.footer-grid{display:block}
}
