/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}
/* Hero Section */
.hero-section {
    height: 100vh;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

/* Menu Superior */
.hero-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 20px 0;
    position: fixed;
}

.nav-items {
    display: flex;
    justify-content: center;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 40px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 0 auto;
    width: fit-content;
}

/* Estilos para telas grandes */
.hero-nav .nav-items {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
}

/* Estilos para telas pequenas */
@media (max-width: 768px) {
    .hero-nav .nav-items {
        display: none; /* Esconde o menu padrão */
        flex-direction: column;
        background-color: white;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        z-index: 99;
        padding: 10px 0;
    }

    .hero-nav.active .nav-items {
        display: flex;
    }

    .menu-toggle {
        border-radius: 20px;
        display: block;
        cursor: pointer;
        padding: 10px;
        background-color: white;
        border: none;
        font-size: 20px;
        z-index: 100;
        position: absolute;
        right: 20px;
        top: 10px;
    }

    .nav-items a {
        margin: 10px 0;
        text-align: center;
    }

    .logo-container img {
        width: 150px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .carousel-image {
        height: 250px;
    }

    .offer-card {
        padding: 1rem;
    }

    .dynamic-image {
        height: 250px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-nav .nav-items {
        padding: 5px 0;
    }

    .menu-toggle {
        font-size: 18px;
    }

    .logo-container img {
        width: 120px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .carousel-image {
        height: 200px;
    }

    .offer-card {
        padding: 0.5rem;
    }

    .dynamic-image {
        height: 200px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

.nav-item {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #4a90e2;
}

/* Fundo da Cidade */
.city-background {
    position: absolute;
    width: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/background.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

/* Formas Geométricas */
.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.geometric-shape {
    position: absolute;
    width: 50%;
    height: 100%;
    transition: transform 0.3s ease-out;
}

.left-shape {
    left: 0;
    top: 0;
}

.right-shape {
    right: 0;
    top: 0;
}

.blue-triangle {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 100vh 0 0 60vw;
    border-color: transparent transparent transparent #4a90e2;
    opacity: 0.8;
}

.blue-triangle-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 60vw 100vh 0;
    border-color: transparent #4a90e2 transparent transparent;
    opacity: 0.8;
}

.green-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.green-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 49%, #2ecc71 49%, #2ecc71 51%, transparent 51%);
}

.green-line-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.green-line-right::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 49%, #2ecc71 49%, #2ecc71 51%, transparent 51%);
}

.small-triangle {
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 80px 80px;
    border-color: transparent transparent #2ecc71 transparent;
    opacity: 0.7;
}

.logo-container {
    text-align: center;
    z-index: 15;
    position: relative;
}

.logo-circle {
    width: 220px;
    /* height: 220px; */
    background-image: url('../img/logo circular - ivee.png');
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
    transition: transform 0.3s ease-out;
}

.logo-v {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    font-family: 'Arial', sans-serif;
}

.company-name {
    width: 220px;
}

/* ServiceNow Badge */
.servicenow-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 15;
    background: #1a1a1a;
    color: white;
    border-radius: 8px;
    font-size: 0.8rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.badge-logo {
    width: 135px;
}

.badge-text {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.badge-subtext {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-bottom: 8px;
}

.badge-footer {
    font-size: 0.65rem;
    opacity: 0.8;
    line-height: 1.2;
}

.badge-footer span {
    display: block;
}

/* Separator Section */
.separator-section {
    /* height: 440px; */
    position: relative;
    overflow: hidden;
}

.separator-image {
    width: 100%;
    /* height: 100%; */
    background-image: url('../img/cases de sucesso - afya.png');
    background-size: cover;
    background-position: center;
    /* background-attachment: scroll; */
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
}

.separator-image:hover {
    transform: scale(1.05);
}

.separator-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.separator-image:hover .separator-overlay {
    opacity: 1;
}

.separator-overlay i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.separator-overlay p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Cases Section */
.cases-section {
    background: url("../img/background 2.png");
    /* min-height: 80vh; */

    position: relative;
    background-attachment: fixed;
}

.cases-title-container {
    text-align: left;
    margin-bottom: 3rem;
    padding-left: 2rem;
    position: relative;
    /* background-color: #EFEFEF; */
}

.cases-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-transform: lowercase;
    letter-spacing: 1px;
}

.cases-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 400;
    margin-left: 1rem;
}

/* .cases-title-container::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 50%;
    width: 80px;
    height: 2px;
    background: #28a745;
    transform: translateY(-50%) rotate(-45deg);
}

.cases-title-container::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 50%;
    width: 80px;
    height: 2px;
    background: #28a745;
    transform: translateY(-50%) rotate(45deg);
} */

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.section-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
}

.carousel-image {
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.carousel-caption {
    background: rgba(0,0,0,0.7);
    border-radius: 10px;
    padding: 1rem;
}

/*  Section */
.serviceNow-carousel-section {
    background: #075880;
    /* min-height: 70vh; */
    background-attachment: fixed;
}

.offer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.offer-icon i {
    font-size: 2rem;
    color: white;
}

.source-to-pay-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.source-to-pay-content h5 {
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.source-to-pay-content p {
    color: #666;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}


/* Hero Offers Section */
.hero-offers-section {
    background: url("../img/background 2.png");
    /* min-height: 70vh; */
    background-attachment: fixed;
}

.offer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.offer-icon i {
    font-size: 2rem;
    color: white;
}

.offer-content h5 {
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.offer-content p {
    color: #666;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Stay Updated Section */
.stay-updated-section {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.stay-updated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/background.png');
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed; */
}

.stay-updated-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.stay-updated-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.stay-updated-text {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    position: relative;
    z-index: 2;
}

.social-icons {
    position: relative;
    z-index: 2;
}

.social-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.6);
    color: white;
    transform: translateY(-5px);
}

/* Nova Seção Final */
.final-banner-section {
    /* height: 400px; */
    position: relative;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    position: relative;
}

.banner-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/banner facul 1.png');
    background-size: 200px 200px;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.banner-title {
    font-size: 1.5rem;
    color: white;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.banner-main-title {
    font-size: 3.5rem;
    color: white;
    font-weight: 700;
    margin: 0;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Primeiro Slide de Fotos */
.photos-slide-section {
    background: #f8f9fa;
}

.photos-carousel-image {
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* Separador com Ícones */
.separator-icons-section {
    background: #ffffff;
    padding: 3rem 0;
    position: relative;
}

.elevated-panel-shadow-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.1) 0%, transparent 100%);
    z-index: 1;
}

.interactive-icons-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.icon-nav-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.icon-nav-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
    transform: scale(1.1);
}

.icon-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.icons-slider {
    overflow: hidden;
    width: 740px;
    position: relative;
}

.icons-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
    transition: transform 0.3s ease;
    width: calc(7 * (80px + 3rem));
}

.icon-circle {
    width: 100px;
    height: 100px;
    background: #f8f9fa;
    border: 3px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #6c757d;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.icon-circle:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
    /* transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3); */
}

.icon-circle.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
    /* transform: translateY(-5px); */
    /* box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4); */
}

/* Conteúdo Dinâmico */
.dynamic-content-section {
    background: #ffffff;
}

.dynamic-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.dynamic-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 15px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.dynamic-text-content {
    padding-left: 2rem;
}

.dynamic-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    transition: opacity 0.3s ease;
}

