/*==================================================
  SAMY WEB
  cotizacion.css
  VERSION 2.0
==================================================*/



/*==================================================
  VARIABLES
==================================================*/

:root{

    --primary:#E30613;

    --primary-dark:#B6000F;

    --secondary:#202020;

    --text:#444;

    --light:#666;

    --border:#E8E8E8;

    --background:#F7F8FA;

    --white:#FFFFFF;

    --radius:22px;

    --shadow:

        0 12px 45px rgba(0,0,0,.07);

}



/*==================================================
  PAGINA
==================================================*/

.quote-page{

    padding-top:150px;

    padding-bottom:120px;

    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #f8f9fb 100%
    );

    overflow:hidden;

}



/*==================================================
  HERO
==================================================*/

.quote-hero{

    text-align:center;

    margin-bottom:75px;

}



.quote-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:11px 24px;

    background:#FFF3F3;

    color:var(--primary);

    border-radius:999px;

    font-size:13px;

    font-weight:700;

    letter-spacing:.8px;

    margin-bottom:28px;

}



.quote-header h1{

    font-size:62px;

    line-height:1.05;

    font-weight:800;

    color:#171717;

    letter-spacing:-2px;

}



.quote-header h1 span{

    color:var(--primary);

}



.quote-header p{

    max-width:760px;

    margin:28px auto 0;

    font-size:20px;

    color:#666;

    line-height:1.9;

}



/*==================================================
  CONTENEDOR
==================================================*/

.quote-content{

    position:relative;

}



.quote-grid{

    display:grid;

    grid-template-columns:390px 1fr;

    gap:42px;

    align-items:start;

}



/*==================================================
  TARJETAS
==================================================*/

.quote-card,

.form-card{

    background:#fff;

    border-radius:28px;

    padding:45px;

    border:1px solid var(--border);

    box-shadow:var(--shadow);

}



/*==================================================
  TITULOS
==================================================*/

.card-tag{

    display:inline-block;

    margin-bottom:18px;

    color:var(--primary);

    font-weight:700;

    font-size:13px;

    letter-spacing:1px;

}



.quote-card h2{

    font-size:34px;

    line-height:1.25;

    margin-bottom:20px;

    letter-spacing:-1px;

}



.quote-card h2 span{

    color:var(--primary);

}



.quote-card>p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}



/*==================================================
  FORM HEADER
==================================================*/

.form-header{

    margin-bottom:40px;

}



.form-header h2{

    font-size:36px;

    margin-bottom:10px;

}



.form-header p{

    color:#666;

    line-height:1.8;

}



/*==================================================
  RESPONSIVE BASE
==================================================*/

@media(max-width:1100px){

.quote-grid{

    grid-template-columns:1fr;

}

}



@media(max-width:768px){

.quote-page{

    padding-top:130px;

}



.quote-header h1{

    font-size:42px;

}



.quote-header p{

    font-size:17px;

}



.quote-card,

.form-card{

    padding:30px;

}

}
/*==================================================
 BENEFICIOS
==================================================*/

.benefits-list{

    display:flex;

    flex-direction:column;

    gap:24px;

    margin-top:35px;

}



.benefit-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:18px;

    border-radius:18px;

    transition:.30s;

}



.benefit-item:hover{

    background:#fafafa;

    transform:translateX(6px);

}



.benefit-icon{

    width:56px;

    height:56px;

    border-radius:16px;

    background:#FFF3F3;

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    flex-shrink:0;

}



.benefit-item h3{

    font-size:19px;

    margin-bottom:6px;

    color:#222;

}



.benefit-item p{

    color:#666;

    line-height:1.7;

    font-size:15px;

}



.quote-note{

    margin-top:35px;

    padding:22px;

    border-radius:18px;

    background:#fafafa;

    border:1px solid #eee;

}



.quote-note strong{

    display:block;

    margin-bottom:10px;

    color:#222;

}



