:root{
    --primary: #006AFF;
    --secondary: #fbdc00;
    --text: #11344C;
    --white: #ffffff;
    --border: #dbe5ee;
    --bg: #f7fafe;
}

.perreando-uses{
    background: var(--white);
}

.section-header{
    text-align: center;
    margin-bottom: 60px;
}

.section-header--flex{
    text-align: left;
}

.section-badge{
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(0,106,255,.08);
    color: var(--primary);
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-badge--secondary{
    background-color: var(--secondary);
    color: var(--text);
}

.section-header h2, .section-header h1,.section-header h3{
    color: var(--text);
    font-weight: 700;
    max-width: 700px;
    margin: 0 auto;
}

.section-header h2,.section-header h1{
    font-size: clamp(2rem,4vw,2.5rem);
    line-height: 1.2;
}

.section-header h3{
    font-size: clamp(1.5rem,3vw,2rem);
    line-height: 1.2;
    font-weight: 600;
}


.section-header p{
    color: var(--text);
    font-size: 1.2rem;
    opacity: .8;
    margin-top: 20px;
}

.section-header p.subtitle{
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header p.descripcion{
    font-size: 16px;
    color:#607589;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    line-height: 22px;
}

.section-header--pages h1,
.section-header--pages h2,
.section-header--pages h3{
    max-width: 100%;
}

.uses-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 50px;
}

.use-card{
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 40px;
    transition: .35s ease;
    display: flex;
    flex-direction: column;
}

.use-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(17,52,76,.08);
    border: 2px solid var(--primary);
}

/* .use-card.active{
    border: 2px solid var(--primary);
}
 */
