/* ====================================
   HEADER STYLES
   ==================================== */

/* Top Bar */
.top-bar {
    background-color: #1e3a8a;
    padding: 8px 0;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
}

.top-bar-link {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.top-bar-link:hover {
    color: #ffffff;
    opacity: 0.8;
}

.top-bar-link i {
    margin-right: 5px;
}

.btn-corretor {
    background-color: #00d4d4;
    color: #1e3a8a;
    font-weight: 600;
    padding: 6px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-corretor:hover {
    background-color: #00b8b8;
    color: #1e3a8a;
    transform: translateY(-1px);
}

/* Main Header */
.main-header {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 42px;
    left: 0;
    width: 100%;
    z-index: 1020;
    transition: all 0.3s ease;
}

.logo-img {
    height: 50px;
    width: auto;
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: #1e3a8a !important;
    font-weight: 500;
    padding: 10px 18px !important;
    transition: all 0.3s ease;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

/* Dropdown Menu */
.dropdown-menu {
    background-color: #2563eb;
    border: none;
    border-radius: 4px;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dropdown-item {
    color: #ffffff;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Navbar Toggler */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .top-bar {
        text-align: center;
    }
    
    .top-bar .d-flex {
        justify-content: center !important;
        flex-wrap: wrap;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .navbar-nav {
        padding-top: 15px;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 16px !important;
        text-align: left;
    }
    
    .dropdown-menu {
        background-color: rgba(37, 99, 235, 0.95);
    }
}

@media (max-width: 576px) {
    .top-bar {
        font-size: 12px;
        padding: 6px 0;
    }
    
    .btn-corretor {
        padding: 5px 16px;
        font-size: 12px;
        margin-top: 8px;
    }
    
    .logo-img {
        height: 35px;
    }
}

/* ====================================
   HERO CAROUSEL STYLES
   ==================================== */

.hero-carousel-section {
    position: relative;
    width: 100%;
}

.carousel-background {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
}

/* .carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(30, 58, 138, 0.95) 0%, 
        rgba(59, 130, 246, 0.9) 40%, 
        rgba(99, 102, 241, 0.85) 60%, 
        rgba(0, 212, 212, 0.8) 100%);
} */

.min-vh-60 {
    min-height: 60vh;
}

.carousel-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}

.carousel-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-highlight {
    font-weight: 700;
    display: block;
}

.carousel-text {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
}

.carousel-text strong {
    font-weight: 600;
}

.btn-carousel {
    background-color: #00d4d4;
    color: #1e3a8a;
    font-weight: 600;
    padding: 12px 36px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 16px;
    border: none;
}

.btn-carousel:hover {
    background-color: #00b8b8;
    color: #1e3a8a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 212, 212, 0.4);
}

.carousel-image-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Custom Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    opacity: 1;
}

.carousel-control-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-control-icon i {
    font-size: 30px;
    color: #ffffff;
}

.carousel-control-prev:hover .carousel-control-icon,
.carousel-control-next:hover .carousel-control-icon {
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Custom Carousel Indicators */
.carousel-indicators {
    margin-bottom: 2rem;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: #00d4d4;
    width: 30px;
    border-radius: 6px;
}

/* Responsive Carousel */
@media (max-width: 991px) {
    .carousel-background {
        min-height: 400px;
    }
    
    .min-vh-60 {
        min-height: 50vh;
    }
    
    .carousel-title {
        font-size: 2rem;
    }
    
    .carousel-text {
        font-size: 1rem;
    }
    
    .carousel-content {
        padding: 30px 15px;
        text-align: center;
    }
    .carousel-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, 
        rgba(30, 58, 138, 0.95) 0%, 
        rgba(59, 130, 246, 0.9) 40%, 
        rgba(99, 102, 241, 0.85) 60%, 
        rgba(0, 212, 212, 0.8) 100%);
    }
}

@media (max-width: 768px) {
    .carousel-background {
        min-height: 350px;
    }
    
    .carousel-title {
        font-size: 1.75rem;
    }
    
    .carousel-text {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .btn-carousel {
        padding: 10px 28px;
        font-size: 14px;
    }
    
    .carousel-control-icon {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-icon i {
        font-size: 24px;
    }
    .carousel-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, 
            rgba(30, 58, 138, 0.95) 0%, 
            rgba(59, 130, 246, 0.9) 40%, 
            rgba(99, 102, 241, 0.85) 60%, 
            rgba(0, 212, 212, 0.8) 100%);
    }
}

@media (max-width: 576px) {
    .carousel-background {
        min-height: 300px;
    }
    
    .min-vh-60 {
        min-height: 40vh;
    }
    
    .carousel-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .carousel-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .btn-carousel {
        padding: 10px 24px;
        font-size: 13px;
    }
    
    .carousel-content {
        padding: 20px 10px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
    }
}

/* ====================================
   QUICK LINKS SECTION
   ==================================== */

.quick-links-section {
    background-color: #2c4a8d;
    padding: 40px 0;
    margin-top: -5px;
}

.quick-links-title-box {
    background-color: #2CB4B3;
    padding: 25px 20px;
    text-align: center;
    border-radius: 8px;
}

.quick-links-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.3;
}

.quick-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 30px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: transparent;
    min-height: 150px;
    position: relative;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-link-card:hover::before {
    opacity: 1;
}

.quick-link-card:hover {
    transform: translateY(-8px);
}

/* .quick-link-featured {
    background-color: #2CB4B3;
}

.quick-link-featured::before {
    background-color: rgba(255, 255, 255, 0.15);
} */

