/*==================================================
AMARILLO STUDIO
==================================================*/

:root{

    --primary:#FFC700;
    --primary-dark:#F2B900;

    --white:#FFFFFF;
    --black:#111111;
    --text:#666666;

    --border:#ECECEC;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;
    background:#fff;
    color:#111;
    overflow-x:hidden;

}

img{

    max-width:100%;

}

a{

    text-decoration:none;

}

.container{

    width:92%;
    max-width:1380px;
    margin:auto;

}

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

.header{

    width:100%;
    position:fixed;

    top:0;

    left:0;

    z-index:999;

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

    backdrop-filter:blur(20px);

    border-bottom:1px solid rgba(0,0,0,.05);
    
    

}

.header .container{

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/*================*/

.logo{

    color:#111;

}

.logo-title{

    font-size:40px;

    font-weight:900;

    line-height:1;

    letter-spacing:-2px;

}

.logo-subtitle{

    color:var(--primary);

    font-size:22px;

    font-weight:700;

}

.logo-subtitle span{

    color:#999;

    font-size:15px;

}

/*================*/

.menu ul{

    list-style:none;

    display:flex;

    gap:40px;

}

.menu a{

    position:relative;

    color:#111;

    font-weight:600;

    transition:.35s;

}

.menu a::after{

    content:"";

    position:absolute;

    width:0;

    height:3px;

    left:50%;

    bottom:-8px;

    background:#FFC700;

    transform:translateX(-50%);

    transition:.35s;

    border-radius:10px;

}

.menu a:hover::after{

    width:100%;

}

/*================*/

.btn-header{

    display:flex;

    align-items:center;

    gap:10px;

    padding:15px 28px;

    background:var(--primary);

    color:#111;

    border-radius:50px;

    font-weight:700;

    transition:.30s;

}

.btn-header:hover{

    transform:translateY(-3px);

}

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

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:120px;

    overflow:hidden;

    background:

    radial-gradient(circle at 80% 20%,

    rgba(255,199,0,.12),

    transparent 35%),

    radial-gradient(circle at 10% 80%,

    rgba(0,0,0,.03),

    transparent 30%),

    #fff;

}

.hero-grid{

    display:grid;

    grid-template-columns:52% 48%;

    gap:100px;

    align-items:center;

}

/*================*/

.hero-badge{

    display:inline-block;

    padding:12px 20px;

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

    border-radius:50px;

    font-size:13px;

    font-weight:700;

    margin-bottom:30px;

    color:#666;

}

/*================*/

.hero h1{

    font-size:78px;

    font-weight:900;

    line-height:.98;

    letter-spacing:-4px;

    margin-bottom:35px;

}

.hero h1 span{

    color:var(--primary);

}

.hero p{

    width:90%;

    font-size:24px;

    line-height:1.7;

    color:#666;

    margin-bottom:45px;

}

/*================*/

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:40px;

}

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:62px;

    padding:0 38px;

    background:#FFC700;

    color:#111;

    border-radius:60px;

    font-weight:700;

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-4px);

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

}

.btn-secondary{

    padding:18px 36px;

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

    border-radius:60px;

    color:#111;

    font-weight:700;

}

/*================*/

.hero-tech{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

}

.hero-tech span{

    padding:12px 20px;

    border-radius:50px;

    background:#F5F5F5;

    transition:.35s;

    cursor:pointer;

}

.hero-tech span:hover{

    background:#FFC700;

    color:#111;

    transform:translateY(-5px);

}

/*==================================================
EDITOR
==================================================*/

.editor{

    width:90%;

    margin-left:auto;

    border-radius:28px;

    overflow:hidden;

    background:#1e1e1e;

    box-shadow:

        0 40px 120px rgba(0,0,0,.18),

        0 15px 40px rgba(255,199,0,.10);

    transition:.45s;

}

.editor-header{

    height:55px;

    background:#2D2D2D;

    display:flex;

    align-items:center;

    padding:0 20px;

}

.editor-dots{

    display:flex;

    gap:8px;

}

.editor-dots span{

    width:12px;

    height:12px;

    border-radius:50%;

}

.red{

    background:#FF5F57;

}

.yellow{

    background:#FEBC2E;

}

.green{

    background:#28C840;

}

