@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    background-color: #282828;
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
}

h2{
    text-transform: uppercase;
    font-size: 3rem;
    font-weight: 900;
    color: #EDCD48;
    text-align: center;
}

/*nav-style*/

nav{
    display: flex;
    padding: 20px;
    background-color: #1a1919c6;
    box-shadow: 0 70px 80px rgba(29, 29, 29, 0.923);
    justify-content: space-around;
    align-items: center;
    position: fixed;
    z-index: 2;
    width: 100;
    top: 0;
    opacity: 15px;
    backdrop-filter: blur(15px);
}
nav .container-logo img {
    width: 90%;
}
nav .container-logo {
    flex-basis: 20%;
}
nav a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.5s;
}

nav a:hover{
    color: #c3a117;
}

nav ul {
    display: flex;
    gap: 40px;
}

nav ul li{
    list-style: none;
    transition: all 0.3s;
}

.container-site{
    margin-left: 8%;
    margin-right: 8%;
}

/* modal term y cond */

/* Estilos básicos para el modal */
.modalTerms {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.167);
}

.modal-content-Terms {
    background-color: #28282850;
    backdrop-filter: blur(15px);
    margin: 15% auto;
    padding: 20px;
    color: #fff;
    width: 35%;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.086);
}

.modal-content-Terms p {
    margin-bottom: 20px;
    font-size: 1.3rem;
    hyphens: auto;
    line-height: 1.5;
}

.accept-button {
    background-color: #ac8e21;
    color: white;
    padding: 10px 20px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
    font-family: "Montserrat", sans-serif;
}

.accept-button:hover {
    opacity: 0.8;
}

/*banner-style*/


header {
    margin-top: 230px;
}

header .container-hero-card {
    background: url(./img-banner.jpg) no-repeat left center fixed;
    background-size: cover;
    width: 100%;
}

.container-txt-btn {
    padding: 40px;
    color: #fff;
}

.container-txt-btn h1 {
    font-size: 4rem;
    line-height: 3rem;
    text-transform: uppercase;
    font-weight: 500;
}

.container-txt-btn p{
    width: 40%;
    font-weight: 600;
    margin-bottom: 30px;
} 
.container-txt-btn a {
    text-decoration: none;
}
.container-txt-btn button {
    background-color: #86D146;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    padding: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 1s;
}
.container-txt-btn button:hover{
    background-color: #509b0e;
}

.container-txt-btn button img {
    width: 15%;
}


/* quienes-somos */

.container-quienes{
    text-align: center;
    margin-top: 130px;
}

.container-quienes h2 {
    text-transform: uppercase;
    font-size: 3rem;
    font-weight: 900;
    color: #EDCD48;
}
.container-quienes p{
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.9rem;
}

hr {
    width: 300px;
    height: 2px;
    background-color: #fff;
    border: none;
}

.container-contadores-juridicos-logos {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 100px;
    flex-wrap: wrap;
    align-items: center;
}

.container-contadores-juridicos-logos h3 {
    font-size: 2rem;
    color: #fff;
}

.container-contadores-juridicos-logos img {
    width: 300px;
}

/* services */

