/*
========== 
Style for the main container.
==========
*/

.container {
    width: 100%;
    min-height: 100vh; /* This ensures that the container occupies the entire height of the screen. */
    background-color: var(--black-color);
}

.content {
    height: 2000px; 
    padding: 20px;
    color: var(--white-color);
}

/* 
==========
Bar Section 
==========
*/

.bar {
    background-image: url('../resources/images/website/background-header.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
    height: 70vh;
    color: var(--white-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bar-content {
    background-color: var(--black-color-transparent); 
    padding: 30px;
    border-radius: 15px;
    width: 80%;
    max-width: 800px;
    color: var(--white-color);
}

.text-info-1 {
    font-size: 2rem; 
    color: var(--white-color);
    margin-bottom: 15px;
}

.text-info-2 {
    font-size: 1.125rem;
    color: var(--white-color);
    margin-bottom: 15px;
}

.text-info-3 {
    font-size: 1.125rem;
    color: var(--white-color);
    margin-bottom: 20px;
}

.btn.btn-green {
    background-color: var(--yellow-color);
    color: var(--black-color);
    font-size: 1rem;
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    margin-top: 10px; 
}

.btn.btn-green:hover {
    background-color: var(--yellow-color);
    transform: scale(1.1);
}

.services {
    width: 100%;
    height: auto;
    background-color: var(--white-color);
    text-align: center;
    padding: 100px;
}

.services-subtitle {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--darkblue-color);
}

.services-company {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: var(--darkblue-color);
}

.service-boxes{
    display: flex;
    flex-direction: row;
    gap: 15em;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    height: auto;
}

.service-box{
    width: 200px;
    height: 250px;
    position: relative;
}

.service-box-content{
    width: 200px;
    height: 200px;
    position: relative;
}

.service-box-information{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--darkblue-color);
    border: 10px solid var(--white-color);
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
}

.service-box:hover .service-box-icon{
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background-color: var(--yellow-color);
    border:2px solid var(--white-color);
    border-radius: 50%;
    position: absolute;
    top: -80%;
    left: 10px;
    z-index: 1; 
    transition: all ease-in-out .5s;
    cursor: pointer;
}

.service-box-icon{
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background-color: var(--yellow-color);
    border:2px solid var(--white-color);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1; 
    transition: all ease-in-out .5s;
}

.service-box-icon .icon{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.service-box-icon .icon svg{
    width: 40%;
    height: 40%;
    fill: var(--white-color);
}

.service-box-border{
    width: 100%;
    height: 100%;
    background: none;
    border:10px solid  var(--yellow-color);
    border-radius: 50%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;  
}

.service-box:hover .service-box-border{
    width: 100%;
    height: 100%;
    background: none;
    border:10px solid  var(--yellow-color);
    border-radius: 50%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2; 
    transition: all ease-in-out .5s;
    box-shadow: inset 0 0 10px var(--black-color-transparent); 
    cursor: pointer;
}

.service-box .service-box-title{
    padding: 1em;
}

.estadistic {
    width: 100%;
    height: auto;
    background-color: var(--white-color);
    display: flex;
    justify-content: center;
    padding: 0 20px; 
}

.service-box-title{
    color: var(--lightdarkblue-color);
    transition: all ease-in-out .5s;
    cursor: pointer;
    font-size: 15px;
    font-weight: 900;
}

.service-box a{
    text-decoration: none;
}

.service-box:hover .service-box-title{
    color: var(--yellow-color);
    transition: all ease-in-out .5s;
    cursor: pointer;
}

.informatic {
    width: 65%;
    height: 100%;
    background-color: var(--aliceblue-color);
    text-align: center;
    padding: 20px; 
    background-image: url("../resources/images/website/background-count-number.png");
    background-repeat: repeat;
    background-position: center;
    color: var(--white-color);
}

.Information-number {
    margin-top: 50px;
    font-size: 2.2rem;
    font-weight: bold;
}

.estadistic1 {
    width: 100%;
    height: 60%;
    margin-top: 60px;
    display: flex;
    justify-content: space-evenly;
}

.block {
    text-align: center;
    font-weight: 900;
    font-size: 3.5rem; 
    margin-bottom: 50px;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.num {
    font-size: 4rem; 
    font-weight: bold;
    color: var(--white-color);
}

.yellow-line {
    width: 20%;
    height: 2px;
    background-color: var(--yellow-color);
    margin: 10px 0;
}

.vip-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--white-color);
}

.btn {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: bold;
    color: var(--white-color); 
    border: 2px solid var(--white-color); 
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    margin-top:10px;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--yellow-color); 
    transition: transform 0.8s ease-in-out;
    transform: translateX(0); 
}

.btn:hover::before {
    transform: translateX(100%); 
}

.btn span {
    position: relative;
    z-index: 1;
}

.driver {
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 30px;
}

.driver-information {
    color: var(--aliceblue-color);
    line-height: 25px;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.designate-driver {
    position: relative;
    width: 100%;
    min-height: 30%;
    background-color: var(--darkblue-color);
    padding: 60px 350px 80px;  
    z-index: 1;  
}

.img-responsive-girl {
    position: absolute; 
    width: 20%; 
    right: 5%;  
    bottom: 10px; 
    z-index: 1000; 
}

.footer{
    width: 100%;
    height: 50vh;
}

.footer-wrapper {
    background-color: var(--darkblue-color);
    padding: 40px 0;
    font-family: Arial, sans-serif;
    color: var(--yellow-color);
}

.footer-content {
    max-width: 1250px;
    margin: auto;
    padding: 0 20px;
}

.footer-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 20px;
}

.footer-column {
    flex: 1;
    min-width: 280px;
    margin-bottom: 20px;
}

.widget {
    padding: 15px;
}

.title-widget {
    color: var(--yellow-color);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.content-widget ul {
    list-style: none;
    padding: 0;
}

.content-widget ul li {
    padding: 5px 0;
  display: table;
  border-top: 1px solid var(--darkblue-color);
  width: 100%;
  padding-bottom: 15px;
  padding-top: 15px;
}

.content-widget ul li:last-child {
    border-bottom: none;
}

.content-widget ul li a {
    text-decoration: none;
    color: var(--lightblue-color);
    transition: color 0.3s;
}

.content-widget ul li a:hover {
    color: var(--yellow-color);
}
