

/* =========================
   THEME DARK
========================= */
body.antara-theme-dark{
    --antara-bg:#0b1120;
    --antara-bg-soft:#111827;
    --antara-surface:#151f2e;
    --antara-card:rgba(255,255,255,.055);
    --antara-card-strong:rgba(255,255,255,.075);
    --antara-border:rgba(255,255,255,.10);
    --antara-text:#ffffff;
    --antara-muted:#94a3b8;
    --antara-soft:#cbd5e1;
    --antara-shadow:0 24px 70px rgba(0,0,0,.32);
    --antara-grid:rgba(255,255,255,.035);
    --antara-hero-glow-1:rgba(244,87,32,.18);
    --antara-hero-glow-2:rgba(38,59,81,.80);
    --antara-btn-secondary-bg:rgba(255,255,255,.045);
    --antara-btn-secondary-hover:rgba(255,255,255,.09);
}

/* =========================
   THEME LIGHT
========================= */
body.antara-theme-light{
    --antara-bg:#f8fafc;
    --antara-bg-soft:#ffffff;
    --antara-surface:#ffffff;
    --antara-card:rgba(255,255,255,.88);
    --antara-card-strong:rgba(255,255,255,.96);
    --antara-border:rgba(15,23,42,.10);
    --antara-text:#0f172a;
    --antara-muted:#64748b;
    --antara-soft:#334155;
    --antara-shadow:0 24px 70px rgba(15,23,42,.10);
    --antara-grid:rgba(15,23,42,.045);
    --antara-hero-glow-1:rgba(244,87,32,.13);
    --antara-hero-glow-2:rgba(38,59,81,.14);
    --antara-btn-secondary-bg:rgba(15,23,42,.035);
    --antara-btn-secondary-hover:rgba(15,23,42,.07);
}

/* =========================
   BASE
========================= */
html{
    scroll-behavior:smooth;
}

body{
    min-height:100vh;
    background:
        radial-gradient(circle at top left, var(--antara-hero-glow-1), transparent 34%),
        radial-gradient(circle at top right, var(--antara-hero-glow-2), transparent 38%),
        var(--antara-bg);
    color:var(--antara-text);
    font-family:'Plus Jakarta Sans', Arial, sans-serif;
    overflow-x:hidden;
}

::selection{
    background:rgba(var(--antara-orange-rgb),.28);
    color:var(--antara-text);
}

/* =========================
   LAYOUT
========================= */
.antara-container{
    width:min(1180px, calc(100% - 32px));
    margin-inline:auto;
}

.antara-section{
    padding:96px 0;
}

@media(max-width:768px){
    .antara-section{
        padding:72px 0;
    }
}

/* =========================
   TYPOGRAPHY
========================= */
.antara-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 14px;
    border:1px solid var(--antara-border);
    border-radius:999px;
    background:var(--antara-card);
    color:var(--antara-soft);
    font-size:13px;
    font-weight:700;
    backdrop-filter:blur(16px);
}

.antara-title{
    font-size:clamp(38px, 6vw, 78px);
    line-height:.96;
    letter-spacing:-.06em;
    font-weight:800;
    color:var(--antara-text);
}

.antara-section-title{
    font-size:clamp(34px, 4vw, 62px);
    line-height:1;
    letter-spacing:-.055em;
    font-weight:800;
    color:var(--antara-text);
}

.antara-subtitle{
    color:var(--antara-muted);
    font-size:clamp(16px, 2vw, 20px);
    line-height:1.7;
}

.antara-gradient-text{
    background:linear-gradient(90deg, var(--antara-text), #ffb199, var(--antara-orange));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

/* =========================
   CARDS
========================= */
.antara-card{
    background:linear-gradient(180deg, var(--antara-card-strong), var(--antara-card));
    border:1px solid var(--antara-border);
    border-radius:var(--antara-radius);
    box-shadow:var(--antara-shadow);
    backdrop-filter:blur(18px);
}

.antara-card-soft{
    background:var(--antara-card);
    border:1px solid var(--antara-border);
    border-radius:22px;
    backdrop-filter:blur(14px);
}

.antara-icon-box{
    width:48px;
    height:48px;
    border-radius:18px;
    background:rgba(var(--antara-orange-rgb),.14);
    color:var(--antara-orange);
    display:flex;
    align-items:center;
    justify-content:center;
}

/* =========================
   BUTTONS
========================= */
.antara-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:48px;
    padding:0 22px;
    border-radius:999px;
    font-weight:800;
    transition:.25s ease;
    text-decoration:none;
    border:1px solid transparent;
    cursor:pointer;
    white-space:nowrap;
}

.antara-btn-primary{
    background:var(--antara-orange);
    color:#fff;
    box-shadow:0 16px 40px rgba(var(--antara-orange-rgb),.32);
}

.antara-btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 20px 55px rgba(var(--antara-orange-rgb),.42);
}

.antara-btn-secondary{
    border-color:var(--antara-border);
    color:var(--antara-text);
    background:var(--antara-btn-secondary-bg);
}