.dynamic-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    transition: opacity 0.3s ease;
}

.dynamic-features {
    list-style: none;
    padding: 0;
    margin: 0;
    transition: opacity 0.3s ease;
}

.dynamic-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #333;
}

.dynamic-features i {
    color: #28a745;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

/* Nova Seção Final */
.final-banner-section {
    width: 100%;
    /* min-height: 300px;
    max-height: 400px; */
    position: relative;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    
}

.banner-title {
    font-size: 1.5rem;
    color: white;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.banner-main-title {
    font-size: 3.5rem;
    color: white;
    font-weight: 700;
    margin: 0;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Quem Somos? bg: #f8f9fa */
.who-are-we-section {
    background: url("../img/background 2.png");
    
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;

    background-attachment: fixed;
    position: relative;
}

.who-are-we-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.who-are-we-image {
    width: 100%;
    margin-bottom: 0.75rem;
    object-fit: contain;
    border-radius: 15px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.who-are-we-text-content {
    padding-left: 2rem;
}

.who-are-we-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    transition: opacity 0.3s ease;
}

.who-are-we-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    transition: opacity 0.3s ease;
}


/* Footer */
.footer-section {
    background: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Modal Customizations */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.modal-header {
    border-bottom: 1px solid #eee;
    padding: 1.5rem;
}

.modal-title {
    font-weight: 600;
    color: #333;
}

.modal-subtitle {
    margin: 16px 0 16px 0;
}

.modal-body {
    padding: 2rem;
}

.modal-body img {
    border-radius: 10px;
}

.modal-body p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.modal-body strong {
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-text {
        font-size: 2.5rem;
    }

    .logo-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stay-updated-title {
        font-size: 2rem;
    }

    .offer-card {
        margin-bottom: 2rem;
    }

    .separator-image {
        background-attachment: scroll;
    }

    .stay-updated-bg {
        background-attachment: scroll;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

/* ------------ CSS MANUAL ------------ */
.float {
    right: 40px;
    position: fixed;
    height: 60px;
    bottom: 30px;
    z-index: 100;
}

#msg1 {
    background: #fff;
    color: #000;
    position: fixed;
    width: 130px;
    bottom: 55px;
    right: 90px;
    font-size: 14px;
    line-height: 13px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #e2e2e2;
    z-index: 100;
    visibility: hidden;
}

@media (max-width: 480px) {
    #msg1 {
      display: none !important;
    }
}

.footer_area {
    color: #fff;
    background-color: #6c7dbf !important;
}

.h_footer_dark {
    background: #010e28;
    padding: 100px 0px 45px;
}

.h_footer_dark .f_widget.about-widget .f_list li a,
.h_footer_dark .f_widget.company_widget p {
  color: #fff !important;
}

.f_social_icon a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 14px;
    line-height: 48px;
    color: #858da8;
    display: inline-block;
    background: #ebeef5;
    text-align: center;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    margin-bottom: 1rem;
}

.h_footer_dark .company_widget .f_social_icon a {
    background: transparent;
    font-size: 25px;
    color: #ffffff;
    border: 1px solid #ffffff;
}

footer {
    font: 400 15px / 28px "Poppins", sans-serif;
    letter-spacing: 0px;
    color: #677294;
    padding: 0px;
    overflow-x: hidden;
    z-index: 0;
}

/* .ti-facebook:before {
	content: "\e741";
}

.ti-instagram:before {
	content: "\e73d";
} */

#casesCarousel {
    height: 60vh;
}

#casesCarousel .carousel-inner {
    height: 100%;
}

