:root{
    --navy: #0e1640;
    --navy-2: #131c4c;
    --lime: #b4d334;
    --lime-dark: #9dbb26;
    --blue: #024890;
    --soft-bg: #f2f4fd;
    --white: #ffffff;
    --text-muted: #5a6178;
    --radius: 10px;
    --max-width: 1240px;
  }

  *{margin:0;padding:0;box-sizing:border-box;}

  html{scroll-behavior:smooth;}

  body{
    font-family:'Inter', sans-serif;
    color:var(--navy);
    background:var(--white);
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
  }

  h1,h2,h3,.brand{
    font-family:'Poppins', sans-serif;
  }

  img{max-width:100%;display:block;}

  a{color:inherit;text-decoration:none;}

  .container{
    max-width:var(--max-width);
    margin:0 auto;
    padding:0 32px;
  }

  /* ===== TOP BAR ===== */
  .topbar{
    background:var(--white);
    border-bottom:1px solid #e7e9f5;
    font-size:13px;
    color:var(--navy);
  }
  .topbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:10px;
    padding-bottom:10px;
    flex-wrap:wrap;
    gap:8px;
  }
  .topbar-left, .topbar-right{
    display:flex;
    align-items:center;
    gap:22px;
    flex-wrap:wrap;
  }
  .topbar span{
    display:inline-flex;
    align-items:center;
    gap:7px;
    white-space:nowrap;
  }
  .topbar svg{width:13px;height:13px;fill:var(--lime-dark);flex-shrink:0;}

  /* ===== HEADER / NAV ===== */
  header.main-header{
    background:var(--white);
    position:sticky;
    top:0;
    z-index:100;
    box-shadow:0 1px 0 rgba(14,22,64,0.06);
  }
  .nav-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding-top:16px;
    padding-bottom:16px;
  }
  .brand{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:800;
    font-size:26px;
    letter-spacing:0.5px;
    color:var(--navy);
  }
  .brand .sq{
    width:24px;height:24px;
    background:var(--lime);
    border-radius:5px;
    display:inline-block;
  }
  .brand span.sl{font-weight:600;}

  nav.main-nav ul{
    list-style:none;
    display:flex;
    gap:40px;
  }
  nav.main-nav a{
    font-weight:600;
    font-size:15px;
    letter-spacing:0.3px;
    color:var(--navy);
    padding-bottom:6px;
    border-bottom:3px solid transparent;
    transition:border-color .25s ease, color .25s ease;
  }
  nav.main-nav a:hover,
  nav.main-nav a.active{
    color:var(--navy);
    border-bottom-color:var(--lime);
  }

  .burger{
    display:none;
    background:none;
    border:none;
    cursor:pointer;
    padding:6px;
  }
  .burger span{
    display:block;
    width:26px;
    height:3px;
    background:var(--navy);
    margin:5px 0;
    border-radius:2px;
  }

  /* ===== HERO ===== */
  .hero{
    position:relative;
    overflow:hidden;
    min-height:800px;
    display:flex;
    align-items:center;
   
  }
  .herosec{
    position:relative;
    overflow:hidden;
    min-height:350px;
    display:flex;
    align-items:center;
   
  }
  .hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center 30%;
  }
  .hero-bgsec{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center 30%;
  }




  .hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(14,22,64,0.55) 0%, rgba(14,22,64,0.72) 100%);
  }
  .hero-inner{
    position:relative;
    z-index:2;
    width:100%;
    text-align:center;
    padding:45px 24px 490px;
  }