.antara-btn-secondary:hover{
    background:var(--antara-btn-secondary-hover);
    transform:translateY(-2px);
}

/* =========================
   BACKGROUNDS
========================= */
.antara-grid-bg{
    position:relative;
    overflow:hidden;
}

.antara-grid-bg::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(var(--antara-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--antara-grid) 1px, transparent 1px);
    background-size:48px 48px;
    mask-image:linear-gradient(to bottom, black, transparent 80%);
    pointer-events:none;
}

.antara-glow{
    position:absolute;
    width:320px;
    height:320px;
    border-radius:999px;
    background:rgba(var(--antara-orange-rgb),.18);
    filter:blur(80px);
    pointer-events:none;
}

/* =========================
   HEADER HELPERS
========================= */
.antara-header-shell{
    border:1px solid var(--antara-border);
    background:var(--antara-card);
    color:var(--antara-text);
    backdrop-filter:blur(18px);
    box-shadow:0 12px 40px rgba(0,0,0,.12);
}

/* =========================
   ANIMATIONS
========================= */
.reveal-up{
    opacity:0;
    transform:translateY(24px);
    transition:.7s ease;
}

.reveal-up.is-visible{
    opacity:1;
    transform:none;
}

.antara-hover-lift{
    transition:.25s ease;
}

.antara-hover-lift:hover{
    transform:translateY(-6px);
}

/* =========================
   UTILS
========================= */
.text-antara{
    color:var(--antara-text);
}

.text-antara-muted{
    color:var(--antara-muted);
}

.bg-antara-surface{
    background:var(--antara-surface);
}

.border-antara{
    border-color:var(--antara-border);
}

/* =========================
   SPACING SYSTEM
========================= */
.antara-space-xs{ padding:16px; }
.antara-space-sm{ padding:24px; }
.antara-space-md{ padding:32px; }
.antara-space-lg{ padding:48px; }
.antara-space-xl{ padding:72px; }

.antara-section-sm{ padding:64px 0; }
.antara-section-md{ padding:96px 0; }
.antara-section-lg{ padding:128px 0; }

.antara-section-no-pb{ padding:128px 0px 0px 0px; }


/* =========================
   CONTAINERS
========================= */
.antara-container-sm{
    width:min(880px, calc(100% - 32px));
    margin-inline:auto;
}

.antara-container-md{
    width:min(1080px, calc(100% - 32px));
    margin-inline:auto;
}

.antara-container-lg{
    width:min(1280px, calc(100% - 32px));
    margin-inline:auto;
}

/* =========================
   TYPOGRAPHY HELPERS
========================= */
.antara-h1{
    font-size:clamp(42px, 7vw, 84px);
    line-height:.95;
    letter-spacing:-.065em;
    font-weight:800;
}

.antara-h2{
    font-size:clamp(34px, 5vw, 64px);
    line-height:1;
    letter-spacing:-.055em;
    font-weight:800;
}

.antara-h3{
    font-size:clamp(22px, 2vw, 32px);
    line-height:1.15;
    letter-spacing:-.035em;
    font-weight:800;
}

.antara-p{
    color:var(--antara-muted);
    font-size:17px;
    line-height:1.75;
}

.text-white{
    color: var( --antara-text-white);
}
/* =========================
   BUTTONS
========================= */
.antara-btn-sm{
    min-height:40px;
    padding:0 16px;
    font-size:13px;
}

.antara-btn-lg{
    min-height:56px;
    padding:0 28px;
    font-size:16px;
}

.antara-btn-ghost{
    color:var(--antara-text);
    background:transparent;
    border-color:transparent;
}

.antara-btn-ghost:hover{
    background:var(--antara-btn-secondary-hover);
}

/* =========================
   CARDS
========================= */
.antara-card-hover{
    transition:.28s ease;
}

.antara-card-hover:hover{
    transform:translateY(-6px);
    border-color:rgba(var(--antara-orange-rgb),.35);
    box-shadow:0 28px 80px rgba(var(--antara-orange-rgb),.12);
}

.antara-feature-card{
    padding:32px;
    min-height:280px;
    overflow:hidden;
}

@media(max-width:1024px){

    .antara-feature-card{
        min-height:auto;
    }

}

.antara-mini-card{
    padding:20px;
    border-radius:22px;
    background:var(--antara-card);
    border:1px solid var(--antara-border);
}

/* =========================
   GLASS EFFECTS
========================= */
.antara-glass{
    background:var(--antara-card);
    border:1px solid var(--antara-border);
    backdrop-filter:blur(18px);
}

.antara-glass-strong{
    background:var(--antara-card-strong);
    border:1px solid var(--antara-border);
    backdrop-filter:blur(24px);
}

/* =========================
   SECTIONS
========================= */
.antara-section-header{
    max-width:760px;
    margin-bottom:48px;
}

.antara-section-center{
    text-align:center;
    margin-inline:auto;
}

.antara-divider{
    height:1px;
    background:linear-gradient(90deg, transparent, var(--antara-border), transparent);
}