.quick-link-icon {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.quick-link-icon i {
    font-size: 3.5rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.quick-link-card:hover .quick-link-icon i {
    transform: scale(1.15);
}

.quick-link-text {
    color: #ffffff;
    font-size: 0.95rem;
    margin: 0;
    text-align: center;
    line-height: 1.3;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* Responsive Quick Links */
@media (max-width: 991px) {
    .quick-links-title-box {
        margin: 0 auto;
        max-width: 200px;
    }
    
    .quick-link-card {
        min-height: 130px;
        padding: 20px 10px;
    }
    
    .quick-link-icon i {
        font-size: 2.8rem;
    }
    
    .quick-link-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .quick-links-section {
        padding: 30px 0;
    }
    
    .quick-links-title-box {
        padding: 20px 15px;
    }
    
    .quick-links-title {
        font-size: 1.3rem;
    }
    
    .quick-link-card {
        min-height: 120px;
        padding: 20px 8px;
    }
    
    .quick-link-icon i {
        font-size: 2.5rem;
    }
    
    .quick-link-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .quick-link-card {
        min-height: 110px;
        padding: 15px 8px;
    }
    
    .quick-link-icon i {
        font-size: 2.2rem;
    }
    
    .quick-link-icon {
        margin-bottom: 10px;
    }
    
    .quick-link-text {
        font-size: 0.75rem;
    }
}

/* ====================================
   ABOUT SECTION
   ==================================== */

.about-section {
    background-color: #f5f7fa;
    padding: 80px 0;
}

.about-title-wrapper {
    text-align: left;
}

.about-title {
    color: #2CB4B3;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.2;
}

.about-title-line {
    width: 150px;
    height: 3px;
    background-color: #2c4a8d;
    margin-top: 10px;
}

.about-content {
    padding-left: 30px;
}

.about-text {
    color: #2c4a8d;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}

.btn-about {
    background-color: #2CB4B3;
    color: #ffffff;
    font-weight: 500;
    padding: 12px 40px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 16px;
    margin-top: 10px;
}

.btn-about:hover {
    background-color: #24a09f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 180, 179, 0.3);
}

/* Responsive About Section */
@media (max-width: 991px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .about-title-wrapper {
        text-align: center;
    }
    
    .about-title-line {
        margin: 10px auto 0;
    }
    
    .about-content {
        padding-left: 0;
        text-align: center;
    }
    
    .about-text {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-title-line {
        width: 120px;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .btn-about {
        padding: 10px 32px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-title {
        font-size: 1.75rem;
    }
    
    .about-title-line {
        width: 100px;
        height: 2px;
    }
    
    .about-text {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }
    
    .btn-about {
        padding: 10px 28px;
        font-size: 14px;
    }
}

/* ====================================
   PARTNERS SECTION
   ==================================== */

.partners-section {
    background-color: #e8eaed;
    padding: 80px 0;
}

.partners-title-box {
    background-color: #2c4a8d;
    padding: 25px 40px;
    text-align: center;
    border-radius: 8px;
    max-width: 300px;
    margin: 0 auto 60px;
    box-shadow: 0 4px 15px rgba(44, 74, 141, 0.3);
}

.partners-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.3;
}

.partners-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.partners-logo {
    transition: all 0.3s ease;
}

.partners-logo img {
    max-width: 250px;
    height: auto;
    filter: grayscale(0%);
    transition: all 0.3s ease;
}

.partners-logo:hover {
    transform: translateY(-10px);
}

.partners-logo:hover img {
    filter: grayscale(0%) brightness(1.1);
}

/* Responsive Partners Section */
@media (max-width: 991px) {
    .partners-section {
        padding: 60px 0;
    }
    
    .partners-title-box {
        max-width: 250px;
        margin-bottom: 50px;
    }
    
    .partners-title {
        font-size: 1.75rem;
    }
    
    .partners-container {
        gap: 60px;
    }
    
    .partners-logo img {
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 50px 0;
    }
    
    .partners-title-box {
        padding: 20px 30px;
        margin-bottom: 40px;
    }
    
    .partners-title {
        font-size: 1.5rem;
    }
    
    .partners-container {
        gap: 40px;
    }
    
    .partners-logo img {
        max-width: 180px;
    }
}

@media (max-width: 576px) {
    .partners-section {
        padding: 40px 0;
    }
    
    .partners-title-box {
        max-width: 200px;
        padding: 18px 25px;
        margin-bottom: 35px;
    }
    
    .partners-title {
        font-size: 1.3rem;
    }
    
    .partners-container {
        gap: 30px;
    }
    
    .partners-logo img {
        max-width: 150px;
    }
}

/* ====================================
   BROKER SECTION
   ==================================== */

.broker-section {
    min-height: 100vh;
}

.broker-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    position: relative;
}

.broker-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.broker-content {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.broker-content-wrapper {
    max-width: 600px;
    padding: 0 60px;
}

.broker-title {
    color: #2CB4B3;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.2;
}

.broker-title-underline {
    width: 150px;
    height: 3px;
    background-color: #2CB4B3;
    margin-bottom: 30px;
}

.broker-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.broker-benefits {
    margin-top: 40px;
    padding: 40px;
    background-color: #2c4a8d;
    border-radius: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.benefit-icon {
    min-width: 50px;
    width: 50px;
    height: 50px;
    background-color: rgba(44, 180, 179, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-icon i {
    font-size: 24px;
    color: #2CB4B3;
}

.benefit-item:hover .benefit-icon {
    background-color: #2CB4B3;
    transform: scale(1.1);
}

.benefit-item:hover .benefit-icon i {
    color: #ffffff;
}

.benefit-text {
    color: #ffffff;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Responsive Broker Section */
@media (max-width: 991px) {
    .broker-image {
        min-height: 400px;
    }
    
    .broker-content-wrapper {
        padding: 0 40px;
    }
    
    .broker-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .broker-title-underline {
        margin: 15px auto 25px;
    }
    
    .broker-text {
        font-size: 1rem;
        text-align: center;
    }
    
    .broker-benefits {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .broker-section {
        min-height: auto;
    }
    
    .broker-image {
        min-height: 300px;
    }
    
    .broker-content {
        padding: 40px 0;
    }
    
    .broker-content-wrapper {
        padding: 0 30px;
    }
    
    .broker-title {
        font-size: 1.75rem;
    }
    
    .broker-title-underline {
        width: 120px;
    }
    
    .broker-text {
        font-size: 0.95rem;
    }
    
    .broker-benefits {
        margin-top: 30px;
        padding: 25px 15px;
    }
    
    .benefit-icon {
        min-width: 45px;
        width: 45px;
        height: 45px;
    }
    
    .benefit-icon i {
        font-size: 20px;
    }
    
    .benefit-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .broker-image {
        min-height: 250px;
    }
    
    .broker-content {
        padding: 30px 0;
    }
    
    .broker-content-wrapper {
        padding: 0 20px;
    }
    
    .broker-title {
        font-size: 1.5rem;
    }
    
    .broker-title-underline {
        width: 100px;
        height: 2px;
    }
    
    .broker-text {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .broker-benefits {
        padding: 20px 15px;
    }
    
    .benefit-item {
        gap: 15px;
    }
    
    .benefit-icon {
        min-width: 40px;
        width: 40px;
        height: 40px;
    }
    
    .benefit-icon i {
        font-size: 18px;
    }
    
    .benefit-text {
        font-size: 0.85rem;
    }
}

/* ====================================
   HERO ABOUT SECTION (SOBRE)
   ==================================== */

.hero-about-section {
    min-height: 100vh;
}

.hero-about-content {
    background: linear-gradient(135deg, #1e3a8a 0%, #2c4a8d 50%, #3d5a9e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    position: relative;
}

.hero-about-box {
    max-width: 600px;
    padding: 60px;
    background-color: rgba(30, 58, 138, 0.8);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-about-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin: 0;
    font-weight: 300;
}

.text-cyan {
    color: #2CB4B3;
}

.text-white {
    color: #ffffff;
    font-weight: 300;
}

.text-white-bold {
    color: #ffffff;
    font-weight: 700;
}

.hero-about-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    position: relative;
}

.hero-about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(30, 58, 138, 0.3) 0%, transparent 50%);
}

/* Responsive Hero About Section */
@media (max-width: 991px) {
    .hero-about-section {
        min-height: auto;
    }
    
    .hero-about-content {
        padding: 60px 30px;
        order: 2;
    }
    
    .hero-about-image {
        order: 1;
        min-height: 400px;
    }
    
    .hero-about-box {
        padding: 40px;
    }
    
    .hero-about-title {
        font-size: 2.5rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-about-content {
        padding: 50px 20px;
    }
    
    .hero-about-image {
        min-height: 350px;
    }
    
    .hero-about-box {
        padding: 30px;
    }
    
    .hero-about-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-about-content {
        padding: 40px 15px;
    }
    
    .hero-about-image {
        min-height: 300px;
    }
    
    .hero-about-box {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .hero-about-title {
        font-size: 1.75rem;
    }
}

/* ====================================
   DIFFERENTIALS SECTION
   ==================================== */

.differentials-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.differentials-main-title {
    color: #2CB4B3;
    font-size: 3.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
}

.differential-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.differential-icon-wrapper {
    flex-shrink: 0;
}

.differential-icon {
    width: 80px;
    height: 80px;
    background-color: #2CB4B3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.differential-icon i {
    font-size: 40px;
    color: #ffffff;
}

.differential-item:hover .differential-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(44, 180, 179, 0.4);
}

.differential-content {
    flex: 1;
}

.differential-title {
    color: #2c4a8d;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 15px;
}

.title-highlight {
    color: #2c4a8d;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #2c4a8d;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.differential-text {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Differentials Section */
@media (max-width: 991px) {
    .differentials-section {
        padding: 60px 0;
    }
    
    .differentials-main-title {
        font-size: 2.8rem;
        margin-bottom: 50px;
    }
    
    .differential-item {
        gap: 25px;
    }
    
    .differential-icon {
        width: 70px;
        height: 70px;
    }
    
    .differential-icon i {
        font-size: 35px;
    }
    
    .differential-title {
        font-size: 1.35rem;
    }
    
    .differential-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .differentials-section {
        padding: 50px 0;
    }
    
    .differentials-main-title {
        font-size: 2.3rem;
        margin-bottom: 40px;
    }
    
    .differential-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .differential-icon {
        width: 65px;
        height: 65px;
    }
    
    .differential-icon i {
        font-size: 32px;
    }
    
    .differential-title {
        font-size: 1.25rem;
    }
    
    .differential-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .differentials-section {
        padding: 40px 0;
    }
    
    .differentials-main-title {
        font-size: 2rem;
        margin-bottom: 35px;
    }
    
    .differential-icon {
        width: 60px;
        height: 60px;
    }
    
    .differential-icon i {
        font-size: 28px;
    }
    
    .differential-title {
        font-size: 1.15rem;
    }
    
    .differential-text {
        font-size: 0.9rem;
    }
}

/* ====================================
   PRIORITY SECTION
   ==================================== */

.priority-section {
    background: linear-gradient(135deg, #3d5aa8 0%, #4a6ab5 40%, #5a8fc7 70%, #2CB4B3 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.priority-content {
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 600px;
}

.priority-box {
    background-color: rgba(30, 58, 138, 0.85);
    padding: 35px 45px;
    border-radius: 8px;
    max-width: 420px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.priority-box-title {
    color: #ffffff;
    font-size: 2.3rem;
    font-weight: 300;
    line-height: 1.3;
    margin: 0;
}

.priority-text-wrapper {
    max-width: 420px;
}

.priority-text {
    color: #ffffff;
    font-size: 1.7rem;
    font-weight: 300;
    line-height: 1.4;
    margin: 0;
}

.priority-text strong {
    font-weight: 700;
}

.priority-image-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    min-height: 600px;
    padding: 0;
}

.priority-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
}

/* Responsive Priority Section */
@media (max-width: 991px) {
    .priority-section {
        min-height: 500px;
    }
    
    .priority-content {
        text-align: center;
        padding: 60px 20px;
        margin-bottom: 0;
        min-height: auto;
    }
    
    .priority-box {
        margin: 0 auto 30px;
        padding: 30px 40px;
    }
    
    .priority-box-title {
        font-size: 2rem;
    }
    
    .priority-text-wrapper {
        margin: 0 auto;
    }
    
    .priority-text {
        font-size: 1.5rem;
    }
    
    .priority-image-wrapper {
        justify-content: center;
        margin-top: 30px;
        min-height: 400px;
    }
    
    .priority-image {
        max-width: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .priority-section {
        min-height: 450px;
    }
    
    .priority-content {
        padding: 50px 20px;
    }
    
    .priority-box {
        padding: 25px 30px;
        max-width: 350px;
    }
    
    .priority-box-title {
        font-size: 1.75rem;
    }
    
    .priority-text {
        font-size: 1.3rem;
    }
    
    .priority-image-wrapper {
        min-height: 350px;
    }
    
    .priority-image {
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    .priority-section {
        min-height: 400px;
    }
    
    .priority-content {
        padding: 40px 20px;
    }
    
    .priority-box {
        padding: 20px 25px;
        max-width: 300px;
    }
    
    .priority-box-title {
        font-size: 1.5rem;
    }
    
    .priority-text {
        font-size: 1.1rem;
    }
    
    .priority-image-wrapper {
        min-height: 300px;
    }
    
    .priority-image {
        max-width: 100%;
    }
}

/* ====================================
   HERO ATENDIMENTO SECTION
   ==================================== */

.hero-atendimento-section {
    background-image: url('../assets/img/pexels-fauxels-3184291-scaled.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 0;
}

.hero-atendimento-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.75);
}

.hero-atendimento-section .container {
    position: relative;
    z-index: 2;
}

.atendimento-title-box {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-left: 5px solid #2CB4B3;
}

.atendimento-title {
    color: #2CB4B3;
    font-size: 2.5rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}

/* Responsive Hero Atendimento Section */
@media (max-width: 991px) {
    .hero-atendimento-section {
        min-height: 400px;
        padding: 80px 0;
    }
    
    .atendimento-title-box {
        padding: 25px 40px;
    }
    
    .atendimento-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-atendimento-section {
        min-height: 350px;
        padding: 60px 0;
    }
    
    .atendimento-title-box {
        padding: 20px 30px;
    }
    
    .atendimento-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .hero-atendimento-section {
        min-height: 300px;
        padding: 50px 0;
    }
    
    .atendimento-title-box {
        padding: 20px 25px;
    }
    
    .atendimento-title {
        font-size: 1.5rem;
    }
}

/* ====================================
   CONTACT SECTION
   ==================================== */

.contact-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.contact-info {
    padding: 40px 0;
}

.contact-info-title {
    color: #2CB4B3;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.3;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    color: #2c4a8d;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #2c4a8d;
    min-width: 30px;
}

.contact-form-wrapper {
    background-color: #3d4054;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.contact-form-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact-form-subtitle {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.contact-input {
    background-color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 15px;
    font-size: 1rem;
    color: #333;
}

.contact-input:focus {
    border-color: #2CB4B3;
    box-shadow: 0 0 0 0.2rem rgba(44, 180, 179, 0.25);
}

.contact-textarea {
    resize: vertical;
    min-height: 120px;
}

.privacy-label {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.5;
}

.form-check-input:checked {
    background-color: #2CB4B3;
    border-color: #2CB4B3;
}

.btn-submit-contact {
    background-color: #2CB4B3;
    color: #ffffff;
    font-weight: 600;
    padding: 15px 60px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit-contact:hover {
    background-color: #24a09f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 180, 179, 0.4);
}

.btn-submit-contact:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Contact Section */
@media (max-width: 991px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info {
        padding: 20px 0 40px;
        text-align: center;
    }
    
    .contact-info-title {
        font-size: 2rem;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .contact-form-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-info-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }
    
    .contact-item {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
    }
    
    .contact-form-title {
        font-size: 1.75rem;
    }
    
    .contact-form-subtitle {
        font-size: 1rem;
    }
    
    .btn-submit-contact {
        padding: 12px 40px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-info {
        padding: 20px 0 30px;
    }
    
    .contact-info-title {
        font-size: 1.5rem;
    }
    
    .contact-item {
        font-size: 0.95rem;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .contact-form-title {
        font-size: 1.5rem;
    }
    
    .btn-submit-contact {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* ====================================
   FAQ SECTION
   ==================================== */

.faq-section {
    background-image: url('../assets/img/fundosessaofaq.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-badge {
    background-color: #2CB4B3;
    color: #ffffff;
    display: inline-block;
    padding: 10px 40px;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-main-title {
    color: #2c4a8d;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.faq-subtitle {
    color: #555;
    font-size: 1.2rem;
    font-weight: 300;
    margin: 0;
}

.faq-accordion {
    margin-top: 40px;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.faq-item .accordion-button {
    background-color: transparent;
    color: #2c4a8d;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 20px 30px;
    border: none;
    box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #2CB4B3;
    box-shadow: none;
}

.faq-item .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c4a8d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1.5rem;
    height: 1.5rem;
}

.faq-item .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232CB4B3'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-item .accordion-body {
    padding: 20px 30px 30px;
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    background-color: transparent;
}

/* Responsive FAQ Section */
@media (max-width: 991px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-main-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-item .accordion-button {
        font-size: 1rem;
        padding: 18px 25px;
    }
    
    .faq-item .accordion-body {
        padding: 18px 25px 25px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-badge {
        padding: 8px 30px;
        font-size: 1rem;
    }
    
    .faq-main-title {
        font-size: 1.75rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-item .accordion-button {
        font-size: 0.95rem;
        padding: 15px 20px;
    }
    
    .faq-item .accordion-body {
        padding: 15px 20px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-badge {
        padding: 8px 25px;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .faq-main-title {
        font-size: 1.5rem;
    }
    
    .faq-subtitle {
        font-size: 0.95rem;
    }
    
    .faq-item {
        margin-bottom: 15px;
    }
    
    .faq-item .accordion-button {
        font-size: 0.9rem;
        padding: 15px;
    }
    
    .faq-item .accordion-body {
        padding: 15px;
        font-size: 0.9rem;
    }
}

/* ====================================
   PLANOS HERO SECTION
   ==================================== */

.planos-hero-section {
    background: linear-gradient(135deg, #3d5aa8 0%, #4a6ab5 40%, #5a8fc7 70%, #2CB4B3 100%);
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.planos-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 60px;
    min-height: 600px;
}

.planos-hero-box {
    background-color: rgba(30, 58, 138, 0.85);
    padding: 35px 45px;
    border-radius: 8px;
    max-width: 500px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.planos-hero-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.3;
    margin: 0;
}

.planos-hero-text-wrapper {
    max-width: 500px;
}

.planos-hero-text {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.4;
    margin: 0;
}

.planos-hero-text strong {
    font-weight: 700;
}

.planos-hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-height: 600px;
}

.planos-hero-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive Planos Hero Section */
@media (max-width: 991px) {
    .planos-hero-section {
        min-height: auto;
    }
    
    .planos-hero-content {
        text-align: center;
        align-items: center;
        padding: 60px 40px;
        min-height: auto;
    }
    
    .planos-hero-box {
        margin: 0 auto 30px;
        padding: 30px 40px;
    }
    
    .planos-hero-title {
        font-size: 2rem;
    }
    
    .planos-hero-text-wrapper {
        margin: 0 auto;
    }
    
    .planos-hero-text {
        font-size: 1.5rem;
    }
    
    .planos-hero-image-wrapper {
        min-height: 400px;
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .planos-hero-content {
        padding: 50px 30px;
    }
    
    .planos-hero-box {
        padding: 25px 30px;
        max-width: 400px;
    }
    
    .planos-hero-title {
        font-size: 1.75rem;
    }
    
    .planos-hero-text {
        font-size: 1.3rem;
    }
    
    .planos-hero-image-wrapper {
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .planos-hero-content {
        padding: 40px 20px;
    }
    
    .planos-hero-box {
        padding: 20px 25px;
        max-width: 320px;
    }
    
    .planos-hero-title {
        font-size: 1.5rem;
    }
    
    .planos-hero-text {
        font-size: 1.1rem;
    }
    
    .planos-hero-image-wrapper {
        min-height: 300px;
        padding: 30px 15px;
    }
}

/* ====================================
   ENTIDADES SECTION
   ==================================== */

.entidades-section {
    min-height: 500px;
}

.entidades-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
}

.entidades-content {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 80px;
    min-height: 500px;
}

.entidades-box {
    background-color: #2c4a8d;
    padding: 25px 40px;
    border-radius: 0;
    margin-bottom: 30px;
    display: inline-block;
}

.entidades-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.entidades-text {
    color: #666;
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
}

.entidades-text strong {
    font-weight: 700;
    color: #2c4a8d;
}

/* Responsive Entidades Section */
@media (max-width: 991px) {
    .entidades-section {
        min-height: auto;
    }
    
    .entidades-image {
        min-height: 400px;
        order: 1;
    }
    
    .entidades-content {
        padding: 50px 40px;
        align-items: center;
        text-align: center;
        order: 2;
        min-height: auto;
    }
    
    .entidades-box {
        margin: 0 auto 25px;
    }
    
    .entidades-title {
        font-size: 2rem;
    }
    
    .entidades-text {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .entidades-image {
        min-height: 350px;
    }
    
    .entidades-content {
        padding: 40px 30px;
    }
    
    .entidades-box {
        padding: 20px 30px;
    }
    
    .entidades-title {
        font-size: 1.75rem;
    }
    
    .entidades-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .entidades-image {
        min-height: 300px;
    }
    
    .entidades-content {
        padding: 30px 20px;
    }
    
    .entidades-box {
        padding: 18px 25px;
    }
    
    .entidades-title {
        font-size: 1.5rem;
    }
    
    .entidades-text {
        font-size: 0.95rem;
    }
}

/* ====================================
   PARA VOCÊ SECTION
   ==================================== */

.para-voce-section {
    min-height: 500px;
    background-color: #f8f9fa;
}

.para-voce-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 80px;
    min-height: 500px;
}

.para-voce-box {
    background-color: #2c4a8d;
    padding: 25px 40px;
    border-radius: 0;
    margin-bottom: 30px;
    display: inline-block;
}

.para-voce-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.para-voce-text {
    color: #666;
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
}

.para-voce-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    min-height: 500px;
}

.para-voce-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive Para Você Section */
@media (max-width: 991px) {
    .para-voce-section {
        min-height: auto;
    }
    
    .para-voce-content {
        padding: 50px 40px;
        align-items: center;
        text-align: center;
        min-height: auto;
        order: 2;
    }
    
    .para-voce-box {
        margin: 0 auto 25px;
    }
    
    .para-voce-title {
        font-size: 2rem;
    }
    
    .para-voce-text {
        font-size: 1.05rem;
    }
    
    .para-voce-image-wrapper {
        min-height: 400px;
        padding: 40px 20px;
        order: 1;
    }
}

@media (max-width: 768px) {
    .para-voce-content {
        padding: 40px 30px;
    }
    
    .para-voce-box {
        padding: 20px 30px;
    }
    
    .para-voce-title {
        font-size: 1.75rem;
    }
    
    .para-voce-text {
        font-size: 1rem;
    }
    
    .para-voce-image-wrapper {
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .para-voce-content {
        padding: 30px 20px;
    }
    
    .para-voce-box {
        padding: 18px 25px;
    }
    
    .para-voce-title {
        font-size: 1.5rem;
    }
    
    .para-voce-text {
        font-size: 0.95rem;
    }
    
    .para-voce-image-wrapper {
        min-height: 300px;
        padding: 30px 15px;
    }
}

/* ====================================
   CTA PLANOS SECTION
   ==================================== */

.cta-planos-section {
    background-color: #2c4a8d;
    padding: 80px 0;
}

.cta-planos-question {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 20px;
}

.cta-planos-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.btn-whatsapp-cta {
    background-color: #25D366;
    color: #ffffff;
    font-weight: 600;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-cta i {
    font-size: 1.5rem;
}

.btn-whatsapp-cta:hover {
    background-color: #20BA5A;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Responsive CTA Planos Section */
@media (max-width: 991px) {
    .cta-planos-section {
        padding: 60px 0;
    }
    
    .cta-planos-question {
        font-size: 1.75rem;
    }
    
    .cta-planos-title {
        font-size: 2rem;
        margin-bottom: 35px;
    }
    
    .btn-whatsapp-cta {
        padding: 16px 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .cta-planos-section {
        padding: 50px 0;
    }
    
    .cta-planos-question {
        font-size: 1.5rem;
    }
    
    .cta-planos-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }
    
    .btn-whatsapp-cta {
        padding: 14px 40px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .cta-planos-section {
        padding: 40px 0;
    }
    
    .cta-planos-question {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }
    
    .cta-planos-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .btn-whatsapp-cta {
        padding: 12px 35px;
        font-size: 0.95rem;
    }
    
    .btn-whatsapp-cta i {
        font-size: 1.3rem;
    }
}

/* ====================================
   REDE CREDENCIADA HERO SECTION
   ==================================== */

.rede-credenciada-hero-section {
    background: linear-gradient(135deg, #2CB4B3 0%, #3d9b9a 30%, #2c6e8d 70%, #2c4a8d 100%);
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.rede-credenciada-badge {
    background-color: #ffffff;
    color: #2CB4B3;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.rede-credenciada-title {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.4;
    margin: 0;
}

.rede-credenciada-image-wrapper {
    background-color: rgba(61, 90, 168, 0.5);
    padding: 40px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rede-credenciada-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive Rede Credenciada Hero Section */
@media (max-width: 991px) {
    .rede-credenciada-hero-section {
        padding: 80px 0;
        min-height: auto;
    }
    
    .rede-credenciada-badge {
        padding: 10px 35px;
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .rede-credenciada-title {
        font-size: 1.9rem;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .rede-credenciada-image-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .rede-credenciada-hero-section {
        padding: 60px 0;
    }
    
    .rede-credenciada-badge {
        padding: 10px 30px;
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .rede-credenciada-title {
        font-size: 1.6rem;
    }
    
    .rede-credenciada-image-wrapper {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .rede-credenciada-hero-section {
        padding: 50px 0;
    }
    
    .rede-credenciada-badge {
        padding: 8px 25px;
        font-size: 0.95rem;
    }
    
    .rede-credenciada-title {
        font-size: 1.4rem;
    }
    
    .rede-credenciada-image-wrapper {
        padding: 20px;
    }
}

/* ====================================
   OPERADORAS SECTION
   ==================================== */

.operadoras-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.operadoras-main-title {
    color: #2CB4B3;
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.operadoras-subtitle {
    color: #666;
    font-size: 1.1rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.6;
}

.operadora-card {
    display: block;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.operadora-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.operadora-logo {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
}

/* Responsive Operadoras Section */
@media (max-width: 991px) {
    .operadoras-section {
        padding: 60px 0;
    }
    
    .operadoras-main-title {
        font-size: 2.5rem;
    }
    
    .operadoras-subtitle {
        font-size: 1rem;
        margin-bottom: 50px;
    }
    
    .operadora-card {
        padding: 50px 30px;
        min-height: 220px;
    }
}

@media (max-width: 768px) {
    .operadoras-section {
        padding: 50px 0;
    }
    
    .operadoras-main-title {
        font-size: 2rem;
    }
    
    .operadoras-subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }
    
    .operadora-card {
        padding: 40px 25px;
        min-height: 200px;
    }
    
    .operadora-logo {
        max-height: 100px;
    }
}

@media (max-width: 576px) {
    .operadoras-section {
        padding: 40px 0;
    }
    
    .operadoras-main-title {
        font-size: 1.75rem;
    }
    
    .operadoras-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .operadora-card {
        padding: 30px 20px;
        min-height: 180px;
    }
    
    .operadora-logo {
        max-height: 80px;
    }
}

/* ====================================
   PORTAL FEATURES SECTION
   ==================================== */

.portal-features-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.portal-features-title {
    color: #2c4a8d;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.portal-features-subtitle {
    color: #333333;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 40px;
}

.portal-screenshot-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.portal-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

.portal-description {
    max-width: 800px;
    margin: 0 auto;
}

.portal-description p {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.8;
}

.feature-module-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 40px 30px;
    height: 100%;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.feature-module-card:hover {
    border-color: #2CB4B3;
    box-shadow: 0 4px 15px rgba(44, 180, 179, 0.2);
}

.feature-module-title {
    color: #2c4a8d;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #2CB4B3;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    color: #333333;
    font-size: 1rem;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-left: 25px;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: "•";
    color: #2CB4B3;
    font-size: 1.5rem;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

/* Responsive Portal Features Section */
@media (max-width: 991px) {
    .portal-features-section {
        padding: 60px 0;
    }
    
    .portal-features-title {
        font-size: 2rem;
    }
    
    .portal-features-subtitle {
        font-size: 1rem;
    }
    
    .portal-description p {
        font-size: 1rem;
    }
    
    .feature-module-card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .portal-features-section {
        padding: 50px 0;
    }
    
    .portal-features-title {
        font-size: 1.75rem;
    }
    
    .portal-features-subtitle {
        font-size: 0.95rem;
    }
    
    .portal-description p {
        font-size: 0.95rem;
    }
    
    .feature-module-title {
        font-size: 1.3rem;
    }
    
    .feature-list li {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .portal-features-section {
        padding: 40px 0;
    }
    
    .portal-features-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .portal-features-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .portal-description p {
        font-size: 0.9rem;
    }
    
    .feature-module-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .feature-module-title {
        font-size: 1.2rem;
    }
    
    .feature-list li {
        font-size: 0.9rem;
        padding: 10px 0 10px 20px;
    }
}

/* ====================================
   TUTORIAL STEPS SECTION
   ==================================== */

.tutorial-steps-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.steps-main-title {
    color: #2c4a8d;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.step-item {
    margin-bottom: 80px;
    position: relative;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #2c4a8d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
}

.step-text {
    flex: 1;
}

.step-instruction {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c4a8d;
    margin-bottom: 15px;
}

.step-link {
    font-size: 1rem;
    font-weight: 600;
    color: #2CB4B3;
    margin-bottom: 15px;
    word-break: break-all;
}

.step-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.step-description strong {
    color: #2c4a8d;
    font-weight: 600;
}

.step-image-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.step-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Tutorial Steps Section */
@media (max-width: 991px) {
    .tutorial-steps-section {
        padding: 60px 0;
    }
    
    .steps-main-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .step-item {
        margin-bottom: 60px;
    }
    
    .step-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .step-number {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .tutorial-steps-section {
        padding: 50px 0;
    }
    
    .steps-main-title {
        font-size: 1.75rem;
    }
    
    .step-item {
        margin-bottom: 50px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .step-instruction {
        font-size: 1.1rem;
    }
    
    .step-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .tutorial-steps-section {
        padding: 40px 0;
    }
    
    .steps-main-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .step-item {
        margin-bottom: 40px;
    }
    
    .step-content {
        gap: 20px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
}

/* ====================================
   FORGOT PASSWORD SECTION
   ==================================== */

.forgot-password-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.forgot-password-title {
    color: #2c4a8d;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.forgot-instructions {
    max-width: 900px;
    margin: 0 auto;
}

.instruction-item {
    font-size: 1rem;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.instruction-item strong {
    color: #2c4a8d;
    font-weight: 700;
    margin-right: 5px;
}

.instruction-link {
    color: #2CB4B3;
    font-weight: 600;
    text-decoration: none;
}

.instruction-link:hover {
    text-decoration: underline;
}

.forgot-step-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.forgot-step-card:hover {
    transform: translateY(-5px);
}

.forgot-step-number {
    width: 60px;
    height: 60px;
    background-color: #2c4a8d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.forgot-step-image-wrapper {
    border-radius: 8px;
    overflow: hidden;
}

.forgot-step-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Forgot Password Section */
@media (max-width: 991px) {
    .forgot-password-section {
        padding: 60px 0;
    }
    
    .forgot-password-title {
        font-size: 2rem;
    }
    
    .instruction-item {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .forgot-password-section {
        padding: 50px 0;
    }
    
    .forgot-password-title {
        font-size: 1.75rem;
    }
    
    .instruction-item {
        font-size: 0.9rem;
    }
    
    .forgot-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .forgot-password-section {
        padding: 40px 0;
    }
    
    .forgot-password-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .instruction-item {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .forgot-step-card {
        margin-bottom: 20px;
    }
    
    .forgot-step-number {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
}

/* ====================================
   HERO TUTORIAL SECTION
   ==================================== */

.hero-tutorial-section {
    background: linear-gradient(135deg, #2CB4B3 0%, #2c4a8d 100%);
    padding: 80px 0;
    min-height: 60vh;
}

.tutorial-content {
    padding: 40px 0;
}

.tutorial-breadcrumb {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.tutorial-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

.tutorial-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.tutorial-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive Hero Tutorial Section */
@media (max-width: 991px) {
    .hero-tutorial-section {
        padding: 60px 0;
    }
    
    .tutorial-title {
        font-size: 2.5rem;
    }
    
    .tutorial-content {
        padding: 30px 0;
        text-align: center;
    }
    
    .tutorial-image-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero-tutorial-section {
        padding: 50px 0;
    }
    
    .tutorial-title {
        font-size: 2rem;
    }
    
    .tutorial-breadcrumb {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-tutorial-section {
        padding: 40px 0;
    }
    
    .tutorial-title {
        font-size: 1.75rem;
    }
    
    .tutorial-breadcrumb {
        font-size: 0.85rem;
    }
    
    .tutorial-image-wrapper {
        padding: 10px;
    }
}

/* ====================================
   SERVICES SECTION
   ==================================== */

.services-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.services-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.services-title-box {
    background-color: #2c4a8d;
    padding: 25px 50px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 30px;
}

.services-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0;
}

.services-description {
    color: #666;
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.services-cards-wrapper {
    background-color: #2c4a8d;
    padding: 50px 40px;
    border-radius: 12px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 40px 30px;
    background-color: transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: #2CB4B3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 40px;
    color: #ffffff;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(44, 180, 179, 0.5);
}

.service-card-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card-text {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Services Section */
@media (max-width: 991px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-title-wrapper {
        margin-bottom: 50px;
    }
    
    .services-title-box {
        padding: 20px 40px;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .services-description {
        font-size: 1.05rem;
    }
    
    .services-cards-wrapper {
        padding: 40px 30px;
    }
    
    .service-card {
        padding: 35px 25px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }
    
    .services-title-box {
        padding: 18px 35px;
    }
    
    .services-title {
        font-size: 1.75rem;
    }
    
    .services-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .services-cards-wrapper {
        padding: 35px 25px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 35px;
    }
    
    .service-card-title {
        font-size: 1.3rem;
    }
    
    .service-card-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 40px 0;
    }
    
    .services-title-wrapper {
        margin-bottom: 40px;
    }
    
    .services-title-box {
        padding: 15px 30px;
    }
    
    .services-title {
        font-size: 1.5rem;
    }
    
    .services-description {
        font-size: 0.95rem;
    }
    
    .services-cards-wrapper {
        padding: 30px 20px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
    }
    
    .service-icon i {
        font-size: 32px;
    }
    
    .service-card-title {
        font-size: 1.2rem;
    }
    
    .service-card-text {
        font-size: 0.9rem;
    }
}

/* ====================================
   FOOTER STYLES
   ==================================== */

.site-footer {
    background-color: #f8f9fa;
    padding: 60px 0 30px;
    color: #666;
    margin-top: 80px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-title {
    color: #00d4d4;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-menu li a:hover {
    color: #00d4d4;
}

.footer-contact p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.footer-contact i {
    margin-right: 8px;
    color: #00d4d4;
}

.footer-contact a {
    color: #666;
    text-decoration: none;
    word-break: break-word;
}

.footer-contact a:hover {
    color: #00d4d4;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #00d4d4;
}

.btn-operadoras {
    background-color: #00d4d4;
    color: #1e3a8a;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-operadoras:hover {
    background-color: #00b8b8;
    color: #1e3a8a;
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-link i {
    font-size: 18px;
}

.social-link:hover {
    color: #00d4d4;
}

.ans-logos {
    margin: 20px 0;
}

.ans-logo {
    max-width: 150px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.ans-logo:hover {
    opacity: 1;
}

.copyright {
    color: #999;
    font-size: 13px;
    padding: 20px 0;
}

.copyright-link {
    color: #999;
    text-decoration: none;
    font-weight: 600;
}

.copyright-link:hover {
    color: #00d4d4;
}

/* ====================================
   FLOATING BUTTONS
   ==================================== */

.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    min-width: 180px;
}

.floating-btn i {
    font-size: 24px;
}

.floating-btn:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-atendimento {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.btn-atendimento:hover {
    color: #ffffff;
}

.btn-whatsapp {
    background-color: #25d366;
    color: #ffffff;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    color: #ffffff;
}

.btn-boleto {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #ffffff;
    text-align: left;
}

.btn-boleto:hover {
    color: #ffffff;
}

.btn-boleto small {
    font-size: 11px;
    font-weight: 400;
    display: block;
    line-height: 1.2;
}

/* Responsive Floating Buttons */
@media (max-width: 768px) {
    .floating-buttons {
        right: 10px;
        bottom: 10px;
        gap: 8px;
    }
    
    .floating-btn {
        padding: 12px 16px;
        min-width: 150px;
        font-size: 13px;
    }
    
    .floating-btn i {
        font-size: 20px;
    }
    
    .floating-btn span {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .floating-buttons {
        right: 8px;
        bottom: 8px;
        gap: 6px;
    }
    
    .floating-btn {
        padding: 10px 14px;
        min-width: 60px;
        border-radius: 50%;
        justify-content: center;
    }
    
    .floating-btn span {
        display: none;
    }
    
    .floating-btn i {
        font-size: 24px;
        margin: 0;
    }
}

/* Footer Responsive */
@media (max-width: 991px) {
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-logo {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .site-footer {
        margin-top: 60px;
    }
    
    .footer-title {
        font-size: 16px;
    }
    
    .ans-logos {
        flex-direction: column;
    }
    
    .ans-logo {
        max-width: 120px;
    }
}

/* ====================================
   THANK YOU SECTION
   ==================================== */

.thank-you-section {
    background: linear-gradient(135deg, #2c4a8d 0%, #2CB4B3 100%);
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.thank-you-section .container-fluid {
    height: 100%;
}

.thank-you-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 60px;
}

.thank-you-text-wrapper {
    max-width: 600px;
}

.thank-you-box {
    background-color: #2c4a8d;
    padding: 30px 50px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.thank-you-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
}

.thank-you-subtitle {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

.thank-you-image-col {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.thank-you-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgba(44, 74, 141, 0.3) 0%, rgba(44, 180, 179, 0.1) 100%);
    padding: 40px;
}

.thank-you-image {
    max-width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Thank You Section */
@media (max-width: 991px) {
    .thank-you-section {
        min-height: 100vh;
        height: auto;
    }
    
    .thank-you-content {
        padding: 60px 40px 40px;
    }
    
    .thank-you-box {
        padding: 25px 40px;
    }
    
    .thank-you-title {
        font-size: 2.75rem;
    }
    
    .thank-you-subtitle {
        font-size: 1.75rem;
    }
    
    .thank-you-image-col {
        padding: 40px 20px 60px;
    }
    
    .thank-you-image-wrapper {
        padding: 20px;
    }
    
    .thank-you-image {
        max-height: 60vh;
    }
}

@media (max-width: 768px) {
    .thank-you-content {
        padding: 50px 30px 30px;
        text-align: center;
    }
    
    .thank-you-text-wrapper {
        max-width: 100%;
    }
    
    .thank-you-box {
        padding: 20px 30px;
        margin-bottom: 20px;
    }
    
    .thank-you-title {
        font-size: 2.25rem;
    }
    
    .thank-you-subtitle {
        font-size: 1.5rem;
    }
    
    .thank-you-image-col {
        padding: 30px 20px 50px;
    }
    
    .thank-you-image {
        max-height: 50vh;
    }
}

@media (max-width: 576px) {
    .thank-you-content {
        padding: 40px 20px 20px;
    }
    
    .thank-you-box {
        padding: 15px 25px;
        margin-bottom: 15px;
    }
    
    .thank-you-title {
        font-size: 1.75rem;
    }
    
    .thank-you-subtitle {
        font-size: 1.25rem;
    }
    
    .thank-you-image-col {
        padding: 20px 15px 40px;
    }
    
    .thank-you-image-wrapper {
        padding: 15px;
    }
    
    .thank-you-image {
        max-height: 40vh;
        border-radius: 10px;
    }
}

/* ====================================
   PRIVACY POLICY SECTION
   ==================================== */

.hero-privacy-section {
    background: linear-gradient(135deg, #2c4a8d 0%, #2CB4B3 100%);
    padding: 80px 0 60px;
}

.privacy-hero-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.privacy-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 400;
}

.privacy-content-section {
    background-color: #ffffff;
    padding: 60px 0 80px;
}

.privacy-intro {
    background-color: #f8f9fa;
    padding: 30px;
    border-left: 4px solid #2CB4B3;
    margin-bottom: 40px;
    border-radius: 4px;
}

.privacy-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
    margin: 0;
}

.privacy-section {
    margin-bottom: 50px;
}

.privacy-section-title {
    color: #2c4a8d;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #2CB4B3;
}

.privacy-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 15px;
}

.privacy-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.privacy-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555555;
    padding: 10px 0 10px 30px;
    position: relative;
}

.privacy-list li::before {
    content: "→";
    color: #2CB4B3;
    font-size: 1.2rem;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 10px;
}

.privacy-list li strong {
    color: #2c4a8d;
    font-weight: 600;
}

.cookie-card {
    background-color: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.cookie-card:hover {
    border-color: #2CB4B3;
    box-shadow: 0 4px 12px rgba(44, 180, 179, 0.15);
}

.cookie-title {
    color: #2c4a8d;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-title i {
    color: #2CB4B3;
    font-size: 1.5rem;
}

.cookie-card p {
    margin: 0;
}

.contact-dpo {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-dpo p {
    margin-bottom: 10px;
}

.contact-dpo p:last-child {
    margin-bottom: 0;
}

.privacy-link {
    color: #2CB4B3;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #2c4a8d;
    text-decoration: underline;
}

.privacy-footer {
    background-color: #2c4a8d;
    color: #ffffff;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    margin-top: 40px;
}

.privacy-footer p {
    color: #ffffff;
    margin-bottom: 10px;
}

.privacy-footer p:last-child {
    margin-bottom: 0;
}

/* Responsive Privacy Section */
@media (max-width: 991px) {
    .hero-privacy-section {
        padding: 60px 0 50px;
    }
    
    .privacy-hero-title {
        font-size: 2.5rem;
    }
    
    .privacy-hero-subtitle {
        font-size: 1rem;
    }
    
    .privacy-content-section {
        padding: 50px 0 60px;
    }
    
    .privacy-section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-privacy-section {
        padding: 50px 0 40px;
    }
    
    .privacy-hero-title {
        font-size: 2rem;
    }
    
    .privacy-content-section {
        padding: 40px 0 50px;
    }
    
    .privacy-intro {
        padding: 20px;
    }
    
    .privacy-intro p {
        font-size: 1rem;
    }
    
    .privacy-section-title {
        font-size: 1.35rem;
    }
    
    .privacy-section p,
    .privacy-list li {
        font-size: 0.95rem;
    }
    
    .cookie-card {
        padding: 20px;
    }
    
    .cookie-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-privacy-section {
        padding: 40px 0 30px;
    }
    
    .privacy-hero-title {
        font-size: 1.75rem;
    }
    
    .privacy-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .privacy-content-section {
        padding: 30px 0 40px;
    }
    
    .privacy-intro {
        padding: 15px;
        margin-bottom: 30px;
    }
    
    .privacy-intro p {
        font-size: 0.95rem;
    }
    
    .privacy-section {
        margin-bottom: 40px;
    }
    
    .privacy-section-title {
        font-size: 1.25rem;
    }
    
    .privacy-section p,
    .privacy-list li {
        font-size: 0.9rem;
    }
    
    .privacy-list li {
        padding-left: 25px;
    }
    
    .cookie-card {
        padding: 15px;
    }
    
    .contact-dpo {
        padding: 20px;
    }
    
    .privacy-footer {
        padding: 25px 20px;
    }
}

/* ====================================
   GENERAL STYLES
   ==================================== */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    padding-top: 122px; /* Espaço para o header fixo (top-bar 42px + main-header 80px) */
    padding-bottom: 100px; /* Espaço para os botões flutuantes */
}

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