.container-services {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container-services h3{
    color: #fff;
    font-size: 2rem;

}

.wrapper{
    display: flex;
    justify-content: center;
    margin-top: 20px;
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
    width: 80%;
    gap: 10px;  
}

.wrapper::-webkit-scrollbar{
    width: 0;
}

.wrapper .item {
    width: 100%;
    padding: 20px;
    background-color: #161616;
    color: #fff;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    gap: 20px;
    border: none;
    transition: all 0.5s;
    font-size: 1rem;
    text-align: left;
    font-weight: 600;
}
.wrapper .item:hover {
    background-color: #c3a117;
}


.wrapper .item img {
    width: 20%;
}

.container-btn-aditional a {
    text-decoration: none;
}

.container-btn-aditional{
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.aditional-btn {
    border: none;
    font-size: 1.3rem;
    padding: 20px;
    color: #fff;
    background-color: #c3a117;
    font-weight: 200;
    transition: all 0.6s;
    margin-bottom: 30px;
}

.aditional-btn:hover {
    background-color: #161616;
}

.description-serv{
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 100;
    margin-bottom: 100px;
}

/* footer */
footer {
    background-color: #212121;
    color: #fff;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center; 
}



footer .container-social-n a img{   
    width: 2%;
}

footer .container-social-n a{
    text-decoration: none;
    color: #fff;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
    transition: all 0.5s;
}

footer .container-social-n a:hover{
    color: #c3a117;
    font-weight: 700;
}

/*modal */

#modalContainer{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.modal{
    padding: 30px;
    background-color: #0d0c0cc6;
    backdrop-filter: blur(15px);
    max-width: 500px;
    height: auto;
    position: relative;
    box-shadow: 0 70px 80px rgba(29, 29, 29, 0.923);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

#modalContainer.show{
    opacity: 1;
    visibility: visible;
}

#modalContainer.show .modal{
    transform: translateY(0);
}

.modal h3{
    font-size: 2rem;
    color: #fff;
}
.modal p{
    font-size: 1rem;
    color: #fff;
}
.modal button{
    border: none;
    background: none;
    font-size: 1.7rem;
    color: #fff;
    font-weight: 100;
    position: absolute;
    top: 15px;
    right: 20px;
}

.modal button:hover{
    color: #c3a117;
}

/* ubication */

.container-ubication{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.ubication-icon {
    width: 44.8px;
    height: 44.8px;
    position: relative;
    transform: rotate(45deg);
  }
  
  .ubication-icon:before,
  .ubication-icon:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50% 50% 0 50%;
    background: #0000;
    background-image: radial-gradient(circle 11.2px at 50% 50%,#0000 94%, #ff4747);
  }
  
  .ubication-icon:after {
    animation: pulse-ytk0dhmd 1s infinite;
    transform: perspective(336px) translateZ(0px);
  }
  
  @keyframes pulse-ytk0dhmd {
    to {
      transform: perspective(336px) translateZ(168px);
      opacity: 0;
    }
  }


.container-cityes{
    display: flex;
    justify-content: left;
    align-items: left;
    gap: 20px;
    margin-bottom: 100px;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    width: 70%;
}
.container-cityes::-webkit-scrollbar{
    
    height: 10px;
}
.container-cityes::-webkit-scrollbar-track{
    background: #1a1a1a;
}
.container-cityes::-webkit-scrollbar-thumb{
    background: linear-gradient(-45deg, #e4ad0a 0%, #6c5101 100% );
}

.container-cityes::-webkit-scrollbar-button{
    display: none;
} 
  
.card-container-cityes {
    width: 30%;
    height: 300px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    flex-shrink: 0;
    margin-bottom: 10px;
  }

  
  .card-city {
    width: 100%;
    height: 100%;
  }

  .cardct-background-0{
    background: url(./lugares/rio-grande.jpg) center center;
    background-size: cover;
  }
  .cardct-background-1{
    background: url(./lugares/comodor-rivadavia.jpg) center center;
    background-size: cover;
  }
  .cardct-background-2{
    background: url(./lugares/santa-cruz.webp) center center;
    background-size: cover;
  }
  .cardct-background-3{
    background: url(./lugares/neuquen-2.jpg) center center;
    background-size: cover;
  }
  
  
  .card-city .front-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1)
  }
  
  .card-city .front-content p {
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 1;
    background: #ffffff;
    background-clip: text;
    -webkit-background-clip: text;
    text-align: left;
    -webkit-text-fill-color: transparent;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    text-shadow: 5px 12px 10px rgba(0, 0, 0, 0.5);
  }
  
  .card-city .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: left;
    text-align: left;
    gap: 1px;
    background: linear-gradient(-45deg, #e4ad0a 0%, #6c5101 100% );
    color: #e8e8e8;
    padding: 20px;
    line-height: 1.1;
    border-radius: none;
    pointer-events: none;
    transform: translateY(-96%);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  }
  
  .card-city .content .heading {
    font-size: 32px;
    font-weight: 700;
  }
  
  .card-city:hover .content {
    transform: translateY(0);
  }
  
  .card-city:hover .front-content {
    transform: translateY(30%);
  }
  
  .card-city:hover .front-content p {
    opacity: 0;
  }
  .container-ubication h3 {
    color: #fff;
    font-size: 1.5rem;
  }
  
  iframe {
    border: 0;
    width: 100%;
    height: 400px;
}