/* =========================
   DASHBOARD WIDGETS
========================= */
.antara-widget{
    background:linear-gradient(180deg, var(--antara-card-strong), var(--antara-card));
    border:1px solid var(--antara-border);
    border-radius:24px;
    padding:24px;
    box-shadow:var(--antara-shadow);
    overflow:hidden;
}

.antara-widget-label{
    color:var(--antara-muted);
    font-size:13px;
    font-weight:700;
}

.antara-widget-value{
    color:var(--antara-text);
    font-size:34px;
    line-height:1;
    font-weight:800;
    letter-spacing:-.04em;
}

.antara-badge{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:7px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:800;
    border:1px solid var(--antara-border);
    background:var(--antara-card);
    color:var(--antara-soft);
}

.antara-badge-orange{
    background:rgba(var(--antara-orange-rgb),.14);
    color:var(--antara-orange);
    border-color:rgba(var(--antara-orange-rgb),.24);
}

.antara-progress{
    width:100%;
    height:8px;
    border-radius:999px;
    background:var(--antara-btn-secondary-bg);
    overflow:hidden;
}

.antara-progress span{
    display:block;
    height:100%;
    border-radius:999px;
    background:var(--antara-orange);
}

/* =========================
   MODALS / SWEETALERT
========================= */
.swal2-popup.antara-swal{
    background:var(--antara-bg-soft) !important;
    color:var(--antara-text) !important;
    border:1px solid var(--antara-border) !important;
    border-radius:28px !important;
    box-shadow:var(--antara-shadow) !important;
}

.swal2-title{
    color:var(--antara-text) !important;
}

.swal2-html-container{
    color:var(--antara-muted) !important;
}

.swal2-confirm.antara-swal-confirm{
    background:var(--antara-orange) !important;
    color:var(--antara-text) !important;
    border-radius:999px !important;
    padding:12px 24px !important;
    font-weight:800 !important;
}

.swal2-cancel.antara-swal-cancel{
    background:var(--antara-btn-secondary-bg) !important;
    color:var(--antara-text) !important;
    border-radius:999px !important;
    padding:12px 24px !important;
    font-weight:800 !important;
}

/* =========================
   TOAST
========================= */
.antara-toast{
    position:fixed;
    right:24px;
    bottom:24px;
    z-index:9999;
    max-width:360px;
    padding:16px 18px;
    border-radius:20px;
    background:var(--antara-bg-soft);
    color:var(--antara-text);
    border:1px solid var(--antara-border);
    box-shadow:var(--antara-shadow);
    transform:translateY(16px);
    opacity:0;
    pointer-events:none;
    transition:.25s ease;
}

.antara-toast.show{
    opacity:1;
    transform:none;
}

.antara-toast-title{
    font-weight:800;
    margin-bottom:4px;
}

.antara-toast-message{
    color:var(--antara-muted);
    font-size:14px;
}

.antara-floating-cta{
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:80;
}

.antara-floating-whatsapp{
    min-height:54px;
    padding:0 22px;
}

/* =========================
   LOGOS
========================= */

.antara-logo-wrap{
    position:relative;
    display:flex;
    align-items:center;
}

.antara-logo-dark,
.antara-logo-light{
    transition:.25s ease;
}

/* DARK THEME */
body.antara-theme-dark .antara-logo-light{
    display:none;
}

body.antara-theme-dark .antara-logo-dark{
    display:block;
}

/* LIGHT THEME */
body.antara-theme-light .antara-logo-dark{
    display:none;
}

body.antara-theme-light .antara-logo-light{
    display:block;
}

.antara-input{
    width:100%;
    min-height:52px;
    padding:0 18px;
    border-radius:18px;
    border:1px solid var(--antara-border);
    background:var(--antara-card);
    color:var(--antara-text);
    outline:none;
    transition:.2s ease;
}

textarea.antara-input{
    padding-top:16px;
    resize:vertical;
}

.antara-input::placeholder{
    color:var(--antara-muted);
}

.antara-input:focus{
    border-color:rgba(var(--antara-orange-rgb),.55);
    box-shadow:0 0 0 4px rgba(var(--antara-orange-rgb),.12);
}

/* =========================
   SELECT
========================= */

select.antara-input{
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 3 3 3-3'/%3E%3C/svg%3E");

    background-repeat:no-repeat;
    background-position:right 18px center;

    padding-right:54px;
}

/* =========================
   FILE INPUT
========================= */

.antara-file{
    position:relative;
    width:100%;
}

.antara-file input[type="file"]{
    position:absolute;
    inset:0;
    opacity:0;
    cursor:pointer;
}

.antara-file-ui{
    min-height:120px;

    border:1px dashed var(--antara-border);

    border-radius:24px;

    background:rgba(255,255,255,.03);

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    gap:10px;

    text-align:center;

    transition:.25s ease;

    padding:24px;
}

.antara-file:hover .antara-file-ui{
    border-color:rgba(var(--antara-orange-rgb),.5);
    background:rgba(244,87,32,.05);
}

.antara-file-icon{
    font-size:34px;
}

.antara-file-title{
    font-weight:800;
}

.antara-file-subtitle{
    font-size:13px;
    color:var(--antara-muted);
}