/* ==========================================================
   ORÇAMENTOS
   HERO
========================================================== */

.quote-page{
    background:#F8F5F1;
}

/* ==========================================================
   HERO
========================================================== */

.quote-hero{
    padding:210px 0 120px;
    background:#F8F5F1;
    position:relative;
    overflow:hidden;
}

.quote-hero::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    background:rgba(214,40,40,.04);
    top:-180px;
    right:-150px;
    filter:blur(120px);
}

.quote-hero::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(214,40,40,.03);
    left:-160px;
    bottom:-160px;
    filter:blur(120px);
}

.hero-grid{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:1fr 620px;
    gap:70px;
    align-items:flex-start;
}

/* ==========================================================
   LADO ESQUERDO
========================================================== */

.hero-left{
    max-width:720px;
}

.hero-tag{

    display:inline-flex;
    align-items:center;

    padding:10px 18px;

    border-radius:999px;

    background:#FEECEC;

    color:var(--primary);

    font-size:13px;
    font-weight:700;

    letter-spacing:2px;
    text-transform:uppercase;

    margin-bottom:28px;

}

.hero-left h1{

    font-size:64px;

    line-height:1.05;

    font-weight:900;

    letter-spacing:-2px;

    color:#111827;

    margin-bottom:30px;

}

.hero-left p{

    font-size:19px;

    line-height:1.9;

    color:#667085;

    max-width:700px;

}

/* ==========================================================
   BENEFÍCIOS
========================================================== */

.hero-benefits{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

    margin-top:50px;

}

.benefit{

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:22px;

    background:#fff;

    border-radius:22px;

    border:1px solid #ECECEC;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

    transition:.35s;

}

.benefit:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.benefit-icon{

    flex-shrink:0;

    width:52px;
    height:52px;

    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#FEECEC;

    color:var(--primary);

    font-size:22px;

    font-weight:800;

}

.benefit strong{

    display:block;

    font-size:18px;

    color:#111827;

    margin-bottom:6px;

}

.benefit span{

    display:block;

    color:#667085;

    line-height:1.6;

    font-size:15px;

}

/* ==========================================================
   TRUST
========================================================== */

.hero-trust{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin-top:40px;

}

.trust-card{

    text-align:center;

    background:#fff;

    border-radius:22px;

    border:1px solid #ECECEC;

    padding:28px;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

    transition:.35s;

}

.trust-card:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.trust-card h3{

    font-size:40px;

    font-weight:800;

    color:var(--primary);

    margin-bottom:10px;

    letter-spacing:-2px;

}

.trust-card p{

    font-size:15px;

    color:#667085;

    line-height:1.6;

}

/* ==========================================================
   FORMULÁRIO
========================================================== */

.hero-right{

    position:sticky;

    top:130px;

}