#casesCarousel .carousel-item {
    height: 100%;
}

#casesCarousel .carousel-item img {
    object-fit: cover; /* ou contain, depende do efeito desejado */
    height: 100%;
    width: 100%;
}

#casesCarousel .carousel-item img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    background-color: black;
}


#academyCarousel {
    height: 60vh;
}

#academyCarousel .carousel-inner {
    height: 100%;
}

#academyCarousel .carousel-item {
    height: 100%;
}

#academyCarousel .carousel-item img {
    object-fit: cover; /* ou contain, depende do efeito desejado */
    height: 100%;
    width: 100%;
}

#academyCarousel .carousel-item img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    background-color: black;
}

/* .carousel-control-prev-icon {
    background-image: url('../img/seta 2.png');
}

.carousel-control-next-icon {
    background-image: url('../img/seta 1.png');
} */


.list-group {
    margin: 0 0 16px 0;
}

.servicenow-icons {
    max-width: 60px;
}

.dividing-section {
    height: 100px;
    align-content: center;
}

.footer-social-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    margin: 0 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-social-icon:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.6);
    color: white;
    transform: translateY(-5px);
}

.contatos a {
    text-decoration: none;
    outline: none;
}

#serviceNow {
    text-align: center;
}

#serviceNowCarousel {
    height: 60vh;
}

#serviceNowCarousel .carousel-inner {
    height: 100%;
}

#serviceNowCarousel .carousel-item {
    height: 100%;
}

#serviceNowCarousel .carousel-item img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    background-color: black;
}

/* Button Styles */
.btn-primary {
    background-color: #6C7DBF;
    border-color: #6372af;
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #5167be;
    transform: translateY(-2px);
}

.btn-primary:active {
    background-color: #566dcd;
    transform: translateY(0);
}

#hero-offers {
    text-align: center;
}

.section-headers {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 0;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 -10px 15px rgba(0, 0, 0, 0.1); /* Shadow above and below */
}

#serviceNow-carousel-header h2 {
    color: #ffffff; /* Ensure text is visible */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Slight text shadow for better visibility */
}

#serviceNow-carousel-header {
    background: #032D42; /* ServiceNow theme color */
    color: white;
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 0;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3), 0 -10px 15px rgba(0, 0, 0, 0.3); /* Shadow above and below */
}

#serviceNow-carousel-header h2 {
    color: #ffffff; /* Ensure text is visible */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Slight text shadow for better visibility */
}

.dark-background {
    color: #fff;
}