.editor-title{

    margin-left:20px;

    color:#AAA;

    font-size:14px;

}

.editor-body{

    position:relative;

    background:#1e1e1e;

    padding:35px;

    min-height:520px;

    overflow:hidden;

}

.editor-body pre{

    color:#DDD;

    font-size:15px;

    line-height:2;

    overflow:auto;

}

.terminal{

    background:#111;

    color:#7CFF93;

    padding:20px 35px;

    font-family:monospace;

    line-height:2;

}

.editor:hover{

    animation-play-state:paused;

    transform:translateY(-15px) rotate(0deg) scale(1.02);

    box-shadow:

        0 70px 120px rgba(0,0,0,.20),

        0 0 80px rgba(255,199,0,.18);

}

.hero-right{

    position:relative;

}

.hero-right::before{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    background:radial-gradient(circle,
        rgba(255,199,0,.22) 0%,
        rgba(255,199,0,.06) 40%,
        transparent 75%);

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    z-index:-1;

    filter:blur(35px);

}

#code{

    font-family:Consolas, monospace;

    font-size:18px;

    line-height:2;

    white-space:pre-wrap;

    color:#d4d4d4;

}

.keyword{

    color:#569CD6;

}

.variable{

    color:#9CDCFE;

}

.function{

    color:#DCDCAA;

}

.string{

    color:#CE9178;

}

.comment{

    color:#6A9955;

}

.cursor{

    display:inline-block;

    width:2px;

    height:22px;

    background:#ffffff;

    animation:blink .8s infinite;

    vertical-align:middle;

}

@keyframes blink{

    50%{

        opacity:0;

    }

}

/*========================
EDITOR NUEVO
========================*/

.editor{

    border-radius:24px;

    overflow:hidden;

    background:#1e1e1e;

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

}

.editor-top{

    height:52px;

    background:#2a2a2a;

    display:flex;

    align-items:center;

    padding:0 18px;

}

.traffic{

    display:flex;

    gap:8px;

}

.traffic span{

    width:12px;

    height:12px;

    border-radius:50%;

}

.tabs{

    display:flex;

    margin-left:25px;

    gap:8px;

}

.tab{

    padding:8px 18px;

    background:#343434;

    color:#aaa;

    border-radius:8px 8px 0 0;

    font-size:13px;

}

.tab.active{

    background:#1e1e1e;

    color:#fff;

}

.editor-main{

    display:flex;

}

.sidebar{

    width:60px;

    background:#252526;

    display:flex;

    flex-direction:column;

    align-items:center;

    padding-top:20px;

    gap:20px;

}

.icon{

    font-size:22px;

    opacity:.4;

}

.icon.active{

    opacity:1;

}

.code-area{

    flex:1;

    padding:35px;

    min-height:480px;

}

#code{

    font-family:Consolas;

    line-height:2;

    color:#d4d4d4;

    font-size:17px;

}

@keyframes floating{

    0%{

        transform:translateY(0px) rotate(-2deg);

    }

    50%{

        transform:translateY(-10px) rotate(-1deg);

    }

    100%{

        transform:translateY(0px) rotate(-2deg);

    }

}

.editor{

    animation:floating 7s ease-in-out infinite;

}
.hero{

    position:relative;

    overflow:hidden;

}

.hero::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    right:-180px;

    top:-120px;

    background:

    radial-gradient(circle,

        rgba(255,199,0,.14),

        transparent 70%);

    filter:blur(40px);

    z-index:-1;

}

.btn-primary{

    position:relative;

    overflow:hidden;

}

.btn-primary::before{

    content:"";

    position:absolute;

    width:40px;

    height:180%;

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

    top:-40%;

    left:-80px;

    transform:rotate(25deg);

    transition:.8s;

}

.btn-primary:hover::before{

    left:220%;

}

.tab{

    cursor:pointer;

    transition:.35s;

}

.tab.active{

    background:#1E1E1E;

    color:#fff;

}

.tab:not(.active){

    opacity:.5;

}

.hero::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    right:-220px;

    top:-150px;

    border-radius:50%;

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

    filter:blur(80px);

    animation:floatGlow 8s ease-in-out infinite;

}

