/* General Reset */
body, h1, p, ul, li, a, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: Eastman-Grotesque-Bold-trial;
    src: url(../fonts/Eastman-Grotesque-Bold-trial.otf);
}
@font-face {
    font-family: Eastman-Grotesque-Medium-trial;
    src: url(../fonts/Eastman-Grotesque-Medium-trial.otf);
}
@font-face {
    font-family: EastmanRomanTrial-Bold;
    src: url(../fonts/EastmanRomanTrial-Bold.otf);
}
@font-face {
    font-family: myriad-pro-semibold;
    src: url(../fonts/myriad-pro-semibold.otf);
}
@font-face {
    font-family: NyataFTR-Regular;
    src: url(../fonts/NyataFTR-Regular.otf);
}
@font-face {
    font-family: nyata-bold;
    src: url(../fonts/nyata-bold.ttf);
}
@font-face {
    font-family: Roboto-Bold;
    src: url(../fonts/Roboto-Bold.ttf);
}

body {
    font-family: 'Roboto', sans-serif;
}

/* Header */
.sticky-header {
    background-color: rgba(0, 0, 255, 0.8); /* 20% opacity */
    color: #ffffff;
    padding: 20px 0; /* Increase padding for height adjustment */
    position: static;
    top: 0;
    z-index: 1000;
}


.logo {
    max-height: 50px;
}

.nav-links {
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    font-family: 'Nyata-Bold', sans-serif;
    color: #ffffff;
    padding: 10px 10px;
    border-radius: 10px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-link:hover {
    background-color: #3285c5;
    color: #0000ff;
    padding: 2px 10px 2px 10px;
    border-radius: 20px;
}
.nav-item {
    position: relative;
}

.dropdown-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%; /* Position it below the parent */
    left: 0;
    background-color: #ffffff; /* Dropdown background color */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    z-index: 100; /* Ensure it appears above other elements */
    list-style: none; /* Remove default bullet points */
    padding: 10px 0; /* Add some padding */
    width: 200px; /* Set a fixed width */
}

.dropdown-item {
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    color: #000000;
    text-decoration: none;
    display: block;
    padding: 10px 20px; /* Add padding inside the dropdown items */
    transition: background-color 0.3s, color 0.3s;
}

.dropdown-item:hover {
    background-color: rgba(0, 0, 255, 0.1); /* Highlight on hover */
    color: #0000ff; /* Change text color */
}

.nav-item:hover .dropdown-menu {
    display: block; /* Show dropdown on hover */
}


 
/* Hero Section */
.hero {
    /* background: url('../images/hero-bg.jpg') no-repeat center center/cover; */
    color: #ffffff;
    min-height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center; /* Vertically center content */
    justify-content: flex-start; /* Align content to the leftmost third */
    padding: 0;
}
.contact-hero {
    /* background: url('../images/hero-bg.jpg') no-repeat center center/cover; */
    color: #ffffff;
    min-height: 60vh; /* Full viewport height */
    display: flex;
    align-items: center; /* Vertically center content */
    justify-content: flex-start; /* Align content to the leftmost third */
    padding: 0;
}
.hero .container {
    max-width: 33%; /* Default: Restrict width to 1/3 of the screen */
    margin-left: 20%; /* Add margin to respect website borders */
    text-align: left; /* Align text to the left */
}

/* Media Query for Tablets */
@media (max-width: 768px) {
    .hero .container {
        max-width: 50%; /* Expand text area to 50% for smaller screens */
        margin-left: 5%; /* Maintain consistent left margin */
    }
}

/* Media Query for Phones */
@media (max-width: 480px) {
    .hero .container {
        max-width: 90%; /* Use most of the screen width on small devices */
        margin-left: 5%; /* Maintain left margin for visual balance */
    }
}

.hero-title {
    font-family: 'Eastman-Grotesque-Medium-trial', sans-serif;
    font-size: 3rem; /* Default font size for larger screens */
    margin-bottom: 20px;
}

