



body {
    background-color: #e6e6e6 !important; /* Sets the entire page background to light grey */
    margin: 0; /* Removes default margin */
    padding: 0; /* Removes default padding */
    font-family: Arial, sans-serif; /* Optional: Sets a default font for the page */
}

/*
.hero-image {
    width: 50%; 
    display: flex;
    justify-content: center;
    align-items: center; 
}

.hero-image img {
    width: 100%; 
    height: auto; 
}

.navbar {
    display: flex;
    justify-content: center; 
    width: 100%; 
    background-color: #f8f9fa !important; 
}

ul.navbar-nav {
    background-color: #e6e6e6 !important;
}

.nav-link {
    display: block;
    padding: 8px 16px; 
    color: #007bff; 
    text-decoration: none; 
}
*/
/* Centering the collapse navbar content */


.navbar-collapse {
    flex-grow: 0; /* Prevents the navbar collapse from taking extra space */
}


.hamburger-menu {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px; 
    height: 25px;
    margin-left: auto; /* Pushes the hamburger menu to the right */
}


#claulogo {
    display: block; /* Ensures the logo is a block element */
    margin: 0 auto 20px; /* Auto margins center it horizontally, 20px margin-bottom for spacing */
    height: 190px; /* ??? */
    width: 150px; /* Maintains aspect ratio  ???*/
    padding-top: 40px;
}



#buttonfree {
font-size: 80px;
border-radius: 7px;
background-color: #172ab2;
cursor: pointer;
}

.language-selector a img {
    width: 35px;
    margin: 0 10px;
}

.btn-primary:hover {
    background-color: #be2edd !important;
    color: #fff !important;
   
}


.hero-content p {
    color: #112d4e;
    font-size: 40px;
    padding-top: 25px;
   
}

.hero-content .btn {
    color: white;
    padding: 15px;
}

.hero-image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.package-card:hover {
    transform: translateY(-8px); /* Slight raise effect on hover */
    box-shadow: 0 20px 30px rgba(0,0,0,0.8); /* More pronounced shadow on hover */
}
  
.package-features {
    list-style: inside disc; /* Adds bullet points inside the list */
    text-align: left; 
}

.card-transition {
    transition: transform 0.9s ease-in-out, box-shadow 0.9s ease-in-out; /* Ensuring smooth transitions */
}

.card-transition:hover {
    transform: translateY(-8px); /* Slight raise effect on hover */
    box-shadow: 0 20px 30px rgba(0,0,0,0.8); /* More pronounced shadow on hover */
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-section {
    
    background-color: #c5c5c6; /* Matching background color with the rest of the site */
    color: #112d4e;
}




@media (max-width: 768px) {
    .about-section {
        flex-direction: column;  /* Stack the elements vertically on small screens */
        align-items: flex-start;  /* Align items to the start */
    }

    .about-content, .about-image {
        width: 100%;  /* Each takes full width of the section */
        text-align: center;  /* Center align the text */
        padding: 50px 0;  /* Padding adjustments */
    }

    .about-image img {
        max-width: 70%;  /* Smaller image on smaller screens */
        margin: auto;  /* Center the image */
    }
}



.custom-rounded {
    border-radius: 10px;
  }
  
.packages-container {
    display: flex;
    flex-wrap: wrap; /* Allows cards to wrap on smaller screens */
    justify-content: space-evenly; /* Distributes space around items */
    padding: 20px;
    background-color: #e6e6e6; /* Set to match the background color of the website */
    margin-top: 30px; /* Adds 30px margin to the top*/
}


.package-card {
    flex-basis: 30%; /* Sets the base width of each card */
    box-shadow: 0 8px 16px rgba(0,0,0,0.3); /* Enhanced box shadow for more depth */
    background-color: #fff;
    padding: 20px;
    margin: 10px;
    text-align: center;
    transition: transform 0.5s ease-out, box-shadow 0.5s ease-out; /* Smooth and longer transition */
}

/* Bootstrap doesn't come with border size classes */
border-3 {
    border-width:3px !important;
}

.rounded-10 {
    border-radius: 10px !important;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.8);
}

.package-features {
    list-style: inside disc; /* Adds bullet points inside the list */
    text-align: left; 
}



@media (max-width: 960px) {
    .package-card {
        flex-basis: 100%; /* Each card takes full width on smaller screens */
        max-width: 100%;
    }
}
.site-footer {
    background-color: #e6e6e6; 
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 16px;
}



.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column-reverse;
}

.footer-cta {
    background-color: #172ab2;
    color: white;
    text-decoration: none;
    padding: 10px 10px; /* ??? */
    border-radius: 7px;
    font-size: 1.2rem;
}

.social-media-links {
    display: flex;
    justify-content: center;
}

.social-link img {
    width: 90px; 
    height: 90px;
    margin: 0 10px; 
}

.footer-text {
    color: #172ab2;
   
    font-size: 16px;
    margin-top: 30px; 
    margin-bottom: 20px;
}

div.horizontal {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

div.vertical {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 15px;
}



.my-float {
    margin-top: 16px; /* Alinha o ícone no centro */
    font-size: 24px; /* Ajusta o tamanho do ícone */
}