.quote-box{

    position:relative;

    background:#ffffff;

    border-radius:30px;

    padding:45px 45px 65px;

    border:1px solid rgba(214,40,40,.15);

    box-shadow:
        0 25px 60px rgba(0,0,0,.10),
        0 0 18px rgba(214,40,40,.12);

    overflow:hidden;

}
.quote-box::before{

    content:"";

    position:absolute;

    inset:-2px;

    border-radius:32px;

    padding:2px;

    background:linear-gradient(
        135deg,
        rgba(214,40,40,.9),
        rgba(255,110,110,.4),
        rgba(214,40,40,.9)
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
    mask-composite:exclude;

    pointer-events:none;

}

.quote-box-header{

    margin-bottom:35px;

}

.quote-box-header span{

    display:inline-block;

    margin-bottom:14px;

    color:var(--primary);

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.quote-box-header h2{

    font-size:38px;

    line-height:1.15;

    color:#111827;

    margin-bottom:15px;

}

.quote-box-header p{

    color:#667085;

    line-height:1.8;

    font-size:16px;

}

/* ==========================================================
   GRID DO FORMULÁRIO
========================================================== */

.quote-form{
    width:100%;
}

.form-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

}

.form-group{

    display:flex;

    flex-direction:column;

}

.form-group.full{

    grid-column:1/-1;

}

.form-group label{

    margin-bottom:10px;

    font-size:15px;

    font-weight:600;

    color:#111827;

}
/* ==========================================================
   CAMPOS DO FORMULÁRIO
========================================================== */

.form-group input,
.form-group select,
.form-group textarea{

    width:100%;

    font-family:'Inter',sans-serif;
    font-size:15px;

    color:#1F2937;

    background:#fff;

    border:1px solid #DCE3EA;

    border-radius:16px;

    padding:16px 18px;

    transition:.30s;

    outline:none;

}

.form-group input,
.form-group select{

    height:58px;

}

.form-group textarea{

    resize:vertical;
    min-height:190px;
    line-height:1.8;

}

.form-group input::placeholder,
.form-group textarea::placeholder{

    color:#98A2B3;

}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover{

    border-color:#C8D1DA;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    border-color:var(--primary);

    box-shadow:
    0 0 0 4px rgba(214,40,40,.10);

}

/* ==========================================================
   SELECT
========================================================== */

.form-group select{

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    cursor:pointer;

    padding-right:55px;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 9 6 6 6-6'/%3E%3C/svg%3E");

    background-repeat:no-repeat;
    background-position:right 18px center;
    background-size:18px;

}

/* ==========================================================
   FILE INPUT
========================================================== */

.form-group input[type=file]{

    padding:18px;

    height:auto;

    cursor:pointer;

    background:#FAFBFC;

}

.form-group input[type=file]::file-selector-button{

    border:none;

    background:var(--primary);

    color:#fff;

    padding:12px 20px;

    border-radius:999px;

    font-weight:600;

    cursor:pointer;

    margin-right:18px;

    transition:.3s;

}

.form-group input[type=file]::file-selector-button:hover{

    background:var(--primary-dark);

}

/* ==========================================================
   PRODUCT GRID
========================================================== */

.product-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:16px;

    margin-top:5px;

}

.product-card{
    position:relative;
    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;

    height:72px;
    padding:12px;

    border:1px solid #E7E7E7;
    border-radius:18px;
    background:#fff;

    cursor:pointer;
    transition:.30s;
}

.product-card:hover{

    transform:translateY(-4px);

    border-color:var(--primary);

    box-shadow:
    0 14px 35px rgba(0,0,0,.06);

}

.product-card input{

    display:none;

}

.product-card span{

    display:block;

    font-size:15px;

    font-weight:600;

    color:#374151;

}

.product-card input:checked + span{

    color:var(--primary);

}

.product-card:has(input:checked){

    border:2px solid var(--primary);

    background:#FEF2F2;

}

/* ==========================================================
   RADIO GRID
========================================================== */

.radio-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.radio-grid label{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:12px;

    width:100%;
    min-height:58px;
    padding:16px 20px;

    border:1px solid #E7E7E7;
    border-radius:16px;
    background:#fff;

    cursor:pointer;
    transition:.3s;
}

.radio-grid label:hover{
    border-color:var(--primary);
}

.radio-grid input{
    flex:0 0 18px;
    width:18px;
    height:18px;
    accent-color:var(--primary);
}

.radio-grid span{
    flex:1;
    display:block;

    white-space:normal;
    word-break:normal;
    overflow-wrap:normal;

    font-size:15px;
    font-weight:600;
    line-height:1.4;
    color:#374151;
}

/* ==========================================================
   CONTRACT BOX
========================================================== */

.contract-box{

    background:#FEF2F2;

    border:1px solid #F5C2C2;

    border-left:5px solid var(--primary);

    padding:24px;

    border-radius:18px;

}

.contract-box strong{

    display:block;

    margin-bottom:10px;

    color:#111827;

    font-size:18px;

}

.contract-box p{

    color:#667085;

    line-height:1.8;

}

