@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");

html {
    scroll-behavior: smooth;
}

:root {
    /*
    Colors
    ----------------------------------*/
    --color-primary: #10182f;
    --color-text: #545d7a;
    --color-white: #fff;
    --color-title: #242e4c;
    --color-background: #f7f8fb;
    --color-border: #dae1f5;

    /*
    Font
    ----------------------------------*/
    --font-family: "Satoshi", sans-serif;
    --fs-sm: 1.4rem;
    --fs-md: 1.6rem;
    --fs-lg: 2.2rem;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-bold: 700;

    /* Transition & Box Shadow */
    --transition: 0.4s ease-in-out;
    --shadow: 0px 60px 56px -12px rgba(9, 40, 163, 0.05);
}

.hidden {
    opacity: 0;
    /* Inicialmente oculto */
    transition: opacity 1s ease-in-out;
    /* Transición de opacidad */
}

.appear {
    opacity: 1;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    list-style: none;
    box-sizing: border-box;
}

.btn_wsp {
    position: fixed;
    width: 200px;
    height: 55px;
    line-height: 55px;
    bottom: 30px;
    right: 30px;
    background: rgb(4, 183, 4);
    border-radius: 50px;
    text-align: center;
    color: white;
    font-size: 25px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: .3s;
    z-index: 200;
}

.btn_wsp:hover {
    transform: scale(1.1);
    background: rgb(10, 206, 10);
}
.btn_alert{
    position: fixed;
    width: 200px;
    height: 55px;
    line-height: 55px;
    bottom: 100px;
    right: 30px;
    background: rgb(165, 2, 2);
    border-radius: 50px;
    text-align: center;
    color: white;
    font-size: 25px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: .3s;
    z-index: 200;
}

.btn_alert:hover{
    transform: scale(1.1);
    background: rgb(228, 11, 11);
    cursor: pointer;
}

/* BARRA */
nav ul li a {
    text-decoration: none;
}

header {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 50px;
    transition: 0.7s;
    position: fixed;
    margin-top: -70px;
    background-color: #000000;
    z-index: 100;
}

header nav ul {
    display: flex;
}

header nav ul li a {
    /*LETRAS DE LA NAV*/
    display: inline-block;
    color: rgb(255, 255, 255);
    padding: 5px 0;
    margin: 0 10px;
    border: 3px solid transparent;
    text-transform: uppercase;
    transition: 0.2s;
}

header nav ul li a:hover,
header nav ul li a.active {
    border-bottom-color: rgb(22, 48, 175);
    transition: 0.7s;
}

.hamburger {
    cursor: pointer;
    display: none;
}

.hamburger div {
    width: 30px;
    height: 3px;
    margin: 5px 0;
    background: rgb(255, 255, 255);
}

.logo a img {
    margin-top: 5px;
    width: 220px;
}

/*RESPONSIVE*/
@media(max-width: 900px) {
    header {
        background-color: black;
        padding: 0 30px;
    }

    .logo a img {
        margin-top: 3px;
    }
}

@media(max-width:700px) {
    .hamburger {
        display: block;
    }

    header nav {
        position: absolute;
        width: 100%;
        left: -100%;
        top: 70px;
        width: 100%;
        background: rgb(0, 0, 0);
        padding: 30px;
        transition: 0.3s;
        z-index: 1;
    }

    header #nav_chek:checked~nav {
        left: 0;
    }

    header nav ul {
        display: block;
    }

    header nav ul li a {
        margin: 5px 0;
    }
}

/*FONDO*/
.fondo {
    background-image: url(../Imagenes/Fondos/Fondo1.png);
    width: 100%;
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
}

@media(max-width:700px) {
    .fondo {
        background-position: center;
    }
}

.degradado {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.489) 0, rgba(0, 0, 0, 0.425) 60%, rgba(0, 0, 0, 0.607) 100%);
}

.contenido {
    padding: 20px;
    color: white;
    text-align: center;
    margin-top: 70px;
}

.botones {
    display: flex;
    justify-content: center;
}

.boton2 {
    color: white;
    width: 300px;
    padding: 15px 0;
    text-align: center;
    margin: 0 10px;
    border-radius: 25px;
    font-weight: bold;
    border: 2px solid rgb(0, 42, 255);
    background: rgb(0, 42, 255);
    cursor: pointer;
    transition: background-color 0.5s ease;
    font-size: 20px;
}

@media (max-width:700px) {
    .boton2 {
        font-size: 18px;
    }
}

.boton2 {
    border: 2px solid rgb(0, 42, 255);
    background: transparent;
    transition: .7s;
}

.boton2:hover {
    border: 2px solid rgb(16, 43, 178);
    background: rgb(16, 43, 178);
    transform: scale(1.1);
}