.container-financial{
    margin-top: 130px;
    margin-bottom: 130px;
    color: #ffffff;
}
.container-financial-desc{
    margin-bottom: 50px;
}
.container-financial-desc p {
    font-size: 0.8rem;
}
.container-financial-desc h3{
    font-size: 1.5rem;
}


.container-financial-services{
    display: flex;
    justify-content: space-around;
    margin-top: -150px;
}

.services-financial-box h4 {
    margin-bottom: -5px;
}
.services-financial-box ul li {
    font-size: 0.8rem;
}
.services-financial-box p{
    font-size: 0.8rem;
}

.services-financial-box {
    background-color: #262626;
    cursor: pointer;
    transition: 400ms;
    width: 400px;
    border: solid #323232 1px;
    position: relative;
}
.financial-box-txt{
    padding: 30px;
}

.container-financial-desc-img {
    display: flex;
    justify-content: center;
}
.container-financial-desc-img img {
    width: 700px;
}
.services-financial-box img {
    width: 100%;
    mask-image: linear-gradient( to bottom, black 20%, transparent);
}
.services-financial-box:hover{
    transform: scale(1.1, 1.1);
}

.container-financial-services:hover > .services-financial-box:not(:hover){
    filter: blur(10px);
    transform: scale(0.9, 0.9);
}

.services-financial-box button {
    padding: 10px;
    background-color: #d2b43e;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40%;
    text-align: left;
    border: none;
    transition: all 0.5s;
}

.services-financial-box button:hover{
    background-color: #171717;
    color: #e8e8e8;
}

#img-conex{
    width: 100%;
    margin-top: -150px;
}

