@font-face {
    font-family: 'Montagna LTD';
    src: url('Fonts/MontagnaLTD.eot');
    src: local('Montagna LTD'), local('MontagnaLTD'),
        url('Fonts/MontagnaLTD.eot?#iefix') format('embedded-opentype'),
        url('Fonts/MontagnaLTD.woff2') format('woff2'),
        url('Fonts/MontagnaLTD.woff') format('woff'),
        url('Fonts/MontagnaLTD.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: radial-gradient(circle at 0% 0%, #07547a, #165678, #0d5579, #0d5479);
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    position: relative;
    /* For absolute positioning of children */
}

/* Background Decoration */
.bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    /* Behind everything */
    pointer-events: none;
    /* Allow clicking through */
}

.icon-bg {
    position: absolute;
    color: rgba(255, 255, 255, 0.03);
    /* Very transparent white */
    font-size: 15rem;
    /* Huge icons */
    animation: float 10s ease-in-out infinite;
}

.icon-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 15%;
    left: 35%;
    font-size: 20rem;
    animation-delay: 2s;
}

.icon-3 {
    top: 20%;
    right: 10%;
    animation-delay: 4s;
}

.icon-4 {
    bottom: 5%;
    right: 40%;
    font-size: 10rem;
    animation-delay: 1s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.container {
    display: flex;
    justify-content: space-between;
    /* Pushes content to edges */
    /* align-items: center;  Removed to allow custom vertical alignment */
    height: 100vh;
    width: 100%;
    max-width: 95%;
    /* Increased width for larger display */
    margin: 0 auto;
    /* Center container */
    padding: 0 5%;
}

.content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2rem;
    /* Add some spacing from the left edge */
}

.logo {
    max-width: 250px;
    /* Adjust size as needed */
    margin-bottom: 5rem;
    display: block;
    transform: translateY(-3rem);
    /* Move up visually */
}

.main-title {
    display: flex;
    flex-direction: column;
    background: transparent;
}

.text-top {
    font-family: 'Montagna LTD', sans-serif;
    font-size: 5rem;
    /* Large size */
    color: #4dc0d2;
    /* Cyan/Light Blue */
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: -10px;
}

.text-bottom {
    font-family: 'Montagna LTD', sans-serif;
    font-size: 6rem;
    /* Even larger size */
    color: white;
    font-weight: 400;
    /* Outfit has various weights, using regular/medium based on image */
}

.subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.8rem;
    color: white;
    margin-top: 1rem;
    font-weight: 300;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366;
    /* WhatsApp Green */
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-top: 2rem;
    width: fit-content;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp:hover {
    background-color: #20bd5a;
    transform: scale(1.05);
}

.btn-whatsapp i {
    font-size: 1.8rem;
    transform: translateY(1px);
    /* Push icon down slightly */
}

/* Responsive adjustments for text */
@media (max-width: 1024px) {
    .text-top {
        font-size: 3.5rem;
    }

    .text-bottom {
        font-size: 4.5rem;
    }
}

.image-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    /* Push image to the bottom */
    height: 100%;
    /* Full height to allow bottom alignment */
}

.image-right img {
    max-width: 100%;
    /* Responsive image */
    height: auto;
    max-height: 95vh;
    /* Allow image to take more vertical space */
    object-fit: contain;
}

/* Responsiveness */
/* Responsiveness */
@media (max-width: 768px) {
    .container {
        flex-direction: column-reverse;
        justify-content: flex-end;
        /* Align content to bottom of container */
        align-items: center;
        /* Center horizontally */
        padding: 40px 20px;
        height: auto;
        /* Allow scrolling */
        min-height: 100vh;
        gap: 2rem;
    }

    .content-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center text and button */
        text-align: center;
        padding-left: 0;
        margin-bottom: 2rem;
    }

    .logo {
        margin-bottom: 2rem;
        /* Reduced margin */
        transform: translateY(0);
        /* Remove offset on mobile */
        max-width: 180px;
        /* Smaller logo */
    }

    .text-top {
        font-size: 2.5rem;
        /* Much smaller font */
    }

    .text-bottom {
        font-size: 3.5rem;
        /* Much smaller font */
    }

    .subtitle {
        font-size: 1.2rem;
        width: 100%;
    }

    .image-right {
        justify-content: center;
        margin-bottom: 0;
        height: auto;
        align-items: center;
    }

    .image-right img {
        max-height: 40vh;
        /* Limit image height */
    }

    .btn-whatsapp {
        margin-top: 1.5rem;
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }
}

/* About Section */
.about-section {
    background-color: white;
    padding: 6rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    /* Ensure it sits above any fixed backgrounds if needed */
}

.about-title {
    font-family: 'Antonio', sans-serif;
    /* Using Antonio as headline font */
    color: #0d5479;
    /* Dark blue from the gradient */
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 4rem;
}

.about-image {
    flex: 1;
    display: grid;
    /* Stack images */
    grid-template-areas: "stack";
}

.about-image img {
    grid-area: stack;
    /* All images occupy the same space */
    width: 100%;
    /* Remove aspect-ratio to prevent cropping */
    /* aspect-ratio: 4/3; */
    /* object-fit: cover; */
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 1s ease-in-out;
    align-self: center;
}

.about-image img.active {
    opacity: 1;
}

.about-content {
    flex: 1;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 2rem;
    font-family: 'Outfit', sans-serif;
    /* Clean sans-serif for body text */
    font-size: 1.3rem;
    color: #333;
    line-height: 1.5;
}

.benefit-list li i {
    color: #4dc0d2;
    /* Light blue checkmark */
    font-size: 2rem;
    margin-top: -2px;
}