/* Media Query for Tablets */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem; /* Slightly smaller for tablets */
    }
}

/* Media Query for Phones */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem; /* Smaller font size for phones */
    }
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #00b7c7;
    padding-right: 50px;
    font-family: 'NyataFTR-Regular';
    
}

/* Media Query for Tablets */
@media (max-width: 768px) {
    .hero-description {
        font-size: 1rem; /* Slightly smaller for tablets */
    }
}

/* Media Query for Phones */
@media (max-width: 480px) {
    .hero-description {
        font-size: 0.75rem; /* Smaller font size for phones */
    }
}

.hero-button {
    font-family: 'Nyata-Bold', sans-serif;
    background-color: #00d3e5;
    color: #000000;
    padding: 10px 20px;
    border: 3px solid #44efff; /* Blue border to match the text */;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.hero-button:hover {
    background-color: #009bbd;
}

.hero-title2 {
    font-family: 'Eastman-Grotesque-Medium-Trial', sans-serif;
    font-size: 3rem; /* Default font size for larger screens */
    margin-bottom: 20px;
    color: #000130;
}

/* Media Query for Tablets */
@media (max-width: 768px) {
    .hero-title2 {
        font-size: 2rem; /* Slightly smaller for tablets */
    }
}

/* Media Query for Phones */
@media (max-width: 480px) {
    .hero-title2 {
        font-size: 1.5rem; /* Smaller font size for phones */
    }
}

.hero-description2 {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #000130;
    padding-right: 50px;
    font-family: 'NyataFTR-Regular';
    
}

/* Media Query for Tablets */
@media (max-width: 768px) {
    .hero-description2 {
        font-size: 1rem; /* Slightly smaller for tablets */
    }
}

/* Media Query for Phones */
@media (max-width: 480px) {
    .hero-description2 {
        font-size: 0.75rem; /* Smaller font size for phones */
    }
}

.hero-button2 {
    font-family: 'Nyata-Bold', sans-serif;
    background-color: #0e55a7;
    color: #ffffff;
    padding: 10px 20px;
    border: 3px solid #0f4f99; /* Blue border to match the text */;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-button2:hover {
    background-color: #093364;
}
.features {
    background: linear-gradient(to bottom, #04b9cd 0%, #0598af 100%);
    padding: 0px 0 20px 0; /* Add padding at the top, and reduce the bottom padding */
}

.card-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Create 4 equal columns for the cards */
    gap: 20px; /* Space between cards */
    justify-items: center; /* Center cards within their grid columns */
    width: 100%;
    max-width: 1200px; /* Optional: set a max width for the grid container */
    margin: 0 auto; /* Center the grid container */
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.2); /* 10% opacity */
    border-radius: 0 0 150px 150px; /* Rounded bottom edges */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    width: 100%; /* Full width inside its grid column */
    margin-bottom: 20px; /* Ensure there's space below the cards */
}

/* Adjust the icon's positioning inside the circle */
.feature-icon {
    background-color: #00d7e3; /* Circle background color */
    width: 224px; /* Diameter of the circle */
    height: 224px; /* Diameter of the circle */
    border-radius: 50%; /* Make the element circular */
    display: flex;
    justify-content: center; /* Center the icon horizontally */
    align-items: center; /* Center the icon vertically */
    margin-top: 60px;
    margin-bottom: 15px; /* Space between the icon and the title */
    margin-left: auto; /* Center the circle horizontally in the card */
    margin-right: auto; /* Center the circle horizontally in the card */
}

.feature-icon img {
    width: 100px; /* Set a fixed size for the icon */
    height: auto; /* Maintain aspect ratio */
}

/* Title and description styles */
.feature-title {
    font-size: 1.5rem;
    font-family: 'Eastman-Grotesque-Medium-Trial', sans-serif;
    margin-bottom: 10px;
    color: #000000;
    font-family: 'myriad-pro-semibold';
}

.feature-description {
    font-size: 1rem;
    font-family: 'Roboto-Bold', sans-serif;
    color: #ffffff;
    margin-bottom: 40px;
    font-family: 'NyataFTR-Regular';
}