/* ==========================================================
   RGPD
========================================================== */

.checkbox label{

    display:flex;

    align-items:flex-start;

    gap:14px;

    line-height:1.7;

    cursor:pointer;

    color:#667085;

}

.checkbox input{

    width:20px !important;
    height:20px !important;

    margin-top:2px;

    accent-color:var(--primary);

}

/* ==========================================================
   BOTÃO
========================================================== */

.btn-submit{

    width:100%;

    height:64px;

    border:none;

    border-radius:999px;

    background:var(--primary);

    color:#fff;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.30s;

    box-shadow:
    0 15px 35px rgba(214,40,40,.25);

}

.btn-submit:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

    box-shadow:
    0 22px 45px rgba(214,40,40,.30);

}

/* ==========================================================
   SECTION HEADINGS
========================================================== */

.section-heading{

    max-width:850px;

    margin:0 auto 70px;

    text-align:center;

}

.section-heading span{

    display:inline-block;

    margin-bottom:16px;

    color:var(--primary);

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.section-heading h2{

    font-size:52px;

    line-height:1.15;

    color:#111827;

    margin-bottom:18px;

}

.section-heading p{

    font-size:18px;

    line-height:1.9;

    color:#667085;

}
/* ==========================================================
   COMO FUNCIONA
========================================================== */

.quote-process{
    padding:120px 0;
    background:#fff;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.process-card{

    position:relative;

    background:#fff;

    border:1px solid #ECECEC;

    border-radius:24px;

    padding:42px;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

    transition:.35s ease;

    overflow:hidden;

}

.process-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:var(--primary);

}

.process-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 55px rgba(0,0,0,.10);

}

.process-number{

    font-size:56px;

    font-weight:800;

    color:#ECECEC;

    line-height:1;

    margin-bottom:24px;

}

.process-card h3{

    font-size:24px;

    color:#111827;

    margin-bottom:18px;

    line-height:1.3;

}

.process-card p{

    color:#667085;

    line-height:1.8;

    font-size:16px;

}

/* ==========================================================
   WHY UNIFORMA
========================================================== */

.why-uniforma{

    padding:120px 0;

    background:#F8F5F1;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.why-card{

    background:#fff;

    border-radius:24px;

    padding:40px;

    border:1px solid #ECECEC;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 55px rgba(0,0,0,.10);

}

.why-icon{

    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:#FEECEC;

    color:var(--primary);

    font-size:34px;

    margin-bottom:28px;

}

.why-card h3{

    font-size:24px;

    color:#111827;

    margin-bottom:16px;

}

.why-card p{

    color:#667085;

    line-height:1.8;

}

/* ==========================================================
   PLANOS
========================================================== */

.plans-section{

    padding:120px 0;

    background:#fff;

}

.plans-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.plan-card{

    position:relative;

    background:#fff;

    border:1px solid #ECECEC;

    border-radius:28px;

    padding:42px;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

    transition:.35s;

}

.plan-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

.plan-card.featured{

    border:2px solid var(--primary);

    box-shadow:0 20px 50px rgba(214,40,40,.12);

}

.popular-badge{

    position:absolute;

    top:-14px;
    right:28px;

    background:var(--primary);

    color:#fff;

    padding:8px 18px;

    border-radius:999px;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

}

.plan-header{

    margin-bottom:30px;

}