.hero::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    left:-120px;

    bottom:-120px;

    border-radius:50%;

    background:rgba(255,199,0,.05);

    filter:blur(60px);

    animation:floatGlow2 12s ease-in-out infinite;

}

@keyframes floatGlow{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-30px);

    }

    100%{

        transform:translateY(0px);

    }

}

@keyframes floatGlow2{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(25px);

    }

    100%{

        transform:translateY(0px);

    }

}

.editor{

    position:relative;

}

.editor::before{

    content:"";

    position:absolute;

    top:-100%;

    left:-120px;

    width:70px;

    height:300%;

    background:

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

    transform:rotate(25deg);

    animation:shine 8s linear infinite;

}

@keyframes shine{

    from{

        left:-200px;

    }

    to{

        left:120%;

    }

}

.hero-left{

    position:relative;

    z-index:5;

    padding-right:40px;

}

.hero-right{

    display:flex;

    justify-content:center;

    align-items:center;

}

/*==================================================
SERVICIOS
==================================================*/

.services{

    padding:140px 0;

    background:#fafafa;

}

.section-title{

    max-width:760px;

    margin:0 auto 80px;

    text-align:center;

}

.section-title span{

    display:inline-block;

    color:#FFC700;

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:20px;

}

.section-title h2{

    font-size:58px;

    line-height:1.1;

    font-weight:900;

    color:#111;

    letter-spacing:-2px;

    margin-bottom:25px;

}

.section-title p{

    font-size:20px;

    line-height:1.8;

    color:#666;

}