/* Optional: Adjust the grid for smaller screens */
@media (max-width: 768px) {
    .card-container {
        grid-template-columns: 1fr; /* Stack cards vertically */
        padding: 40px 20px; /* Add padding for left and right margins */
    }

    .feature-card {
        width: 100%; /* Ensure cards take full width */
        margin-bottom: 20px;
        border-radius: 150px 150px 150px 150px;
        text-align: center; /* Center the card content */
    }

    .feature-icon {
        width: 150px; /* Make the circle smaller on smaller screens */
        height: 150px; /* Keep the circle proportional */
    }

    .feature-icon img {
        width: 50px; /* Adjust icon size inside the circle */
        height: auto;
    }
}

/* Optional: Additional adjustments for very small screens (e.g., mobile) */
@media (max-width: 480px) {
    .feature-icon {
        width: 120px; /* Smaller circle on very small screens */
        height: 120px; /* Keep the circle proportional */
    }

    .feature-icon img {
        width: 40px; /* Smaller icon */
        height: auto;
    }
}

.carousel-section {
    background: linear-gradient(to bottom, #0598af 0%, #011452 100%);
    padding: 40px 0;
}

.carousel-image {
    margin: 0 10px; /* Spacing between images */
    text-align: center; /* Center align images and captions */
}

.carousel-image img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px; /* Optional: Rounded corners for images */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

.carousel-divider {
    border: none; /* Remove default styling */
    border-top: 2px solid #ffffff; /* Customize thickness and color */
    margin: 40px 0; /* Space around the line */
    width: 40%; /* Adjust width to fit within the carousel */
    margin-left: auto; /* Center the line */
    margin-right: auto;
    opacity: 0.8; /* Subtle transparency */
}

/* Button Styling */
.carousel-section .btn {
    background-color: #ffffff; /* White background */
    color: #00a7a5; /* Blue text */
    border: 2px solid #007bff; /* Blue border to match the text */
    border-radius: 25px; /* Rounded corners */
    padding: 12px 24px; /* Adjust padding for better size */
    font-size: 1.25rem; /* Font size */
    font-family: 'nyata-bold'; /* Use consistent font */
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.4); /* Blue shadow */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    padding-left: 50px;
    padding-right: 50px;
}

/* Button Hover Effect */
.carousel-section .btn:hover {
    background-color: #007bff; /* Blue background on hover */
    color: #ffffff; /* White text on hover */
    box-shadow: 0 6px 12px rgba(0, 123, 255, 0.6); /* Stronger blue shadow on hover */
    transform: translateY(-2px); /* Slightly raise the button */
    padding-left: 40px;
    padding-right: 40px;
}