.plan-tag{

    display:inline-block;

    margin-bottom:14px;

    color:var(--primary);

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.plan-header h3{

    font-size:34px;

    line-height:1.2;

    color:#111827;

}

.plan-card ul{

    list-style:none;

    margin:35px 0;

}

.plan-card ul li{

    padding:14px 0;

    border-bottom:1px solid #F1F1F1;

    color:#374151;

    font-size:16px;

    line-height:1.7;

}

.plan-card ul li:last-child{

    border-bottom:none;

}

.plan-footer{

    margin-top:35px;

    padding:22px;

    background:#F8F8F8;

    border-radius:18px;

}

.plan-footer strong{

    display:block;

    color:#111827;

    line-height:1.8;

    font-size:15px;

}

.contract-info{

    margin-top:35px;

    padding:24px;

    border-radius:20px;

    background:#FEF2F2;

    border-left:5px solid var(--primary);

}

.contract-info strong{

    display:block;

    margin-bottom:12px;

    font-size:18px;

    color:#111827;

}

.contract-info p{

    color:#667085;

    line-height:1.8;

}

/* ==========================================================
   RESPONSIVO
========================================================== */

@media(max-width:1100px){

    .process-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .why-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:900px){

    .plans-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .quote-process,
    .why-uniforma,
    .plans-section{

        padding:90px 0;

    }

    .process-grid,
    .why-grid{

        grid-template-columns:1fr;

    }

    .process-card,
    .why-card,
    .plan-card{

        padding:32px;

    }

    .section-heading h2{

        font-size:36px;

    }

    .plan-header h3{

        font-size:28px;

    }

}
/* ==========================================================
   COMPARAÇÃO
========================================================== */

.comparison-section{
    padding:120px 0;
    background:#F8F5F1;
}

.comparison-table{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    border:1px solid #ECECEC;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.comparison-row{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    align-items:center;
}

.comparison-row>div{
    padding:24px 30px;
    border-bottom:1px solid #F2F2F2;
    text-align:center;
}

.comparison-row>div:first-child{
    text-align:left;
    font-weight:600;
    color:#111827;
}

.comparison-head{
    background:var(--primary);
    color:#fff;
    font-weight:700;
}

.comparison-head>div{
    border-bottom:none;
}

.comparison-row:last-child>div{
    border-bottom:none;
}

/* ==========================================================
   FAQ
========================================================== */

.faq-section{
    padding:120px 0;
    background:#fff;
}

.faq-wrapper{
    max-width:900px;
    margin:auto;
}

.faq-item{
    border:1px solid #ECECEC;
    border-radius:18px;
    overflow:hidden;
    margin-bottom:18px;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.04);
}

.faq-question{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:24px 30px;
    background:none;
    border:none;
    cursor:pointer;
    font-size:18px;
    font-weight:700;
    color:#111827;
}

.faq-question span{
    font-size:28px;
    color:var(--primary);
}

.faq-answer{
    display:none;
    padding:0 30px 28px;
}

.faq-answer p{
    color:#667085;
    line-height:1.9;
}

.faq-item.active .faq-answer{
    display:block;
}

/* ==========================================================
   CTA FINAL
========================================================== */

.quote-cta{
    padding:120px 0;
    background:#111827;
}

.cta-box{
    max-width:1000px;
    margin:auto;
    text-align:center;
    color:#fff;
}

.cta-box span{
    display:inline-block;
    margin-bottom:18px;
    color:#FCA5A5;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.cta-box h2{
    font-size:52px;
    line-height:1.15;
    margin-bottom:25px;
}

.cta-box p{
    max-width:800px;
    margin:0 auto;
    color:#D1D5DB;
    line-height:1.9;
    font-size:18px;
}

