:root{
    --navy:#07172f;
    --navy-2:#0f2545;
    --teal:#0f9f91;
    --teal-2:#14b8a6;
    --green:#22c55e;
    --light:#f3fbfd;
    --muted:#64748b;
    --border:#dce8ee;
}

*{
    box-sizing:border-box;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    color:#102033;
    background:#fff;
    line-height:1.6;
}

a{
    text-decoration:none;
}

.section{
    padding:88px 0;
}

.section-soft{
    background:linear-gradient(180deg,#f4fbfd,#ffffff);
}

.section-title{
    max-width:780px;
    margin:0 auto 54px;
    text-align:center;
}

.section-title h2{
    font-weight:900;
    color:var(--navy);
    font-size:40px;
    line-height:1.15;
}

.section-title p{
    font-size:18px;
    color:var(--muted);
}

/* NAVBAR */

.navbar{
    padding:0;
    background:#fff;
}

.navbar-brand img{
    height:76px;
    width:auto;
}

.nav-link{
    font-weight:700;
    color:#183354!important;
    margin:0 12px;
}

.nav-link:hover{
    color:var(--teal)!important;
}

/* BUTTONS */

.btn-main{
    background:linear-gradient(135deg,#10a89a,#0f766e);
    color:#fff;
    border:0;
    border-radius:18px;
    padding:14px 28px;
    font-weight:900;
    box-shadow:0 12px 28px rgba(15,118,110,.24);
}

.btn-main:hover{
    color:#fff;
    background:linear-gradient(135deg,#0f766e,#0b5e58);
}

.btn-soft{
    background:#fff;
    color:#0f766e;
    border:1px solid #0f9f91;
    border-radius:18px;
    padding:14px 28px;
    font-weight:900;
}

.btn-soft:hover{
    background:#ecfeff;
    color:#0f766e;
}

/* HERO */

.hero{
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at 78% 28%,#d7fbf7 0,#d7fbf7 17%,transparent 18%),
        linear-gradient(180deg,#ffffff 0%,#ffffff 70%,#f4fbfd 100%);
    padding:80px 0 70px;
}

.hero:before{
    content:"";
    position:absolute;
    left:-140px;
    top:-120px;
    width:340px;
    height:340px;
    border-radius:50%;
    background:#edfdfb;
}

.hero-kicker{
    display:inline-block;
    background:#d7fbf7;
    color:#0f766e;
    border-radius:40px;
    padding:9px 16px;
    font-size:13px;
    font-weight:900;
    letter-spacing:.4px;
    margin-bottom:22px;
    text-transform:uppercase;
}

.hero h1{
    font-size:54px;
    line-height:1.08;
    font-weight:900;
    color:#07172f;
    letter-spacing:-1px;
    margin-bottom:24px;
}

.hero h1 span{
    color:#0f9f91;
}

.hero p{
    font-size:18px;
    color:#52657a;
    max-width:620px;
}

.hero-list{
    list-style:none;
    padding:0;
    margin:28px 0 0;
}

.hero-list li{
    margin-bottom:10px;
    font-weight:700;
    color:#334155;
}

.hero-list i{
    color:var(--teal);
    margin-right:8px;
}

.hero-image-wrap{
    position:relative;
    text-align:center;
}

.hero-image-wrap:before{
    content:"";
    position:absolute;
    inset:8%;
    background:radial-gradient(circle, rgba(20,184,166,.18), transparent 68%);
    border-radius:50%;
    z-index:0;
}

.hero-main-image{
    position:relative;
    z-index:2;
    width:100%;
    max-width:620px;
    height:auto;
    filter:drop-shadow(0 28px 45px rgba(15,23,42,.16));
    animation:heroFloat 5s ease-in-out infinite;
}


@keyframes heroFloat{
    0%{transform:translateY(0);}
    50%{transform:translateY(-8px);}
    100%{transform:translateY(0);}
}


.hero-news-box{
background:#ffffff;
border:1px solid rgba(15,118,110,.18);
border-radius:22px;
padding:22px;
box-shadow:0 18px 45px rgba(15,23,42,.08);
}

.hero-news-badge{
display:inline-block;
background:#0f766e;
color:#fff;
font-size:12px;
font-weight:800;
text-transform:uppercase;
letter-spacing:.04em;
padding:7px 12px;
border-radius:999px;
margin-bottom:12px;
}

.hero-news-box h3{
font-size:22px;
font-weight:900;
margin-bottom:8px;
color:#07172f;
}

.hero-news-box p{
font-size:15px;
margin-bottom:14px;
color:#475569;
}

.hero-news-tags{
display:flex;
flex-wrap:wrap;
gap:8px;
}

.hero-news-tags span{
background:#eef6f5;
color:#0f766e;
border:1px solid rgba(15,118,110,.18);
border-radius:999px;
padding:7px 11px;
font-size:13px;
font-weight:700;
}




/* WORKFLOW */

.workflow-left h2{
    font-weight:900;
    color:#07172f;
    font-size:36px;
}

.workflow-step{
    text-align:center;
    position:relative;
    padding:10px;
}

.workflow-step:after{
    content:"\f061";
	font-family:"FontAwesome";
    position:absolute;
    right:-22px;
    top:50px;
    color:#0f9f91;
    font-size:42px;
    font-weight:300;
}

.workflow-step:last-child:after{
    display:none;
}

.step-bubble{
    position:relative;
    margin:0 auto 22px;
    text-align:center;
}

.step-bubble img{
    width:100%;
    max-width:220px;
    height:auto;
    display:block;
    margin:0 auto;
    transition:.25s;
}

.workflow-step:hover .step-bubble img{
    transform:translateY(-6px) scale(1.02);
}

.step-num{
    position:absolute;
    top:-30px;
    left:50%;
    transform:translateX(-50%);
    width:35px;
    height:35px;
    background:linear-gradient(135deg,#14b8a6,#0f766e);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    font-size:22px;
    z-index:10;
    box-shadow:0 10px 25px rgba(15,118,110,.25);
}

.workflow-step h4{
    font-size:20px;
    line-height:1.3;
    margin-bottom:14px;
    font-weight:900;
    color:#07172f;
}

.workflow-step p{
    font-size:16px;
    line-height:1.7;
    color:#64748b;
    max-width:250px;
    margin:auto;
}

/* SECURITY SECTION */

.security-image-wrap{
    position:relative;
    text-align:center;
}

.security-image-wrap:before{
    content:"";
    position:absolute;
    inset:10%;
    background:radial-gradient(circle, rgba(20,184,166,.15), transparent 70%);
    border-radius:50%;
    z-index:0;
}

.security-main-image{
    position:relative;
    z-index:2;
    width:100%;
    max-width:620px;
    height:auto;
    filter:drop-shadow(0 30px 45px rgba(15,23,42,.14));
    animation:securityFloat 6s ease-in-out infinite;
}

@keyframes securityFloat{
    0%{transform:translateY(0);}
    50%{transform:translateY(-10px);}
    100%{transform:translateY(0);}
}

.security-list-item{
    display:flex;
    gap:18px;
    margin-bottom:24px;
}

.security-list-icon{
    width:48px;
    height:48px;
    min-width:48px;
    border-radius:16px;
    background:#e3f9f7;
    color:#0f766e;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.security-list-item h4{
    font-size:17px;
    font-weight:900;
    color:#07172f;
    margin-bottom:4px;
}

.security-list-item p{
    color:#64748b;
    margin:0;
    font-size:15px;
}

/* FEATURES */

.feature-card{
    background:#fff;
    border:1px solid #e5eef3;
    border-radius:26px;
    padding:30px;
    height:100%;
    box-shadow:0 18px 46px rgba(15,23,42,.06);
    transition:.25s;
}

.feature-card:hover{
    transform:translateY(-6px);
    box-shadow:0 24px 60px rgba(15,23,42,.11);
}

.feature-icon{
    width:60px;
    height:60px;
    background:#e3f9f7;
    color:#0f766e;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:27px;
    margin-bottom:18px;
}

.feature-card h4{
    font-weight:900;
    color:#07172f;
}

.feature-card p{
    color:#64748b;
    margin:0;
}

/* PRICING */

.pricing-card{
    background:#fff;
    border:1px solid #e5eef3;
    border-radius:26px;
    padding:34px;
    height:100%;
    box-shadow:0 18px 46px rgba(15,23,42,.07);
    position:relative;
    overflow:hidden;
}

.pricing-card.highlight{
    border:2px solid #0f9f91;
    transform:translateY(-10px);
}

.plan-icon{
    width:58px;
    height:58px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#e3f9f7;
    color:#0f766e;
    font-size:23px;
    margin:-8px auto 16px;
}

.ribbon{
    position:absolute;
    top:12px;
    right:-50px;
    background:#0f9f91;
    color:#fff;
    transform:rotate(35deg);
    padding:8px 48px;
    font-size:12px;
    font-weight:900;
}

.old-price{
    text-decoration:line-through;
    color:#94a3b8;
    font-size:22px;
    text-align:center;
}

.launch-price{
    font-size:42px;
    line-height:1;
    font-weight:900;
    color:#07172f;
    text-align:center;
}

.price-note{
    text-align:center;
    color:#64748b;
    font-size:14px;
    margin-top:4px;
}

.check-list{
    list-style:none;
    padding:0;
    margin:26px 0 0;
}

.check-list li{
    padding:8px 0;
    color:#475569;
}

.check-list i{
    color:#0f9f91;
    margin-right:8px;
}

/* FAQ */

.accordion-item{
    border:1px solid #dbeafe;
    border-radius:18px!important;
    overflow:hidden;
    margin-bottom:14px;
    box-shadow:0 12px 30px rgba(15,23,42,.05);
}

.accordion-button{
    background:#fff;
    color:#0f172a;
    font-weight:800;
    padding:22px 24px;
}

.accordion-button:not(.collapsed){
    background:linear-gradient(135deg,#ecfeff,#f0fdfa);
    color:#0f766e;
    box-shadow:none;
}

.accordion-button:focus{
    box-shadow:none;
    border-color:transparent;
}

.accordion-body{
    background:#fff;
    color:#475569;
    padding:22px 24px;
}

/* SEO SECTION */

.seo-visual-card{
    background:linear-gradient(135deg,#07111f,#0f766e);
    color:#fff;
    border-radius:30px;
    padding:68px 38px;
    box-shadow:0 25px 70px rgba(15,23,42,.18);
    position:relative;
    overflow:hidden;
}

.seo-visual-card:after{
    content:"";
    position:absolute;
    right:-70px;
    top:-70px;
    width:180px;
    height:180px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
}

.seo-big-icon{
    width:100%;
    height:80px;
    border-radius:24px;
    background:rgba(255,255,255,.14);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    margin-bottom:22px;
}

.seo-mini-row{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.18);
    border-radius:14px;
    padding:12px 14px;
    margin-bottom:10px;
}

.seo-mini-row i{
    color:#5eead4;
    margin-right:8px;
}

.seo-kicker{
    display:inline-block;
    background:#ccfbf1;
    color:#0f766e;
    padding:8px 14px;
    border-radius:50px;
    font-weight:900;
    font-size:14px;
    margin-bottom:18px;
}

.seo-chip{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:15px 16px;
    height:100%;
    box-shadow:0 10px 28px rgba(15,23,42,.05);
    font-weight:800;
    color:#334155;
}

.seo-chip i{
    color:#0f766e;
    margin-right:8px;
}

/* CONTACT CTA */

.cta{
    background:linear-gradient(135deg,#07111f,#0f766e);
    position:relative;
    overflow:hidden;
    padding:80px 0;
}

.contact-image-wrap{
    position:relative;
    text-align:center;
    margin-bottom:35px;
}

.contact-image-wrap:before{
    content:"";
    position:absolute;
    inset:8%;
    background:radial-gradient(circle, rgba(20,184,166,.14), transparent 70%);
    border-radius:50%;
    z-index:0;
}

.contact-main-image{
    position:relative;
    z-index:2;
    width:100%;
    max-width:640px;
    height:auto;
    filter:drop-shadow(0 28px 45px rgba(15,23,42,.14));
    animation:contactFloat 6s ease-in-out infinite;
}

@keyframes contactFloat{
    0%{transform:translateY(0);}
    50%{transform:translateY(-10px);}
    100%{transform:translateY(0);}
}

.contact-copy-box{
    color:#ffffff;
}

.contact-copy-box h2{
    color:#ffffff;
}

.contact-copy-box .lead{
    color:#d7e7f3;
}

.contact-muted{
    color:#cbd5e1;
    line-height:1.8;
    font-size:16px;
}

.contact-check-list div{
    color:#ffffff;
    font-weight:700;
    font-size:16px;
}

.contact-check-list i{
    color:#5eead4;
    margin-right:10px;
}

.hero-logo-inline{
    height:60px;
    width:auto;
    opacity:.95;
}

/* CONTACT FORM */

.contact-card{
    background:#fff;
    color:#0f172a;
    border-radius:28px;
    padding:34px;
    box-shadow:0 25px 70px rgba(15,23,42,.12);
}

.contact-card .form-label{
    font-weight:800;
    color:#334155;
}

.contact-card .form-control{
    border-radius:14px;
    border:1px solid #cbd5e1;
    padding:13px 15px;
}

.contact-card .form-control:focus{
    border-color:#14b8a6;
    box-shadow:0 0 0 .2rem rgba(20,184,166,.15);
}

.contact-extra-box,
.modern-privacy-box{
    background:#f8fafc;
    border:1px solid #e2e8f0;
    border-radius:22px;
    padding:22px;
}

.captcha-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    margin-bottom:18px;
    flex-wrap:wrap;
}

.captcha-header span{
    font-weight:800;
    color:#0f172a;
}

.captcha-header span i{
    color:#0f766e;
    margin-right:8px;
}

.captcha-refresh{
    text-decoration:none;
    font-weight:700;
    color:#0f766e;
}

.captcha-modern-wrap{
    display:flex;
    gap:15px;
    align-items:center;
    flex-wrap:wrap;
}

.captcha-image-box{
    background:#fff;
    border:1px solid #cbd5e1;
    border-radius:14px;
    padding:5px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.captcha-input-box{
    flex:1;
    min-width:220px;
}

.modern-checkbox{
    display:flex;
    align-items:flex-start;
    gap:16px;
    cursor:pointer;
    margin:0;
}

.modern-checkbox input{
    display:none;
}

.checkmark{
    width:26px;
    height:26px;
    min-width:26px;
    border-radius:8px;
    border:2px solid #14b8a6;
    position:relative;
    margin-top:2px;
    background:#fff;
}

.modern-checkbox input:checked + .checkmark{
    background:#14b8a6;
    border-color:#14b8a6;
}

.modern-checkbox input:checked + .checkmark:after{
    content:"";
    position:absolute;
    left:7px;
    top:2px;
    width:7px;
    height:14px;
    border:solid #fff;
    border-width:0 3px 3px 0;
    transform:rotate(45deg);
}

.privacy-text{
    color:#475569;
    line-height:1.7;
    font-size:11px;
}

.privacy-text a{
    color:#0f766e;
}

/* FOOTER */

.footer{
    background:#020617;
    color:#94a3b8;
    text-align:center;
    padding:28px 0;
}

.footer a{
    color:#94a3b8;
    text-decoration:none;
    font-weight:bold;
}

/* WHATSAPP BUTTON */

#btn_whatsapp{
    display:block;
    height:50px;
    width:50px;
    border:none;
    overflow:hidden;
    background:none;
    padding:0;
    bottom:15px;
    left:15px;
    position:fixed;
    box-shadow:rgba(0,0,0,.5) 0 3pt 12pt;
    border-radius:50%;
    z-index:999;
}

/* RESPONSIVE */

@media(max-width:991px){
	
.navbar-collapse{padding-bottom:10px}

    .hero{
        text-align:center;
        padding:58px 0;
    }

    .hero h1{
        font-size:38px;
    }

    .hero p{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-image-wrap{
        margin-top:35px;
    }

    .workflow-step:after{
        display:none;
    }

    .pricing-card.highlight{
        transform:none;
    }

    .security-image-wrap{
        margin-bottom:35px;
    }

}

@media(max-width:768px){

    .hero-main-image,
    .security-main-image{
        max-width:420px;
    }

    .contact-main-image{
        max-width:480px;
    }

}

@media(max-width:576px){

    .navbar-brand img{
        height:54px;
    }

    .section{
        padding:60px 0;
    }

    .section-title h2{
        font-size:31px;
    }

    .captcha-modern-wrap{
        flex-direction:column;
        align-items:stretch;
    }

}



#btn_whatsapp {
  display: block;
  height: 50px;
  width: 50px;
  border: none;
  overflow: hidden;
  background: none;
  display: inline;
  padding: 0px;
  bottom: 15px;
  left: 15px;
  position: fixed;
  top: auto;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 3pt 12pt;
  border-radius: 50%;
  z-index: 999;
}