/* Background Section */
.background-section {
    background: linear-gradient(to bottom, #011452 0%,  #036f8b 100%);
    padding: 60px 0; /* Adjust padding for spacing */
    color: #ffffff;
}

/* Grid Layout */
.background-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.background-section .row {
    display: flex;
    justify-content: space-between;
}

/* Column Styling */
.background-section .col-md-6 {
    margin-bottom: 30px; /* Add margin at the bottom of each column */
}

.image-frame {
    width: 400px; /* Circle frame width */
    height: 400px; /* Circle frame height */
    border-radius: 50%; /* Make it circular */
    overflow: hidden; /* Hide overflow to maintain circular shape */
    margin: 0 auto 20px; /* Center the image and add space below it */
}

.image-frame img {
    width: 100%; /* Fill the frame with the image */
    height: 100%;
    object-fit: cover; /* Ensure the image covers the frame without distortion */
}

.section-title {
    font-size: 1.75rem;
    font-family: 'Eastman-Grotesque-Medium-Trial', sans-serif;
    margin-bottom: 15px;
    color: #00bfd7;
    font-family: 'myriad-pro-semibold';
}

.section-paragraph {
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    padding: 40px;
    font-family: 'NyataFTR-Regular';
}

/* Media Query for Smaller Screens */
@media (max-width: 768px) {
    .background-section .col-md-6 {
        margin-bottom: 20px; /* Less space between columns on smaller screens */
    }
}
/* Blue Background Section */
.blue-background-section {
    background-color: #036f8b; /* Blue background color */
    padding: 0; /* No padding for the section */
}

.full-width-image {
    width: 100%; /* Make the image stretch to the full width of the section */
    height: auto; /* Maintain the aspect ratio of the image */
}
/* Footer Styles */
.footer {
    background-color: rgba(0, 0, 255, 0.8); /* Similar to header color */
    color: #ffffff;
    padding: 20px 0;
    position: relative;
    margin-top: -5px;
}

.footer .container {
    display: flex;
    justify-content: space-between; /* Spread content across the container */
    align-items: center; /* Vertically center the content */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.footer-nav {
    flex: 1; /* Allow the nav to take up available space */
}

.nav-links {
    gap: 20px;
    justify-content: flex-start; /* Align to the left */
}

.nav-link {
    text-decoration: none;
    font-family: 'Nyata-Bold', sans-serif;
    color: #ffffff;
    padding: 10px 10px;
    border-radius: 10px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-link:hover {
    background-color: #3285c5;
    color: #0000ff;
    padding: 2px 10px 2px 10px;
    border-radius: 20px;
}

.footer-logo {
    max-height: 40px; /* Adjust this value as needed */
    object-fit: contain; /* Ensure the image retains its aspect ratio */
    margin: 0 auto; /* Center the logo */
    display: block; /* Ensure it is displayed as a block element */
}

.footer-text {
    text-align: right;
    font-family: 'NyataFTR-Regular', sans-serif;
}

.footer-text p {
    margin: 0;
}

/* Adjust the layout when there are fewer elements in the footer */
.footer .container {
    justify-content: center; /* Center the content (logo and text) */
}

.footer-nav {
    display: none; /* Hide the nav when it's no longer needed */
}

.servicos-section {
    background-color: #fff3e3;
    padding: 60px 0; /* Adjust padding for spacing */
    color: 000131;
}

/* Grid Layout */
.servicos-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.servicos-section .row {
    display: flex;
    justify-content: space-between;
}

/* Column Styling */
.servicos-section .col-md-6 {
    margin-bottom: 30px; /* Add margin at the bottom of each column */
}
.bottom-right-logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 300px;
    height: auto;
}

.info-section {
    background-color: #02b7cc; /* Section background color */
    padding: 50px 20px; /* Spacing around the section */
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-box {
    background-color: #01c1d3; /* Box background color */
    border-radius: 300px; /* Rounded corners */
    padding: 40px;
    text-align: center;
    max-width: 70%; /* Limit the box width */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

.info-box h3 {
    color: #00008b; /* Dark blue text for the title */
    font-family: 'EastmanRomanTrial-Bold', sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.4;
    padding: 0px;
}

.info-box p {
    color: #ffffff; /* White text for the paragraph */
    font-family: 'Nyata FTR', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.cta-section {
    background-color: #fff3e3; /* Section background color */
    padding-top: 0; 
    padding-bottom: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-box {
    background-color: #f6e8d7; /* Box background color */
    border-radius: 300px; /* Rounded corners */
    padding: 20px;
    padding-bottom: 0;    
    text-align: center;
    width: 60%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

.cta-box h3 {
    color: #00008b; /* Dark blue text for the title */
    font-family: 'EastmanRomanTrial-Bold', sans-serif;
    font-size: 32px;
    margin-bottom: 10px;
    line-height: 1.4;
    padding: 0px;
}

.cta-box p {
    color: #0c0064;
    font-family: 'NyataFTR-Regular', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.cta-button {
    font-family: 'Nyata-Bold', sans-serif;
    background-color: #0cbee1;
    color: #0c0064;
    padding: 10px 10px;
    margin-bottom: -150px;
    border: 3px solid #44efff; /* Blue border to match the text */;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #009bbd;
}

.contact-section {
    height: 70vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(to bottom, #02b7cc 50%, #fff3e3 50%);
    padding: 20px;
}

.form-box {
    background-color: #0dc8e4; /* Box background color */
    border-radius: 15px; /* Rounded corners */
    padding: 30px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow */
    text-align: center;
}

.form-box h3 {
    font-family: 'Nyata FTR', sans-serif;
    color: #00008b; /* Dark blue title */
    font-size: 24px;
    margin-bottom: 20px;
    text-align: left;
}

.form-box .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-box label {
    display: block;
    font-family: 'Nyata FTR', sans-serif;
    color: #000070; /* Label text color */
    font-size: 14px;
    margin-bottom: 5px;
}

.form-box input,
.form-box textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 10px;
    font-family: 'Nyata FTR', sans-serif;
    font-size: 14px;
    box-sizing: border-box;
}

.form-box textarea {
    resize: none; /* Disable resizing for consistent look */
}

.form-box button {
    background-color: #000000; /* Black background */
    color: #ffffff; /* White text */
    font-family: 'Nyata FTR', sans-serif;
    font-size: 16px;
    width: 100%; /* Same width as the form fields */
    padding: 10px;
    border: none;
    border-radius: 10px; /* Match the field's rounded corners */
    cursor: pointer;
    transition: background-color 0.3s;
    box-sizing: border-box;
}

.form-box button:hover {
    background-color: #333333; /* Slightly lighter shade for hover */
}

/* Styling for the social icons container */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between icons */
    margin: 15px 0; /* Spacing between paragraph and icons */
}

/* Styling for each icon link */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: black;
    color: white;
    border-radius: 50%; /* Makes it a circle */
    text-decoration: none; /* Removes underline */
    font-size: 20px;
    transition: transform 0.3s, background-color 0.3s;
}

.social-icon:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
    background-color: #333; /* Darker shade on hover */
}

.servicos-section2 {
    background-color: #fff3e3;
    padding: 60px 0;
    color: #000131;
}

.servicos-section2 .container {
    max-width: 1200px;
    margin: 0 auto;
}

.servicos-section2 .row {
    margin-bottom: 40px;
}

.servicos-section2 .image-left {
    width: 500px;
    height: auto;
    margin-right: 20px; /* Consistent gap between image and text */
}

.servicos-section2 .section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-left: 40px; /* Adjust spacing between title and paragraph */
    color: #00bfd7;
}

.servicos-section2 .section-paragraph {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0; /* Ensure no additional margin interferes */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .servicos-section2 .row {
        flex-direction: column; /* Stack items vertically on smaller screens */
        text-align: center;
    }
    .servicos-section2 .image-left {
        width: 100%; /* Full width for mobile */
        max-width: 400px; /* Maintain max size */
        margin: 0 auto 20px; /* Center the image with bottom spacing */
    }
    .servicos-section2 .col-md-4 {
        display: flex;
        flex-direction: column; /* Stack title and paragraph */
        justify-content: center; /* Center both vertically */
    }
}

.servicos-section3 {
    background-color: #fff3e3;
    padding: 60px 0;
    color: #000131;
}

.servicos-section3 .container {
    max-width: 1200px;
    margin: 0 auto;
}

.servicos-section3 .row {
    margin-bottom: 40px;
}

.servicos-section3 .image-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%; /* Makes the image circular */
    object-fit: cover; /* Ensures the image is properly scaled */
    margin-right: 20px; /* Consistent gap between image and text */
}

.servicos-section3 .section-title {
    font-size: 1.8rem;
    margin-bottom: 0px;
    margin-left: 40px;
    color: #00bfd7;
}

.servicos-section3 .section-paragraph {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .servicos-section3 .row {
        flex-direction: column; /* Stack items vertically on smaller screens */
        text-align: center;
    }
    .servicos-section3 .image-circle {
        width: 100%; /* Full width for mobile */
        max-width: 400px; /* Maintain max size */
        margin: 0 auto 20px; /* Center the image with bottom spacing */
    }
}