.quote-note p{

    color:#666;

    line-height:1.7;

    font-size:15px;

}





/*==================================================
 FORMULARIO
==================================================*/

.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;

    margin-top:10px;

}



.form-group label{

    font-size:14px;

    font-weight:600;

    color:#444;

    margin-bottom:10px;

}





/*==================================================
 INPUTS
==================================================*/

.form-group input,

.form-group select,

.form-group textarea{

    width:100%;

    padding:16px 18px;

    border-radius:14px;

    border:1px solid #DDD;

    background:#fff;

    font-family:'Poppins',sans-serif;

    font-size:15px;

    transition:.30s;

}



.form-group textarea{

    resize:vertical;

    min-height:170px;

}





.form-group input:hover,

.form-group select:hover,

.form-group textarea:hover{

    border-color:#CFCFCF;

}





.form-group input:focus,

.form-group select:focus,

.form-group textarea:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(227,6,19,.10);

}





.form-group input::placeholder,

.form-group textarea::placeholder{

    color:#999;

}





/*==================================================
 FOOTER FORM
==================================================*/

.form-footer{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    align-items:center;

    margin-top:35px;

}



.form-footer .btn-primary{

    flex:1;

    min-width:240px;

    height:58px;

    font-size:16px;

    font-weight:700;

    border:none;

    cursor:pointer;

}



.form-footer .btn-secondary{

    flex:1;

    min-width:240px;

    height:58px;

}





/*==================================================
 EFECTO TARJETA
==================================================*/

.form-card{

    transition:.35s;

}



.form-card:hover{

    transform:translateY(-4px);

    box-shadow:

        0 25px 60px rgba(0,0,0,.10);

}





.quote-card{

    transition:.35s;

}



.quote-card:hover{

    transform:translateY(-4px);

}





/*==================================================
 RESPONSIVE
==================================================*/

@media(max-width:900px){

.form-grid{

    grid-template-columns:1fr;

}



.form-footer{

    flex-direction:column;

}



.form-footer .btn-primary,

.form-footer .btn-secondary{

    width:100%;

}

}
/*==================================================
  CTA FINAL
==================================================*/

.quote-cta{

    padding:90px 0 120px;

    background:#fff;

}

.quote-cta-card{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:50px;

    background:linear-gradient(
        135deg,
        #E30613 0%,
        #C70010 100%
    );

    border-radius:30px;

    padding:60px;

    color:#fff;

    overflow:hidden;

    position:relative;

}

.quote-cta-card::before{

    content:"";

    position:absolute;

    width:340px;

    height:340px;

    right:-120px;

    top:-120px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

}

.cta-content{

    position:relative;

    z-index:2;

    max-width:620px;

}

.cta-tag{

    display:inline-block;

    padding:10px 18px;

    background:rgba(255,255,255,.12);

    border-radius:999px;

    font-size:13px;

    font-weight:700;

    letter-spacing:.8px;

    margin-bottom:18px;

}

.cta-content h2{

    font-size:46px;

    line-height:1.15;

    margin-bottom:20px;

}

.cta-content p{

    font-size:18px;

    line-height:1.8;

    opacity:.95;

}

.cta-buttons{

    display:flex;

    flex-direction:column;

    gap:18px;

    min-width:280px;

    position:relative;

    z-index:2;

}



/*==================================================
  BOTONES PREMIUM
==================================================*/

.quote-cta .btn-primary,

.quote-cta .btn-secondary{

    width:100%;

    height:58px;

    border-radius:14px;

    font-weight:700;

    transition:.30s;

}

.quote-cta .btn-primary{

    background:#fff;

    color:#E30613;

}

.quote-cta .btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(0,0,0,.18);

}

.quote-cta .btn-secondary{

    border:1px solid rgba(255,255,255,.25);

    color:#fff;

    background:transparent;

}

.quote-cta .btn-secondary:hover{

    background:rgba(255,255,255,.08);

}