.t1 {
    text-transform: uppercase;
    font-size: 70px;
}

.t2 {
    font-size: 30px;
}

@media (max-width:700px) {
    .t1 {
        font-size: 50px;
    }

    .t2 {
        font-size: 25px;
    }
}

@media (max-width:700px) {
    .t1 {
        font-size: 40px;
    }

    .t2 {
        font-size: 18px;
    }
}

.mapa {
    display: flex;
    justify-content: center;
}

.mapa img {
    width: 200px;
}

/*PLANES*/
.contenedor {
    color: rgb(0, 0, 0);
    width: 100%;
    background-color: #ffffff;
    text-align: center;
}

.separador div {
    width: 100%;
    height: 8px;
    background: rgb(54, 54, 54);
}

.t3 {
    font-family: 'Bebas Neue';
    font-size: 60px;
    padding: 30px 0;
    font-weight: normal;
    font-style: oblique;
    letter-spacing: -1.28px;
}

.t4 {
    font-family: 'Bebas Neue';
    font-size: 25px;
    font-weight: lighter;
    margin-top: -30px;
}

@media (max-width: 768px) {
    .t3 {
        font-size: 46px;
    }

    .t4 {
        font-size: 20px;
    }
}

/*PLANES*/
.t5 {
    font-family: sans-serif;
}

.t6 {
    font-family: sans-serif;
}

::selection {
    background-color: #000000;
    color: white;
}

.pricing {
    display: flex;
    flex-wrap: wrap;
    padding: 0 100px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.single_card {
    flex-basis: calc(100%/3);
    padding: 20px;
}

.single_card .wrapper {
    background-color: white;
    height: 100%;
    padding: 30px;
    box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.1);
    transition: .3s;
}

.single_card h3 {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-weight: 500;
}

.single_card h1 {
    font-family: 'Poppins', sans-serif;
    text-align: start;
    margin: 20px 0px;
    font-size: 30px;
    font-weight: bold;
}

.single_card li {
    padding-left: 0 0;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.single_card i.fas {
    height: 15px;
    width: 15px;
    background-color: #000000;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    font-size: 10px;
    margin-right: 10px;
}

.single_card span {
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 500;
}

.single_card .btnplan {
    font-family: 'Poppins', sans-serif;
    height: 40px;
    width: 100%;
    background-color: #202842;
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .5px;
    margin-top: 30px;
    transition: 0.3;
}

.single_card .btnplan:hover {
    background: #000000;
    transform: scale(1.1);
    transition: .7s;
}

.popular.wrapper {
    color: white;
    background-color: #202842;
    overflow: hidden;
}

.popular.wrapper .btnplan,
.popular.wrapper i {
    color: #202842;
    background: white;
}

.popular.wrapper .btnplan:hover {
    color: white;
    background: black;
}

.disable span {
    color: #c4c4c4;
}

.disable i.fas {
    background: #c4c4c4;
}

@media screen and (max-width: 992px) {
    .pricing {
        padding: 0px 20px;
    }

}

@media screen and (max-width: 768px) {
    .single_card {
        flex-basis: calc(100% / 2);
    }
}

@media screen and (max-width: 576px) {
    .single_card {
        flex-basis: calc(100%);
    }
}

/*SERVICIOS*/

/*COMENTARIO*/
.comentarios {
    padding: 40px 0;
    background: #f1f1f1;
    color: #000000;
    text-align: center;
}

.inner {
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

.border {
    width: 160px;
    height: 5px;
    background: #10182f;
    margin: 26px auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.col {
    flex: 33.33%;
    max-width: 33.33%;
    box-sizing: border-box;
    padding: 15px;
}

.col .comentario span{
    font-family: 'Poppins', sans-serif;
}
.comentario {
    background: #fff;
    padding: 30px;
}

.comentario img {
    width: auto;
    height: 100px;
    border-radius: 50%;
}

.name {
    font-size: 20px;
    text-transform: uppercase;
    margin: 20px 0;
}

@media screen and (max-width:960px) {
    .col {
        flex: 100%;
        max-width: 80%;
    }
}

@media screen and (max-width:600px) {
    .col {
        flex: 100%;
        max-width: 100%;
    }
}


/*COMENS*/


/*INFORMACION*/
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 100px 50px;
    padding: 100px 50px;
    z-index: 2;
}

.container .card {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    width: 350px;
    height: 300px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
    transition: .5s;
    
}

.container .card:hover {
    height: 400px;
}

.container .card .imgBx {
    top: 20px;
    position: absolute;
    width: 300px;
    height: 220px;
    background: #333;
    border-radius: 12px;
    overflow: hidden;
    transition: .5s;
    overflow: hidden;
}

.container .card:hover .imgBx {
    top: -100px;
    scale: 0.75;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.container .card .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container .card .content {
    position: absolute;
    top: 252px;
    width: 100%;
    padding: 0 30px;
    height: 30px;
    overflow: hidden;
    text-align: center;
    transition: 0.5s;
}

.container .card:hover .content {
    top: 125px;
    height: 250px;
}

.container .card .content h2 {
    font-family: "Poppins", sans-serif;
    ;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr);
}

.container .card .content p {
    font-family: "Poppins", sans-serif;
    ;
    color: #333;
}

.container .card .content a {
    font-family: "Poppins", sans-serif;
    ;
    position: relative;
    top: 15px;
    display: inline-block;
    padding: 12px 25px;
    background: var(--clr);
    color: white;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
}

/*ACORDION*/
.container2 {
    width: 100%;
    margin: auto;
    min-height: 100vh;
    padding: 2rem;
    display: grid;
    place-items: center;
}

/*
Accordion
---------------------------*/
.accordion__wrapper {
    background-color: var(--color-white);
    box-shadow: var(--shadow);
    border-radius: 2.5rem;
    width: 100%;
    max-width: 60rem;
}

.accordion__title {
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--color-title);
    text-align: center;
    margin-bottom: 5rem;
}

.accordion {
    border-bottom: 0.1rem solid var(--color-border);
    padding-bottom: 2rem;
    margin-bottom: 3rem;
}

.accordion__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.accordion__icon {
    background-color: var(--color-primary);
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--color-white);
    flex-shrink: 0;
}