.use-tag{
    width: fit-content;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.use-tag.primary{
    background: rgba(0,106,255,.08);
    color: #006AFF;
}


.use-tag.secondary{
    background: rgba(240,221,3,.25);
    color: #11344C;
}

.use-image{
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-image img{
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.use-card h3{
    color: var(--text);
    font-size: 1.75rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.use-card p{
    color: var(--text);
    opacity: .85;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.btn-primary,
.btn-outline,
.btn-secondary,
.btn-google-play,
.btn-app-store{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: .3s ease;
    padding: 0 20px;
    gap: 10px;
    text-align: center;
}

.btn-icon svg, .btn-icon img{
    width: 24px;
    height: 24px;
    border-radius: 0 !important;
}

.btn-wfull{
    width: 100%;
}

.btn-primary{
    background: var(--primary);
    color: #fff;
}



.btn-primary:hover{
    transform: translateY(-2px);
    background-color: #fbdc00;
    color: var(--text);
}

.btn-secondary{
    background: var(--secondary);
    color: var(--text);
}

.btn-secondary:hover{
    transform: translateY(-2px);
    background-color: var(--primary);
    color: var(--white);
}


.btn-outline{
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover{
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-google-play,
.btn-app-store{
    background-color: #111;
    color: #fff;
    gap: 2px;
}

.btn-google-play:hover, .btn-app-store:hover{
    transform: translateY(-2px);
    background-color: #000;
}


.btn-google-play span,
.btn-app-store span{
    font-size: 12px;
    color: #7c8c99;
    text-transform: uppercase;
    font-weight: 400;
}

.btn-row{
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
}

.btn-row__col svg{
    width: 30px;
    height: 30px;
}

.btn-row__col--text{
    display: flex;
    text-align: right;
    flex-direction: column;
}

.btn-link {
    color: var(--primary);;
    text-decoration: none;
    display: inline-block;
    padding-bottom: 4px;
    border-bottom: 2px solid #D9D9D9;
    transition: border-color 0.3s ease;
}

.btn-link:hover {
    border-bottom-color: var(--primary);;
}

@media (max-width: 991px){

    .perreando-uses{
        padding: 70px 20px;
    }

    .uses-grid{
        grid-template-columns: 1fr;
    }

    .use-card{
        padding: 25px;
    }

}

@media (max-width: 780.98px){
    .use-card{
        padding: 20px;
    }
}

/* ++++++++++++++++++++++++++++++++++++++++++++++
* Steps Section
++++++++++++++++++++++++++++++++++++++++++++++ */
.how-it-works{
    background: #fff;
}


.steps{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.step{
    position: relative;
    text-align: center;
}


.step:not(:last-child)::after{
    content: "";
    position: absolute;
    top: 60px;
    left: calc(50% + 75px);
    width: calc(100% - 90px);
    height: 4px;

    background-image: radial-gradient(
        circle,
        rgba(240, 221, 3,1) 2px,
        transparent 2px
    );

    background-size: 18px 4px;
    background-repeat: repeat-x;
}


.step__icon{
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;

    background: rgba(0,106,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 2;

    transition: all .3s ease;
}

.step__icon::after {
    content:"";
    position:absolute;
    inset:-8px;
    border-radius:50%;
    background-color: transparent;
    border:1px dashed rgba(0,106,255,.25);
}

.step:hover .step__icon{
    transform: translateY(-8px);
    
}

.step__icon svg{
    width: 50px;
    height: 50px;
    color: var(--primary);
}

.step__icon-image{
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    border-radius: 0 !important;
}


.step h3{
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step p{
    color: var(--text);
    opacity: .8;
    font-size: 15px;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

.step p a{
    color: var(--text);
    font-weight: 600;
}

.step p a:hover{
    text-decoration: underline;
}


@media (max-width: 991px){

    .how-it-works{
        padding: 70px 20px;
    }

    .section-header{
        margin-bottom: 50px;
    }

    .steps{
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .step:not(:last-child)::after{
        display: none;
    }

    .step__icon{
        width: 100px;
        height: 100px;
    }

    .step__icon svg{
        width: 42px;
        height: 42px;
    }

    .step h3{
        font-size: 1.5rem;
    }
}




/* ++++++++++++++++++++++++++++++++++++++++++++++
* APP Section
++++++++++++++++++++++++++++++++++++++++++++++ */


.app-showcase{
    background: var(--color-fondo-rosa);
    overflow: hidden;
}

.app-showcase__wrapper{
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 100px;
    align-items: center;
}

.app-showcase__image{
    position: relative;
    text-align: center;
}

.app-showcase__glow{
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(0,106,255,.08);
    border-radius: 50%;
    filter: blur(60px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.app-showcase__image img{
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
}


.app-showcase__content{
    max-width: 700px;
}



.app-features{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.app-features li{
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon{
    width: 45px;
    height: 45px;
    min-width: 45px;

    border-radius: 50%;
    background: rgba(0,106,255,.08);

    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg{
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.app-features p{
    color: var(--text);
    font-size: 16px;
    margin: 0;
}

.app-showcase__buttons{
    display: flex;
    align-items: center;
    gap: 15px;
}


@media (max-width: 991px){

    .app-showcase{
        padding: 80px 20px;
    }

    .app-showcase__wrapper{
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .app-features li{
        text-align: left;
    }

}

/* ++++++++++++++++++++++++++++++++++++++++++++++
* Partners Section
++++++++++++++++++++++++++++++++++++++++++++++ */

.partners-section{
    background: #fff;
}

.partners-awards{
    text-align: center;
}

.partners-awards h2{
    color: #11344C;
    font-size: clamp(2rem,4vw,3rem);
    margin: 18px 0 32px;
}

.awards-list{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.award-item{
    background: transparent;
    transition: .3s ease;
}

.award-item:hover{
    transform: translateY(-4px);
}

.award-item img{
    max-width: 200px;
    width: 100%;
    border-radius: 0 !important;
    display: block;
}

/* =====================
   CLIENTES
===================== */

.partners-clients{
    text-align: center;
    margin-bottom: 80px;
}

.clients-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.client-logo{
    width: calc((100% - 120px) / 6);

    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .3s ease;
}

.client-logo:hover{
    transform: translateY(-5px);
}

.client-logo img{
    max-width: 200px;
    width: 100%;
    height: auto;

    filter: grayscale(100%);
    opacity: .8;
    transition: .3s ease;
}

.client-logo:hover img{
    filter: grayscale(0);
    opacity: 1;
}

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

@media(max-width:991px){

    .client-logo{
        width: calc((100% - 48px) / 3);
    }

}

@media(max-width:640px){

    .clients-grid{
        gap: 16px;
    }

    .client-logo{
        width: calc((100% - 16px) / 2);
    }

    .partners-clients{
        margin-bottom: 60px;
    }

    .awards-list{
        gap: 5px;
    }

}

.link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    position: relative;
    transition: color 0.2s ease;
    text-transform: uppercase;
    padding-bottom: 5px;
}
  
.link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #ddd;
    transform-origin: left;
    transition: width 0.25s ease;
}

.link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--text);
    transition: width 0.25s ease;
}

.link:hover {
    color: var(--text);
}

.link:hover::after {
    width: 100%;
}

.link i {
    transition: transform 0.2s ease;
}

.link:hover i {
    transform: translateX(3px);
}

.link--primary{
    color: var(--primary);
}

.link--primary:hover{
    color: var(--primary);
}

.link--primary::after{
    background-color: var(--primary);
}

.link--secondary{
    color: var(--secondary);
}

.link--secondary:hover{
    color: var(--secondary);
}

.link--secondary::after{
    background-color: var(--secondary);
}

/* pages */
.perreando-hero{
    border-bottom: 1px solid #ededed;
}

.hero-buttons{
    display: flex;
    gap: 25px;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-buttons.center{
    justify-content: center;
}

.hero-buttons.left{
    justify-content: flex-start;
}

.hero-buttons.right{
    justify-content: flex-end;
}


/* ++++++++++++++++++++++++++++++++++++++++++++++
* INFO BLOCK
++++++++++++++++++++++++++++++++++++++++++++++ */


.info-block__grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    align-items:center;
    gap:60px;

}

.info-block__title{
    font-size:40px;
    line-height:1.1;
    color: var(--text);
    font-weight:800;
    margin:0 0 45px;
}

.info-block__card{
    background:var(--secondary);
    border-radius:32px;
    padding:40px;
}



.info-block__card hr{

    border:0;
    border-top:1px solid rgba(0,0,0,.2);
    margin:30px 0;
}

.info-block__image{
    display:flex;
    justify-content:center;
}

.info-block__image img{
    width:100%;
    max-width: 550px;
    height:auto;
    display:block;
}


@media(max-width:900px){

    .info-block__grid{
        grid-template-columns:1fr;
    }


    .info-block__title{
        font-size:32px;
    }


}




/* ++++++++++++++++++++++++++++++++++++++++++++++
* TEAMS BLOCK
++++++++++++++++++++++++++++++++++++++++++++++ */

.teams {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.team {
    text-align: center;
}

.team__image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 20px;
}

.team__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.team:hover .team__image img {
    transform: scale(1.05);
}

.team__name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.team__role {
    display: block;
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 18px;
}

.team__social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team__social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,106,255,.08);
    color: var(--primary);
    font-size: 15px;
    transition: all .3s ease;
}

.team__social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}



@media(max-width: 1024px) {
    .teams {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 768px) {
    .teams {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media(max-width: 480px) {
    .teams {
        grid-template-columns: 1fr;
    }
}

/* ++++++++++++++++++++++++++++++++++++++++++++++
* BENEFITS GRID BLOCK
++++++++++++++++++++++++++++++++++++++++++++++ */

.features__grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}



.feature-card {
    position:relative;
    padding:35px;
    min-height:260px;
    display:flex;
    flex-direction:column;
    border-radius:32px;
    background:var(--white);
    border:1px solid var(--border);
    overflow:hidden;
    transition:.35s ease;
}


.feature-card:hover {
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(17,52,76,.12);
    border-color:transparent;
}

.feature-card__icon {
    width:72px;
    height:72px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#EAF3FF;
    color:var(--primary);
    margin-bottom: 30px;
    position:relative;
}



.feature-card__icon::after {
    content:"";
    position:absolute;
    inset:-6px;
    border-radius:50%;
    border:1px dashed rgba(0,106,255,.25);
}

.feature-card__icon img{
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    margin:0 0 12px;
    color:var(--text);
    font-size: 18px;
    font-weight: 700;
}

.feature-card p {
    margin:0;
    color:#718394;
    line-height:1.6;
    font-size:16px;
}

.feature-card--action {
    background:linear-gradient(
        135deg,
        var(--primary),
        #3d8dfc
    );
    border:none;
}

.feature-card--action::before {
    background:rgba(255,255,255,.12);
}


.feature-card--action h3 {
    color:white;
}

.feature-card--action p {
    color:rgba(255,255,255,.85);
}



.feature-card--action 
.feature-card__icon {
    background:white;
    color:var(--primary);
}



.feature-card__link {
    margin-top:25px;
    transition:.3s ease;
    color: #fff;
}

.feature-card__link::after{
    background: var(--secondary);
    opacity: 1;
}

.feature-card__link:hover {
    gap:15px;
    color: var(--secondary);
}

.feature-card--action:hover .feature-card__link{
    color: var(--secondary);
}

.feature-card--action:hover .feature-card__link::after{
    background: var(--secondary);
}


@media(max-width:1024px){

    .features__grid{
        grid-template-columns:repeat(2,1fr);
    }
}



@media(max-width:600px){

    .features__header h2{
        font-size:34px;
    }

    .features__grid{
        grid-template-columns:1fr;
    }

    .feature-card{
        min-height:auto;
    }

}

/* ++++++++++++++++++++++++++++++++++++++++++++++
 CAN GPT BLOCK
++++++++++++++++++++++++++++++++++++++++++++++ */

.cangpt__wrapper {
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
    padding:70px;
    border-radius:40px;
    background:
        linear-gradient(
            135deg,
            #effaf5,
            #f7fafe
        );

}

.cangpt__tags {
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin:30px 0;
}

.cangpt__tags span {
    padding:10px 18px;
    background:white;
    border-radius:50px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .02);
    color:var(--text);
    font-size:14px;
    font-weight:600;
}

.cangpt__button {
    display:inline-flex;
    padding:16px 30px;
    border-radius:50px;
    background:var(--primary);
    color:white;
    text-decoration:none;
    font-weight:700;
    transition:.3s ease;
}

.cangpt__button:hover {
    transform:translateY(-3px);
}

.cangpt__chat {
    background:white;
    padding:25px;
    border-radius:32px;
    box-shadow: 0 25px 70px rgba(17,52,76,.15);
}


.chat__header {
    display:flex;
    align-items:center;
    gap:15px;
    padding-bottom:20px;
    border-bottom:1px solid var(--border);
}

.chat__avatar {
    width:52px;
    height:52px;
    border-radius:50%;
    overflow: hidden;
}

.chat__avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat__header strong {
    display:block;
    color:var(--text);
    font-size:18px;
}

.chat__header small {
    color:#718394;
}

.chat__body {
    padding-top:25px;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.chat__row {
    display:flex;
    align-items:flex-start;
    gap:12px;
}

.chat__row--user {
    justify-content:flex-end;
}

.chat__avatar-user {
    width:42px;
    height:42px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
    order:2;
}

.chat__avatar-user img {
    width:100%;
    height:100%;
    object-fit:cover;
}

.chat__avatar-ai {
    width:42px;
    height:42px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
}

.chat__avatar-ai img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.chat__message {
    max-width:80%;
    padding:16px 20px;
    border-radius:22px;
    font-size:15px;
    line-height:1.6;
}



.chat__message--user {
    background: var(--primary);
    color: #fff;
    border-bottom-right-radius:6px;
}

.chat__message--ai {
    background:#f7fafe;
    color:#607589;
    border-bottom-left-radius:6px;
}

.chat__message--ai strong {
    color:var(--text);
}

.chat__message ol {
    list-style: auto;
    padding-left:20px;
}

.chat__typing {
    display:flex;
    gap:6px;
    padding-left:55px;
}

.chat__typing span {
    width:7px;
    height:7px;
    border-radius:50%;
    background:#b9c9d8;
}

.chat__input {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    padding:10px 10px 10px 20px;
    border-radius:50px;
    border:1px solid var(--border);
    background:white;
}

.chat__input span {
    color:#9aa9b7;
    font-size:15px;
}

.chat__input button {
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--primary);
    color:white;
    cursor:pointer;
}

.chat__input button svg{
    width: 22px;
    height: 22px;
    transform: rotate(-45deg);
    margin-top: 4px;
}

@media(max-width:900px){

    .cangpt__wrapper {
        grid-template-columns:1fr;
        padding:40px;
        gap:45px;
    }

    

}

@media(max-width: 780.98px){

    .cangpt__wrapper {
        padding:25px;
        border-radius:25px;
    }

    .chat__message {
        max-width:90%;
        padding: 15px;
        font-size: 14px;
    }

    .cangpt__chat{
        padding: 15px;
    }

    .chat__avatar-user,
    .chat__avatar-ai{
        width: 32px;
        height: 32px;
    }

    .chat__input span{
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 180px;
    }


}


/* ++++++++++++++++++++++++++++++++++++++++++++++
 CTA
++++++++++++++++++++++++++++++++++++++++++++++ */

.cta__note {
    margin-top:25px;
    font-size:14px !important;
    color:#7c8c99 !important;
    text-align: center;

}

/* ++++++++++++++++++++++++++++++++++++++++++++++
 PLANS BLOCK
++++++++++++++++++++++++++++++++++++++++++++++ */

.plans__grid {

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap: 40px;
}

.plan-card {
    position: relative;
    padding: 40px 35px;
    border-radius: 32px;
    background:white;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: .3s ease;
    justify-content: space-between;
}

.plan-card:hover {
    transform:translateY(-8px);
    border: 2px solid var(--primary);
    box-shadow:0 25px 50px rgba(17,52,76,.12);
}

.plan-card h3 {
    margin: 0 0 25px;
    font-size: 30px;
    color: var(--text);
    font-size: 24px;
    font-weight: 600;
}

.plan-card__button {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-card--featured {
    background:
    linear-gradient(
        180deg,
        #fffdeb,
        #ffffff
    );
    border:2px solid var(--secondary);
}

.plan-card--featured:hover{
    border-color: var(--secondary);
    
}

.plan-card__label {
    position:absolute;
    top:-16px;
    left:50%;
    transform:translateX(-50%);
    padding:7px 20px;
    border-radius:50px;
    background:var(--secondary);
    color: var(--text);
    font-size:13px;
    font-weight:700;
}

@media(max-width:900px){

    .plans__grid{
        grid-template-columns:1fr;
    }

}