/*==================================================
  ANIMACIONES
==================================================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.quote-header{

    animation:fadeUp .7s ease both;

}

.quote-card{

    animation:fadeUp .9s ease both;

}

.form-card{

    animation:fadeUp 1.1s ease both;

}

.quote-cta-card{

    animation:fadeUp 1.3s ease both;

}



/*==================================================
  TRANSICIONES
==================================================*/

.quote-card,

.form-card,

.benefit-item{

    transition:

        transform .30s,

        box-shadow .30s,

        background .30s;

}

.quote-card:hover,

.form-card:hover{

    transform:translateY(-8px);

    box-shadow:

        0 28px 60px rgba(0,0,0,.10);

}



/*==================================================
  DETALLES VISUALES
==================================================*/

.quote-card{

    position:relative;

}

.quote-card::after{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:5px;

    height:100%;

    background:#E30613;

    border-radius:30px 0 0 30px;

}

.form-card{

    position:relative;

}

.form-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:#E30613;

    border-radius:30px 30px 0 0;

}



/*==================================================
  RESPONSIVE CTA
==================================================*/

@media(max-width:992px){

.quote-cta-card{

    flex-direction:column;

    text-align:center;

    padding:45px 30px;

}

.cta-content{

    max-width:100%;

}

.cta-content h2{

    font-size:36px;

}

.cta-buttons{

    width:100%;

}

}

@media(max-width:768px){

.quote-cta{

    padding:70px 0;

}

.cta-content h2{

    font-size:30px;

}

.cta-content p{

    font-size:16px;

}

}
/*==================================================
  SAMY WEB
  COTIZACION.CSS
  ENTREGA 4
  PULIDO FINAL
==================================================*/



/*==================================================
  SUAVIDAD GENERAL
==================================================*/

*{

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

    text-rendering:optimizeLegibility;

}



/*==================================================
  SCROLL
==================================================*/

html{

    scroll-behavior:smooth;

}



/*==================================================
  SELECCION DE TEXTO
==================================================*/

::selection{

    background:#E30613;

    color:#fff;

}



/*==================================================
  INPUTS
==================================================*/

.form-group input,

.form-group select,

.form-group textarea{

    transition:

        border-color .25s,

        box-shadow .25s,

        transform .20s;

}



.form-group input:hover,

.form-group select:hover,

.form-group textarea:hover{

    transform:translateY(-2px);

}



.form-group input:focus,

.form-group select:focus,

.form-group textarea:focus{

    transform:translateY(-2px);

}



/*==================================================
  PLACEHOLDER
==================================================*/

::placeholder{

    color:#B5B5B5;

    opacity:1;

}



/*==================================================
  BOTONES
==================================================*/

.btn-primary,

.btn-secondary{

    transition:

        transform .30s,

        box-shadow .30s,

        background .30s,

        color .30s;

}



.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:

        0 18px 40px rgba(227,6,19,.28);

}



.btn-secondary:hover{

    transform:translateY(-3px);

}



/*==================================================
  LINKS
==================================================*/

a{

    transition:.25s;

}



/*==================================================
  TARJETAS
==================================================*/

.quote-card,

.form-card,

.quote-cta-card{

    will-change:transform;

}



/*==================================================
  TITULOS
==================================================*/

.quote-header h1,

.quote-card h2,

.form-header h2,

.cta-content h2{

    text-wrap:balance;

}



/*==================================================
  PARRAFOS
==================================================*/

.quote-header p,

.quote-card p,

.form-header p,

.cta-content p{

    text-wrap:pretty;

}



/*==================================================
  ESPACIADOS
==================================================*/

.quote-header{

    padding-bottom:20px;

}



.quote-card{

    height:100%;

}



.form-card{

    height:100%;

}



/*==================================================
  BOTON ENVIAR
==================================================*/

.form-footer .btn-primary{

    letter-spacing:.3px;

    font-size:17px;

}



/*==================================================
  EFECTO SHINE
==================================================*/