.accordion__question {
    font-size: var(--fs-md);
    font-weight: var(--fw-medium);
    color: var(--color-title);
}

.accordion__answer {
    padding: 2rem 0;
}

.accordion__content {
    overflow: hidden;
    height: 0;
    transition: var(--transition);
}

@media screen and (min-width: 580px) {
    .accordion__wrapper {
        padding: 5rem 8rem;
    }
}

/*FOOTER*/
.pie-pagina {
    width: 100%;
    background: #202842;
}

.pie-pagina .grupo-1 {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    padding: 45px 0px;
}

.pie-pagina .grupo-1 .box figure {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pie-pagina .grupo-1 .box img {
    width: 360px;
}

.pie-pagina .grupo-1 .box h2 {
    color: white;
    margin-bottom: 25px;
    font-size: 20px;
}

.pie-pagina .grupo-1 .box p {
    color: #efefef;
    margin-bottom: 10px;
}

.pie-pagina .grupo-1 .red-social a {
    display: inline-block;
    text-decoration: none;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: white;
    margin-right: 10px;
    background: #0d2033;
    text-align: center;
    transition: all 300ms ease;
}

.pie-pagina .grupo-1 .red-social a:hover {
    color: aqua;
}

.pie-pagina .grupo-2 {
    background-color: #0a1a2a;
    padding: 15px 10px;
    text-align: center;
    color: #ffffff;
}

.pie-pagina .grupo-2 small {
    font-size: 15px;
}

@media screen and (max-width:800px) {
    .pie-pagina .grupo-1 {
        width: 90%;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 30px;
        padding: 35px 0px;
    }
}
section{
    display: flex;
    justify-content: center;
    align-items: center;
}
.card_container{
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.712);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.card_container.active{
    position: fixed;
    visibility: visible;
    opacity: 1;
    z-index: 200;
}
.card{
    width: 500px;
    background-color: white;
    box-shadow: 5px 5px 20px -5px rgba(0, 0, 0, 0.471);
    padding: 40px 25px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    transition: .3s ease;
    transform: translateY(10%);
    z-index: 1;
}
.card img{
    width: 400px;
}
.card_container.active .card{
    transform: translateY(0%);
}
.card_img{
    width: 100px;
    margin-top: 10px;
}
.card_content h1{
    font-size: 28px;
    margin-bottom: 10px;
}
.card_content p{
    font-size: 14px;
    margin-bottom: 20px;
}
.group_btns{
    margin-bottom: 10px;
    display: flex;
    justify-content: center;    
}
.button{
    width: 150px;
    height: 50px;
    border-radius: 12px;
    border: none;
    margin: 10px 10px;
    cursor: pointer;
    font-size: 18px;
}
.button:nth-child(1){
    background-color: rgb(18,18,18);
    color: white;
}
@media screen and (max-width:520px) {
    .card_container{
        align-items: flex-end;
    }
    .card{
        padding: 40px 30px;
        border: 18px;
    }
}

html::-webkit-scrollbar{
    width: 9px;
    background: black;
}
html::-webkit-scrollbar-thumb{
background: white;
border-radius: 20px;
}