.services-list{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.service-item{

    display:grid;

    grid-template-columns:120px 1fr 60px;

    align-items:center;

    gap:40px;

    padding:45px;

    background:#fff;

    border-radius:24px;

    border:1px solid #ececec;

    transition:.35s;

    cursor:pointer;

}

.service-item:hover{

    transform:translateY(-8px);

    border-color:#FFC700;

    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.number{

    font-size:64px;

    font-weight:900;

    color:#e5e5e5;

    transition:.35s;

}

.service-item:hover .number{

    color:#FFC700;

}

.service-info h3{

    font-size:30px;

    margin-bottom:12px;

    color:#111;

}

.service-info p{

    color:#666;

    font-size:18px;

    line-height:1.8;

}

.arrow{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#f5f5f5;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    transition:.35s;

}

.service-item:hover .arrow{

    background:#FFC700;

    transform:translateX(8px);

}

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

@media(max-width:992px){

.section-title h2{

    font-size:42px;

}

.service-item{

    grid-template-columns:1fr;

    text-align:center;

}

.number{

    font-size:48px;

}

.arrow{

    margin:auto;

}

}

@media(max-width:768px){

.services{

    padding:90px 0;

}

.section-title h2{

    font-size:34px;

}

.section-title p{

    font-size:17px;

}

.service-info h3{

    font-size:24px;

}

.service-info p{

    font-size:16px;

}

}

/*==================================================
STATS
==================================================*/

.stats{

    padding:90px 0;

    background:#fff;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}

.stat{

    text-align:center;

    padding:45px;

    border:1px solid #ECECEC;

    border-radius:22px;

    transition:.35s;

    background:#fff;

}

.stat:hover{

    transform:translateY(-10px);

    border-color:#FFC700;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.stat h2{

    font-size:64px;

    font-weight:900;

    color:#FFC700;

    margin-bottom:15px;

}

.stat span{

    color:#666;

    font-size:18px;

    line-height:1.6;

}

/*==================================================
PRODUCTOS
==================================================*/

.products{

    padding:140px 0;

    background:#fff;

}

.products-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    margin-top:70px;

}

.product-card{

    overflow:hidden;

    background:#fff;

    border-radius:26px;

    border:1px solid #ECECEC;

    transition:.35s;

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 80px rgba(0,0,0,.10);

}

.product-image{

    height:320px;

    overflow:hidden;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-info{

    padding:35px;

}

.product-info span{

    color:#FFC700;

    font-weight:700;

    letter-spacing:2px;

    font-size:13px;

}

.product-info h3{

    font-size:34px;

    margin:18px 0;

    color:#111;

}

.product-info p{

    color:#666;

    line-height:1.8;

    font-size:17px;

    margin-bottom:30px;

}

.product-info a{

    color:#111;

    font-weight:700;

    transition:.3s;

}

.product-info a:hover{

    color:#FFC700;

}

/*==================================================
SOLUCIONES
==================================================*/

.solutions{

    padding:140px 0 60px;

    background:#fff;

}

.solution{

    padding:110px 0;

}

.solution.gray{

    background:#fafafa;

}

.solution-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:90px;

}

.solution-grid.reverse{

    direction:rtl;

}

.solution-grid.reverse .solution-text{

    direction:ltr;

}

.solution-grid.reverse .solution-image{

    direction:ltr;

}

.solution-text span{

    display:inline-block;

    color:#FFC700;

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:20px;

}

.solution-text h2{

    font-size:58px;

    line-height:1.08;

    font-weight:900;

    color:#111;

    margin-bottom:30px;

}

.solution-text p{

    font-size:20px;

    color:#666;

    line-height:1.8;

    margin-bottom:35px;

}

.solution-text ul{

    list-style:none;

    padding:0;

    margin:0;

}

.solution-text li{

    position:relative;

    padding-left:32px;

    margin-bottom:16px;

    font-size:18px;

    color:#444;

}

.solution-text li:before{

    content:"✓";

    position:absolute;

    left:0;

    top:0;

    color:#FFC700;

    font-weight:bold;

}

.solution-image{

    position:relative;

    transition:.35s;

}

.solution-image img{

    width:100%;

    display:block;

    border-radius:24px;

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

    transition:.45s;

}

.solution-image:hover{

    transform:translateY(-10px);

}

.solution-image:hover img{

    transform:scale(1.02);

}

.solution-image:before{

    content:"";

    position:absolute;

    width:92%;

    height:92%;

    left:4%;

    top:4%;

    border-radius:26px;

    background:rgba(255,199,0,.10);

    filter:blur(35px);

    z-index:-1;

}

.solution-image::after{

    content:"";

    position:absolute;

    width:70%;

    height:25px;

    background:rgba(0,0,0,.20);

    left:15%;

    bottom:-30px;

    border-radius:50%;

    filter:blur(18px);

    z-index:-1;

}

@media(max-width:1200px){

.solution-grid{

    gap:60px;

}

.solution-text h2{

    font-size:46px;

}

}

@media(max-width:992px){

.solution{

    padding:80px 0;

}

.solution-grid,

.solution-grid.reverse{

    display:flex;

    flex-direction:column;

    direction:ltr;

}

.solution-grid.reverse .solution-image{

    order:1;

}

.solution-grid.reverse .solution-text{

    order:2;

}

.solution-text{

    text-align:center;

}

.solution-text h2{

    font-size:38px;

}

.solution-text ul{

    display:inline-block;

    text-align:left;

}

.solution-image{

    width:100%;

}

}

@media(max-width:768px){

.solution-text h2{

    font-size:32px;

}

.solution-text p{

    font-size:17px;

}

.solution-text li{

    font-size:16px;

}

}

.browser{

    height:42px;

    background:#1b1b1b;

    border-radius:18px 18px 0 0;

    display:flex;

    align-items:center;

    padding:0 18px;

}

.dot{

    width:12px;

    height:12px;

    border-radius:50%;

    margin-right:8px;

}

.red{

    background:#ff5f57;

}

.yellow{

    background:#febc2e;

}

.green{

    background:#28c840;

}

.browser small{

    color:#bbb;

    margin-left:15px;

    font-size:13px;

    letter-spacing:1px;

}

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

.reveal-left,
.reveal-right{

    opacity:0;

    transition:1s ease;

}

.reveal-left{

    transform:translateX(-80px);

}

.reveal-right{

    transform:translateX(80px);

}

.reveal-left.active,
.reveal-right.active{

    opacity:1;

    transform:translateX(0);

}

.solution-image{

    transition:1.2s;

}

.solution-text{

    transition:.8s;

}

.reveal-left .solution-image,
.reveal-right .solution-image{

    opacity:0;

    transform:translateY(50px);

}

.reveal-left.active .solution-image,
.reveal-right.active .solution-image{

    opacity:1;

    transform:translateY(0);

    transition-delay:.25s;

}

/*==================================================
WHY
==================================================*/

.why{

    padding:160px 0;

    background:#fff;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    margin-top:70px;

}

.why-item{

    display:flex;

    gap:30px;

    padding:35px;

    border:1px solid #ececec;

    border-radius:24px;

    transition:.35s;

    background:#fff;

}

.why-item:hover{

    transform:translateY(-8px);

    border-color:#FFC700;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.why-number{

    font-size:58px;

    font-weight:900;

    color:#FFC700;

    min-width:90px;

}

.why-item h3{

    font-size:28px;

    margin-bottom:15px;

    color:#111;

}

.why-item p{

    color:#666;

    line-height:1.8;

    font-size:17px;

}

/*==================================================
PROCESO
==================================================*/

.process{

    padding:170px 0;

    background:#fafafa;

}

.process-line{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:30px;

    margin-top:80px;

    position:relative;

}

.process-line::before{

    content:"";

    position:absolute;

    left:10%;

    right:10%;

    top:38px;

    height:2px;

    background:#ddd;

    z-index:0;

}

.step{

    position:relative;

    text-align:center;

    z-index:2;

}

.circle{

    width:75px;

    height:75px;

    margin:auto;

    border-radius:50%;

    background:#FFC700;

    color:#111;

    font-size:28px;

    font-weight:800;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

    box-shadow:0 15px 35px rgba(255,199,0,.35);

}

.step h3{

    font-size:24px;

    margin-bottom:15px;

}

.step p{

    color:#666;

    line-height:1.7;

}

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

.cta{

    padding:180px 0;

    background:#111;

    text-align:center;

    color:#fff;

}

.cta span{

    display:inline-block;

    color:#FFC700;

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:25px;

}

.cta h2{

    font-size:72px;

    line-height:1.1;

    font-weight:900;

    max-width:900px;

    margin:auto;

}

.cta p{

    max-width:700px;

    margin:35px auto 50px;

    color:#cfcfcf;

    font-size:22px;

    line-height:1.8;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}

.cta .btn-primary{

    padding:18px 38px;

    background:#FFC700;

    color:#111;

    border-radius:60px;

    font-weight:700;

    transition:.35s;

}

.cta .btn-primary:hover{

    transform:translateY(-5px);

}

.cta .btn-secondary{

    padding:18px 38px;

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

    border-radius:60px;

    color:#fff;

    transition:.35s;

}

.cta .btn-secondary:hover{

    background:#fff;

    color:#111;

}

/*==================================================
CONTACTO
==================================================*/

.contact{

    padding:170px 0;

    background:#fff;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.contact-info span{

    color:#FFC700;

    font-weight:700;

    letter-spacing:3px;

    font-size:14px;

}

.contact-info h2{

    font-size:58px;

    margin:25px 0;

    line-height:1.1;

}

.contact-info p{

    color:#666;

    font-size:18px;

    line-height:1.8;

}

.contact-item{

    margin-top:35px;

}

.contact-item strong{

    display:block;

    margin-bottom:8px;

    color:#111;

}

.contact-form{

    background:#fff;

    padding:45px;

    border-radius:26px;

    box-shadow:0 30px 70px rgba(0,0,0,.08);

}

.contact-form input,

.contact-form textarea{

    width:100%;

    margin-bottom:20px;

    padding:18px;

    border-radius:14px;

    border:1px solid #ddd;

    font-family:inherit;

    font-size:16px;

}

.contact-form textarea{

    resize:none;

    height:180px;

}

.contact-form button{

    width:100%;

    padding:18px;

    border:none;

    border-radius:50px;

    background:#FFC700;

    color:#111;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

}

.contact-form button:hover{

    transform:translateY(-4px);

}

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

.footer{

    background:#111;

    color:#fff;

    padding:90px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

}

.footer h2{

    font-size:42px;

    margin-bottom:20px;

}

.footer p{

    color:#bdbdbd;

    line-height:1.8;

}

.footer h4{

    margin-bottom:25px;

}

.footer a{

    display:block;

    color:#bdbdbd;

    margin-bottom:15px;

    transition:.3s;

}

.footer a:hover{

    color:#FFC700;

}

.copyright{

    margin-top:70px;

    text-align:center;

    color:#888;

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:30px;

}

html{

    scroll-behavior:smooth;

}

section{

    scroll-margin-top:110px;

}