.whatsapp-float {
    position: fixed;
    bottom: 50px;   
    right: 60px;      
    z-index: 999;    
    text-decoration: none;
  }
  
  .wfloat-top {
    bottom: 150px;
}
.btn-top{
    background-color: rgba(162, 153, 52, 0.832) !important;
}
  
  .Btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 75px;
    height: 75px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition-duration: 0.3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    background-color: rgba(56, 53, 23, 0.832);
  }
  
  .sign {
    width: 100%;
    transition-duration: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .sign svg {
    width: 25px;
  }
  
  .sign svg path {
    fill: white;
  }
  
  .text {
    position: absolute;
    right: 0%; 
    width: 0%;
    opacity: 0;
    color: white;
    font-size: 1.3em;
    font-weight: 600;
    transition-duration: 0.3s;
  }
  
  .Btn:hover {
    width: 200px;
    border-radius: 40px;
    transition-duration: 0.3s;
  }
  
  .Btn:hover .sign {
    width: 30%;
    transition-duration: 0.3s;
    padding-left: 10px;
  }
  
  .Btn:hover .text {
    opacity: 1;
    width: 70%;
    transition-duration: 0.3s;
    padding-right: 10px;
  }
  
  .Btn:active {
    transform: translate(2px, 2px);
  }


@media screen and (max-width: 768px) {

    header{
        margin-top: 100px;
    }

    nav{
        padding: 30px;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    nav .container-logo img {
        width: 100%;
    }
    nav .container-logo {
        flex-basis: 50%;
    }
    nav a {
        display: none;
    }

    .container-site {
        margin-left: 4%;
        margin-right: 4%;
    }

    header .container-hero-card {
        background: url(./fondo-mobile.webp) no-repeat center center;
        background-size: cover;
        width: 100%;
    }
    .container-txt-btn h1 {
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 3rem;
    }
    .container-txt-btn p{
        width: 100%;
        text-align:justify;
        hyphens: auto;
        font-weight: 600;
        font-size: 1.2rem;
        margin-bottom: 50px;
    } 
    .container-txt-btn button {
        gap: 20px;
        margin-bottom: 20px;
        width: 100%;
        font-size: 1.2rem;
    }

    /* quienes-somos */

.container-quienes{
    margin-top: 130px;
}

.container-quienes h2 {
    margin-top: 200px;
    font-size: 2rem;
    color: #EDCD48;
}
.container-quienes p{
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 2.5rem;
}

hr {
    width: 300px;
    height: 3px;
    margin-bottom: 100px;
}


/* services */

    .container-services h2{
        font-size: 3rem;
    }

    .container-services {
        margin-top: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .wrapper{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 20px;
        -webkit-overflow-scrolling: touch;
        overflow: hidden;
        width: 100%;
        gap: 10px;  
    }

    .wrapper .item {

        padding: 20px;
        background-color: #161616;
        color: #fff;
        overflow: hidden;
        display: flex;
        justify-content: left;
        align-items: center;
        flex-direction: row-reverse;
        gap: 20px;
        border: none;
        transition: all 0.5s;
        font-size: 1.3rem;
        text-align: left;
        font-weight: 600;
    }
    .wrapper .item:hover {
        background-color: #c3a117;
    }

    

    .wrapper .item img {
        width: 10%;
    }

    .container-contadores-juridicos-logos {
        display: flex;
        justify-content: center;
        margin-top: 50px;
        gap: 100px;
        flex-wrap: wrap;
        align-items: center;
    }

    .container-contadores-juridicos-logos h3 {
        font-size: 2rem;
        color: #fff;
    }

    .container-contadores-juridicos-logos img {
        width: 300px;
    }

    .container-btn-aditional{
        margin-top: 40px;
        display: flex;
        justify-content: center;
    }

    .aditional-btn {
        font-size:1.1rem;
        width: 100%;
        padding: 15px;
        color: #fff;
        background-color: #c3a117;
        font-weight: 600;
        transition: all 0.6s;
        margin-bottom: 100px;
    }

    footer {
        background-color: #212121;
        color: #fff;
        padding: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center; 
        flex-direction: column;
    }
    
    footer p{
        flex-basis: 100%;
        font-size: 1.4rem;
    }
    
    footer .container-social-n a img{   
        width: 6%;
    }
    
    footer .container-social-n a{
        text-decoration: none;
        color: #fff;
        display: flex;
        gap: 10px;
        align-items: center;
        margin-bottom: 20px;
        font-size: 1.3rem;
    }
    
    .container-contadores-juridicos-logos h3 {
        font-size: 1.5rem;
        text-align: center;
        color: #fff;
    }
    
    .container-contadores-juridicos-logos img {
        width: 100%;
    }
    .description-serv{
        margin-top: -20px;
        font-size: 1.3rem;
        text-align: left;
    }

    .container-cityes{
        width: 95%;
    }
    .container-cityes::-webkit-scrollbar {
        display: none;
    }
    .container-cityes::-webkit-scrollbar-track{
        display: none;
    }
    .card-container-cityes{
        width: 85%;
    }

    .container-financial-desc-img{
        flex-direction: column;
        text-align: justify;
    }
    .container-financial-desc-img img {
        width: 100%;
    }
    .container-financial-services{
        flex-direction: column;
        margin-top: 100px;
    }
    #img-conex {
        margin-top: -70px;
        margin-bottom: 100px;
    }
    .wfloat-top {
        bottom: 120px !important;
    }
    .whatsapp-float {
        bottom: 20px;   
        right: 20px;    
      }
      
      .modal-content-Terms {
        width: 75%;
        margin: 40% auto;
      }
      .accept-button {
        width: 100%;
        padding: 15px;
      }
}