.benefit-list li strong {
    color: #165678;
    /* Slightly darker blue for emphasis */
    font-weight: 700;
}

/* Mobile for About Section */
@media (max-width: 900px) {
    .about-section {
        padding: 4rem 5%;
    }

    .about-container {
        flex-direction: column;
        gap: 2rem;
    }

    .about-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .benefit-list li {
        font-size: 1.1rem;
    }

    .about-image {
        width: 100%;
    }
}

/* New Blue Section */
.blue-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem 5%;
    color: white;
    /* Transparent background to show body gradient */
}

.blue-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 4rem;
}

.blue-text {
    flex: 1;
    text-align: left;
}

.blue-text h2 {
    font-family: 'Montagna LTD', sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 2rem;
}

.highlight-cyan {
    color: #5ce1e6;
}

.blue-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 90%;
}

.operators-card {
    /* Fixed dimensions from design */
    width: 539.1px;
    height: 556px;
    background: white;
    padding: 1.5rem 2rem;
    /* Reduced padding */
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: #0d5479;
    /* Flex column to manage internal spacing */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Align to top */
}

.operators-card h3 {
    font-family: 'Antonio', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    /* Reduced margin */
    font-weight: 700;
}

.operators-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    /* Reduced gap greatly */
    justify-items: center;
    align-items: center;
    padding: 0;
    height: 100%;
    /* Fill remaining space */
}

.operators-grid img {
    max-width: 130px;
    height: auto;
    max-height: 55px;
    /* Reduced height */
    object-fit: contain;
    transition: transform 0.2s ease;
}

/* Specific adjustment for Suporte Saúde logo */
.operators-grid img[alt="Suporte Saúde"] {
    max-height: 100px;
    max-width: 180px;
}

.operators-grid img:hover {
    transform: scale(1.1);
}

/* Update Button Style for this section */
.blue-text .btn-whatsapp {
    margin-top: 0;
    background: linear-gradient(90deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

@media (max-width: 900px) {
    .blue-container {
        flex-direction: column;
        text-align: center;
    }

    .blue-text {
        text-align: center;
        margin-bottom: 3rem;
    }

    .blue-text p {
        max-width: 100%;
    }

    .operators-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Services Section */
.services-section {
    background-color: #f0f4f8;
    /* Light gray/white background */
    padding: 6rem 5%;
    text-align: center;
}

.services-title {
    font-family: 'Montagna LTD', sans-serif;
    font-size: 3.5rem;
    color: #0d5479;
    margin-bottom: 4rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #165678;
    /* Dark blue */
    border-radius: 20px;
    padding: 3rem 2rem;
    width: 350px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border-bottom: 5px solid #4dc0d2;
    /* Cyan accent line */
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 4rem;
    color: #4dc0d2;
    /* Cyan icon */
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: 'Antonio', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
}

@media (max-width: 900px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 400px;
    }
}

/* Transition Banner */
.transition-banner {
    background: linear-gradient(90deg, #165678 0%, #4dc0d2 50%, #165678 100%);
    padding: 1rem 5%;
    text-align: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.transition-banner h3 {
    font-family: 'Antonio', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .transition-banner h3 {
        font-size: 1.8rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: white;
    padding: 6rem 5%;
    text-align: center;
}

.testimonials-title {
    font-family: 'Montagna LTD', sans-serif;
    font-size: 3.5rem;
    color: #555;
    /* Dark gray text */
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.testimonials-subtitle {
    font-family: 'Open Sans', sans-serif;
    color: #777;
    font-size: 1.3rem;
    margin-bottom: 4rem;
    line-height: 1.5;
}

/* Final CTA Section */
.final-cta-section {
    background-color: #0d5479;
    /* Dark blue background */
    padding: 6rem 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.final-cta-container {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.final-cta-text {
    flex: 1;
    max-width: 600px;
}

.final-cta-text h2 {
    font-family: 'Montagna LTD', sans-serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.final-cta-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.final-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(180deg, #4dc0d2 0%, #0d5479 100%);
    color: white;
    text-decoration: none;
    font-family: 'Antonio', sans-serif;
    font-size: 1.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #4dc0d2;
}

.final-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.final-cta-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.final-cta-image img {
    max-width: 100%;
    border-radius: 20px;
    border-top: 5px solid #0d5479;
    border-bottom: 5px solid #4dc0d2;
    /* Cyan accent */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 900px) {
    .final-cta-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .final-cta-text {
        padding: 0 1rem;
    }

    .final-cta-image {
        width: 100%;
        margin-bottom: 2rem;
    }
}

/* Footer Section */
.main-footer {
    background-color: #f9f9f9;
    padding: 4rem 5%;
    color: #555;
    font-family: 'Open Sans', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

/* Left Column */
.footer-logo {
    max-width: 200px;
    margin-bottom: 1rem;
}

.footer-slogan {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-socials a {
    font-size: 2rem;
    color: #0d5479;
    transition: transform 0.2s, color 0.2s;
}

.footer-socials a:hover {
    transform: scale(1.1);
    color: #4dc0d2;
}

/* Center Column */
.footer-col h3 {
    font-family: 'Montagna LTD', sans-serif;
    color: #0d5479;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-address {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #777;
}

.footer-phone {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0d5479;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}



/* Right Column */
.map-container iframe {
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-col {
        width: 100%;
    }
}

/* Copyright Bar */
.copyright-bar {
    background-color: #0d5479;
    color: white;
    text-align: center;
    padding: 1rem 5%;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-bar p {
    margin: 0.3rem 0;
    opacity: 0.9;
}