.hero-innersec{
    position:relative;
    z-index:2;
    width:100%;
    text-align:center;
    padding:120px 24px 290px;
  }




  .hero h1{
    color:var(--white);
    font-style:italic;
    font-weight:500;
    font-size:clamp(28px, 4.6vw, 52px);
    line-height:1.25;
    max-width:100%;
    margin:0 auto;
    text-shadow:0 2px 18px rgba(0,0,0,0.25);
  }

 .herosec h1{
    color:var(--white);
    font-style:italic;
    font-weight:500;
    font-size:clamp(28px, 4.6vw, 52px);
    line-height:1.25;
    max-width:100%;
    margin:0 auto;
    text-shadow:0 2px 18px rgba(0,0,0,0.25);
  }

  .bag-stage{
    position:relative;
    max-width:520px;
    margin:56px auto -170px;
    z-index:3;
  }
  .bag-blob{
    position:absolute;
    left:50%;
    bottom:14%;
    transform:translateX(-50%);
    width:88%;
    height:150px;
    background:var(--blue);
    border-radius:50%;
    filter:blur(0px);
    opacity:0.95;
    z-index:1;
  }
  .bag-stage img{
    position:relative;
    z-index:2;
    width:100%;
    filter:drop-shadow(0 30px 26px rgba(2,15,50,0.35));
  }

  /* ===== INFO / CTA STRIP ===== */
  .info-strip{
    text-align:center;
    padding:105px 24px 56px;
  }
  .info-strip p{
    font-size:20px;
    font-weight:600;
    color:var(--navy);
    margin-bottom:26px;
  }
  .btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:var(--lime);
    color:var(--navy);
    font-weight:700;
    font-size:14px;
    letter-spacing:0.4px;
    padding:16px 34px;
    border-radius:40px;
    border:none;
    cursor:pointer;
    transition:transform .2s ease, background .2s ease, box-shadow .2s ease;
    box-shadow:0 10px 24px -8px rgba(180,211,52,0.55);
  }
  .btn:hover{
    background:var(--lime-dark);
    transform:translateY(-2px);
  }
  .btn-rect{
    border-radius:0px;
  }
  .btn svg{width:16px;height:16px;}

  /* ===== CONTACT FORM SECTION ===== */
  #contacto{
    padding:0 24px 100px;
    scroll-margin-top:100px;
  }
  .form-card{
    max-width:var(--max-width);
    margin:0 auto;
    background:var(--soft-bg);
    border-radius:var(--radius);
    padding:56px 250px 64px;
  }
  .form-card h2{
    font-size:24px;
    font-weight:500;
    margin-bottom:34px;
    color:var(--navy);
  }
  .form-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:26px;
    max-width:900px;
	margin: 0 auto;
	}
  .field label{
    display:block;
    font-size:15px;
    font-weight:500;
    color:var(--navy);
    margin-bottom:10px;
  }
  .field input,
  .field textarea{
    width:100%;
    border:none;
    border-radius:8px;
    padding:16px 18px;
    font-family:'Inter', sans-serif;
    font-size:15px;
    color:var(--navy);
    background:var(--white);
    box-shadow:0 1px 2px rgba(14,22,64,0.06);
    transition:box-shadow .2s ease;
  }
  .field textarea{
    resize:vertical;
    min-height:180px;
  }
  .field input:focus,
  .field textarea:focus{
    outline:none;
    box-shadow:0 0 0 3px rgba(180,211,52,0.55);
  }
  .form-status{
    font-size:14px;
    font-weight:600;
    min-height:20px;
  }
  .form-status.ok{color:#3f8f2f;}
  .form-status.err{color:#c1443a;}

  /* ===== FOOTER ===== */
  footer{
    background:var(--navy);
    color:#c9cde3;
    padding:70px 24px 0;
  }
  .footer-grid{
    max-width:var(--max-width);
    margin:0 auto;
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr;
    gap:40px;
    padding-bottom:50px;
  }
  .footer-brand h3{
    color:var(--white);
    font-size:24px;
    font-weight:500;
    margin-bottom:16px;
    letter-spacing:0.4px;
  }
  .footer-brand p{
    font-size:14.5px;
    line-height:1.7;
    color:#aab0cf;
    max-width:420px;
  }
  .footer-col{
    display:flex;
    flex-direction:column;
    gap:24px;
  }
  .footer-item{
    display:flex;
    align-items:flex-start;
    gap:16px;
  }
  .footer-icon{
    width:52px;
    height:52px;
    background:var(--white);
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
  }
  .footer-icon svg{width:22px;height:22px;fill:var(--lime-dark);}
  .footer-item h4{
    color:var(--white);
    font-size:14.5px;
    font-weight:700;
    letter-spacing:0.4px;
    margin-bottom:4px;
  }
  .footer-item p{
    font-size:14px;
    color:#aab0cf;
    line-height:1.5;
  }
  .footer-bottom{
    border-top:1px solid rgba(255,255,255,0.12);
    padding:26px 0;
    text-align:center;
    font-size:13.5px;
  }
  .footer-bottom ul{
    list-style:none;
    display:flex;
    justify-content:center;
    gap:34px;
    flex-wrap:wrap;
  }
  .footer-bottom a{
    color:#c9cde3;
    transition:color .2s ease;
  }
  .footer-bottom a:hover{color:var(--lime);}

  /* ===== RESPONSIVE ===== */
  @media (max-width:900px){
    .footer-grid{grid-template-columns:1fr;}
    .form-card{padding:40px 28px 48px;}
  }

  @media (max-width:768px){
    .topbar .container{justify-content:center;text-align:center;}
    .topbar-left, .topbar-right{justify-content:center;width:100%;}
    nav.main-nav{
      position:fixed;
      inset:0 0 0 auto;
      width:78%;
      max-width:320px;
      height:100vh;
      background:var(--navy);
      transform:translateX(100%);
      transition:transform .3s ease;
      z-index:200;
      padding:100px 32px;
    }
    nav.main-nav.open{transform:translateX(0);}
    nav.main-nav ul{flex-direction:column;gap:26px;}
    nav.main-nav a{color:var(--white);font-size:18px;}
    .burger{display:block;}
    .hero{min-height:auto;}
    .hero-inner{padding:60px 20px 220px;}
    .bag-stage{margin-top:40px;margin-bottom:-190px;max-width:340px;}
    .info-strip{padding-top:230px;}
    .footer-item{align-items:center;}
  }

  @media (max-width:480px){
    .brand{font-size:20px;}
    .brand .sq{width:20px;height:20px;}
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    *{transition:none !important;}
  }

  /* Visible keyboard focus */
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  textarea:focus-visible{
    outline:3px solid var(--blue);
    outline-offset:2px;
  }