.form-footer .btn-primary{

    position:relative;

    overflow:hidden;

}



.form-footer .btn-primary::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:

        linear-gradient(

            90deg,

            transparent,

            rgba(255,255,255,.35),

            transparent

        );

}



.form-footer .btn-primary:hover::before{

    left:150%;

    transition:1s;

}



/*==================================================
  ICONOS BENEFICIOS
==================================================*/

.benefit-icon{

    box-shadow:

        inset 0 0 0 1px rgba(227,6,19,.08),

        0 10px 20px rgba(227,6,19,.08);

}



/*==================================================
  BADGE
==================================================*/

.quote-badge{

    box-shadow:

        0 8px 18px rgba(227,6,19,.10);

}



/*==================================================
  CTA
==================================================*/

.quote-cta-card{

    overflow:hidden;

}



.quote-cta-card::after{

    content:"";

    position:absolute;

    inset:0;

    background:

        linear-gradient(

            135deg,

            rgba(255,255,255,.04),

            transparent 45%

        );

    pointer-events:none;

}



/*==================================================
  FOOTER
==================================================*/

.footer{

    margin-top:0;

}



/*==================================================
  RESPONSIVE
==================================================*/

@media(max-width:768px){

.quote-header{

    margin-bottom:40px;

}



.quote-header h1{

    line-height:1.15;

}



.quote-card,

.form-card{

    border-radius:22px;

}



.form-footer{

    gap:15px;

}

}

/* ===== V3 Refinements ===== */
.quote-hero{padding-top:150px;padding-bottom:35px}
.quote-grid{align-items:stretch}
.quote-card,.form-card{height:100%}
.quote-content{
background:
radial-gradient(circle at top right,rgba(227,6,19,.04),transparent 40%),
radial-gradient(circle at bottom left,rgba(0,0,0,.025),transparent 45%);
}
.form-card{box-shadow:0 35px 80px rgba(0,0,0,.08)}
.form-group input,.form-group select{height:56px}
.form-group textarea{min-height:180px}


/* ==================================================
   SAMY V4 - ULTIMO PULIDO VISUAL
   Agregar al final del archivo
================================================== */

.quote-card{
    padding:38px 38px 30px;
}

.benefits-list{
    gap:16px;
    margin-top:24px;
}

.benefit-item{
    padding:14px;
}

.benefit-item h3{
    font-size:17px;
    margin-bottom:2px;
}

.benefit-item p{
    font-size:14px;
    line-height:1.45;
}

.quote-panda{
    display:flex;
    justify-content:center;
    margin:12px 0 8px;
}

.quote-panda img{
    width:165px;
    filter:drop-shadow(0 10px 18px rgba(0,0,0,.10));
    transition:.35s;
}

.quote-panda img:hover{
    transform:translateY(-6px) scale(1.03);
}

.quote-note{
    margin-top:18px;
    padding:18px 20px;
    background:#fff8f8;
    border:1px solid rgba(227,6,19,.08);
}

.quote-note strong{
    font-size:15px;
}

.quote-note p{
    font-size:14px;
    margin-top:4px;
}

.form-card{
    box-shadow:0 30px 70px rgba(0,0,0,.08);
}

.form-group input,
.form-group select,
.form-group textarea{
    border:1px solid #e5e5e5;
    transition:border-color .25s,box-shadow .25s,transform .2s;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover{
    box-shadow:0 8px 18px rgba(0,0,0,.04);
}

.form-footer .btn-primary{
    box-shadow:0 12px 28px rgba(227,6,19,.18);
}

.form-footer .btn-primary:hover{
    transform:translateY(-3px);
}

.quote-content::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
      radial-gradient(circle at 15% 10%,rgba(227,6,19,.035),transparent 35%),
      radial-gradient(circle at 90% 85%,rgba(0,0,0,.025),transparent 40%);
}

@media(max-width:992px){
    .quote-card{
        padding:30px;
    }

    .quote-panda img{
        width:135px;
    }
}