.cta-actions{
    margin-top:45px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.cta-actions a{
    padding:18px 36px;
    border-radius:999px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.btn-primary{
    background:var(--primary);
    color:#fff;
}

.btn-primary:hover{
    background:var(--primary-dark);
}

.btn-secondary{
    background:#fff;
    color:#111827;
}

.btn-secondary:hover{
    transform:translateY(-3px);
}

/* ==========================================================
   RESPONSIVO FINAL
========================================================== */

@media(max-width:900px){

    .comparison-row{
        grid-template-columns:1fr;
    }

    .comparison-row>div{
        text-align:left;
    }

    .comparison-head{
        display:none;
    }
}

@media(max-width:768px){

    .comparison-section,
    .faq-section,
    .quote-cta{
        padding:90px 0;
    }

    .cta-box h2{
        font-size:36px;
    }

    .cta-actions{
        flex-direction:column;
    }

    .cta-actions a{
        width:100%;
        text-align:center;
    }

    .faq-question{
        font-size:16px;
        padding:20px;
    }

    .faq-answer{
        padding:0 20px 20px;
    }
}
.why-icon img{
    width:36px;
    height:36px;
    display:block;
    object-fit:contain;
}
/* Corrige larguras com padding/border */
*,
*::before,
*::after{
    box-sizing:border-box;
}

/* Evita overflow dentro das colunas */
.hero-grid,
.hero-left,
.hero-right,
.quote-box,
.form-grid,
.form-group,
.radio-grid{
    min-width:0;
}

.quote-box{
    width:100%;
    max-width:620px;
}

/* Tablets / ecrãs médios */
@media(max-width:1200px){

    .hero-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .hero-right{
        position:relative;
        top:auto;
    }

    .quote-box{
        max-width:100%;
    }
}

/* Mobile */
@media(max-width:768px){

    .quote-hero{
        padding:150px 0 80px;
    }

    .quote-box{
        padding:28px 22px;
        border-radius:24px;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .radio-grid{
        grid-template-columns:1fr !important;
    }

    .radio-grid label{
        width:100% !important;
        height:auto !important;
        min-height:58px;
    }
}

/* Mobile pequeno */
@media(max-width:480px){

    .product-grid{
        grid-template-columns:1fr;
    }

    .quote-box-header h2{
        font-size:30px;
    }
}
html,
body{
    overflow-x:hidden;
}

*,
*::before,
*::after{
    box-sizing:border-box;
}

.hero-grid,
.hero-left,
.hero-right,
.quote-box,
.form-grid,
.form-group{
    min-width:0;
}

.quote-box{
    width:100%;
    max-width:620px;
    overflow:hidden;
}

.radio-grid{
    width:100% !important;
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:16px !important;
}

.radio-grid label{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    gap:12px !important;

    width:100% !important;
    min-width:0 !important;
    min-height:58px !important;

    padding:14px 18px !important;
    overflow:visible !important;
}

.radio-grid label input{
    display:inline-block !important;
    flex:0 0 18px !important;
    width:18px !important;
    height:18px !important;
    margin:0 !important;
}

.radio-grid label span{
    display:block !important;
    flex:1 !important;
    min-width:0 !important;

    color:#374151 !important;
    font-size:15px !important;
    font-weight:600 !important;
    line-height:1.3 !important;

    text-align:left !important;
    white-space:normal !important;
    overflow:visible !important;
}

@media(max-width:900px){
    .hero-grid{
        grid-template-columns:1fr !important;
    }

    .hero-right{
        position:relative !important;
        top:auto !important;
        width:100% !important;
    }
}

@media(max-width:768px){
    .form-grid{
        grid-template-columns:1fr;
    }

    .radio-grid{
        grid-template-columns:1fr !important;
    }
}
.radio-grid input[type="radio"]{
    width:18px !important;
    max-width:18px !important;
    height:18px !important;
    padding:0 !important;
    margin:0 !important;
    flex:0 0 18px !important;
}

.radio-grid label{
    height:58px !important;
    min-height:58px !important;
}

.radio-grid label span{
    display:inline-block !important;
    width:auto !important;
    max-width:none !important;
    flex:1 1 auto !important;
}
*,
*::before,
*::after{
    box-sizing:border-box;
}

html,
body{
    overflow-x:hidden;
}

.hero-grid,
.hero-left,
.hero-right,
.quote-box,
.form-grid,
.form-group{
    min-width:0;
}

.quote-box{
    width:100%;
    max-width:620px;
}

.form-group input,
.form-group select,
.form-group textarea{
    max-width:100%;
}

/* PERSONALIZAÇÃO */
.radio-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:16px;
    width:100%;
}

.radio-grid label{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:12px;

    width:100%;
    min-width:0;
    height:58px;
    padding:0 18px;

    border:1px solid #E7E7E7;
    border-radius:16px;
    background:#fff;

    overflow:hidden;
}

.radio-grid input[type="radio"]{
    appearance:auto;
    display:block;

    width:18px !important;
    min-width:18px !important;
    max-width:18px !important;
    height:18px !important;

    padding:0 !important;
    margin:0 !important;

    flex:0 0 18px;
}

.radio-grid label span{
    display:block;
    flex:1;
    min-width:0;

    color:#374151;
    font-size:15px;
    font-weight:600;
    line-height:1.3;
    text-align:left;

    white-space:normal;
    overflow-wrap:break-word;
}

/* Responsivo */
@media(max-width:1200px){
    .hero-grid{
        grid-template-columns:1fr;
    }

    .hero-right{
        position:relative;
        top:auto;
    }

    .quote-box{
        max-width:100%;
    }
}

@media(max-width:768px){
    .form-grid{
        grid-template-columns:1fr;
    }

    .product-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .radio-grid{
        grid-template-columns:1fr;
    }
}
.checkbox-group{
    gap:14px;
}

.check-line{
    display:flex !important;
    align-items:flex-start !important;
    gap:12px !important;

    width:100%;
    margin:0 !important;

    color:#667085 !important;
    font-size:15px !important;
    font-weight:500 !important;
    line-height:1.6 !important;
}

.check-line input[type="checkbox"]{
    width:18px !important;
    min-width:18px !important;
    height:18px !important;

    margin-top:3px !important;
    padding:0 !important;

    accent-color:var(--primary);
}

.check-line span{
    flex:1;
}
/* ==========================================================
   CONSENTIMENTO
========================================================== */

.consent-box{

    display:flex;
    flex-direction:column;
    gap:16px;

    margin-top:8px;

}

.consent-item{

    display:flex !important;
    align-items:flex-start;
    gap:14px;

    padding:18px 22px;

    border:1px solid #ECECEC;
    border-radius:16px;

    background:#FAFAFA;

    transition:.25s;

    cursor:pointer;

}

.consent-item:hover{

    border-color:var(--primary);
    background:#FFF8F8;

}

.consent-item input{

    width:20px !important;
    min-width:20px !important;
    height:20px !important;

    margin-top:2px !important;

    accent-color:var(--primary);

}

.consent-item span{

    flex:1;

    font-size:15px;
    line-height:1.7;
    color:#667085;

}

.consent-item a{

    color:var(--primary);
    font-weight:600;
    text-decoration:none;

}

.consent-item a:hover{

    text-decoration:underline;

}
.hero-extra{
    margin-top:40px;
    display:grid;
    grid-template-columns:1fr;
    gap:22px;
}

.extra-card{
    background:#fff;
    border:1px solid #ECECEC;
    border-radius:24px;
    padding:30px;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
}

.extra-card h3{
    font-size:24px;
    margin-bottom:18px;
    color:#111827;
}

.extra-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.extra-card li{
    position:relative;
    padding-left:28px;
    margin-bottom:14px;
    color:#667085;
    line-height:1.7;
}

.extra-card li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:var(--primary);
    font-weight:800;
}

.extra-card p{
    color:#667085;
    line-height:1.8;
}

.extra-card.highlighted{
    background:#111827;
    color:#fff;
}

.extra-card.highlighted h3{
    color:#fff;
}

.extra-card.highlighted p{
    color:#D1D5DB;
}
.quote-box-header{
    position:relative;
    text-align:center;
    padding-top:18px;
}

.quote-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    margin:0 auto 18px;

    width:max-content;
    max-width:100%;

    padding:9px 16px;

    border-radius:999px;
    background:linear-gradient(135deg,#D62828,#EF4444);

    color:#fff;

    font-size:11px;
    font-weight:800;
    line-height:1;

    letter-spacing:.9px;
    text-transform:uppercase;

    box-shadow:
        0 12px 28px rgba(214,40,40,.28),
        0 0 18px rgba(214,40,40,.18);
}

.quote-badge svg{
    width:14px;
    height:14px;
    flex:0 0 14px;
    fill:currentColor;
}

.quote-badge span{
    display:block;
    white-space:nowrap;
}
/* ==========================================================
   SELECTS PREMIUM
========================================================== */

.form-group select{
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    height:58px;
    width:100%;

    padding:0 52px 0 18px;

    border:1px solid #DCE3EA;
    border-radius:16px;

    background-color:#fff;

    background-image:
        linear-gradient(135deg,#D62828,#EF4444),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

    background-repeat:no-repeat,no-repeat;
    background-size:32px 32px,16px 16px;
    background-position:right 14px center,right 22px center;

    color:#111827;

    font-size:15px;
    font-weight:500;

    cursor:pointer;

    box-shadow:0 8px 20px rgba(17,24,39,.04);

    transition:.25s ease;
}

.form-group select:hover{
    border-color:rgba(214,40,40,.45);
    box-shadow:
        0 10px 24px rgba(17,24,39,.06),
        0 0 0 3px rgba(214,40,40,.06);
}

.form-group select:focus{
    border-color:#D62828;
    box-shadow:
        0 0 0 4px rgba(214,40,40,.12),
        0 12px 28px rgba(17,24,39,.08);
}

.form-group select option{
    color:#111827;
    background:#fff;
    font-size:15px;
}
.before-after-box{
    margin-top:32px;
    padding:28px;
    border-radius:26px;
    background:#fff;
    border:1px solid #ECECEC;
    box-shadow:0 18px 45px rgba(0,0,0,.06);
}

.before-after-header{
    margin-bottom:22px;
}

.before-after-header span{
    display:inline-block;
    margin-bottom:8px;
    color:var(--primary);
    font-size:12px;
    font-weight:800;
    letter-spacing:1.6px;
    text-transform:uppercase;
}

.before-after-header h3{
    margin:0;
    color:#111827;
    font-size:24px;
    line-height:1.25;
}

.before-after-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.before-after-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    background:#F3F4F6;

    aspect-ratio:4/3;

    box-shadow:0 12px 28px rgba(0,0,0,.08);
}

.before-after-card img{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    display:block;

    object-fit:cover;
    object-position:center;

    transition:.35s;
}

.before-after-card:hover img{
    transform:scale(1.04);
}

.before-after-label{
    position:absolute;
    left:14px;
    bottom:14px;
    padding:8px 13px;
    border-radius:999px;
    color:#fff;
    font-size:12px;
    font-weight:800;
    box-shadow:0 10px 25px rgba(0,0,0,.20);
}

.before-after-label.before{
    background:#111827;
}

.before-after-label.after{
    background:var(--primary);
}

@media(max-width:768px){
    .before-after-grid{
        grid-template-columns:1fr;
    }
}
.why-uniforma{

    margin-top:20px;

    display:flex;
    gap:18px;

    padding:22px 24px;

    background:#fff;

    border:1px solid #ECECEC;

    border-radius:24px;

    box-shadow:0 18px 45px rgba(0,0,0,.06);

}

.why-icon{

    width:54px;
    height:54px;

    flex-shrink:0;

    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(135deg,#D62828,#F04B4B);

    color:#fff;

    font-size:22px;
    font-weight:700;

}

.why-content h3{

    margin:0 0 6px;

    font-size:22px;

    color:#111827;

}

.why-content p{

    margin:0;

    color:#667085;

    font-size:15px;

    line-height:1.6;

}

.why-stats{

    display:flex;

    gap:34px;

    margin-top:16px;

}

.why-stats div{

    display:flex;

    flex-direction:column;

}

.why-stats strong{

    font-size:28px;

    color:#D62828;

    font-weight:800;

    line-height:1;

}

.why-stats span{

    margin-top:4px;

    color:#667085;

    font-size:13px;

}