  body {
            font-family: 'Inter', sans-serif;
            background-color: #fdfdfd;
        }
       /* Ajusta tamanho da logo no desktop */
        .navbar-brand img {
            max-height: 90px;
            height: auto;
        }
        /* Ajusta no mobile */
        @media (max-width: 768px) {
            .navbar-brand img {
                max-height: 90px;
            }
        }
        .hero {
            background-image: url('https://media.istockphoto.com/id/2170084214/pt/foto/home-care-healthcare-professional-hugging-elderly-patient.jpg?s=612x612&w=0&k=20&c=SpzIhxNty2vinimKU13svQRXfB4WfkKokI17tzndjzI=');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 5rem 0;
            position: relative;
            color: white;
        }
        .hero .container {
            text-align: left;
            position: relative;
            z-index: 2;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, #0056b3 35%, transparent);
            z-index: 1;
        }
        .hero-text {
            max-width: 50%;
        }
        .services, .reasons, .team, #quem-somos {
            padding: 4rem 0;
            text-align: center;
        }
        .service-card {
            background-color: #fff;
            border: 1px solid #ddd;
            padding: 2rem 1rem;
            border-radius: 10px;
            transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
            margin-bottom: 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .service-card .bi {
            color: #0056b3;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .testimonial-card {
            max-width: 800px;
            margin: 0 auto;
            background-color: #fff;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            text-align: left;
        }
        .testimonial-card img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1.5rem;
        }
        .testimonial-text p:first-child {
            font-style: italic;
            font-size: 1.1rem;
        }
        .team-member-card {
            background-color: #fff;
            border: 1px solid #ddd;
            padding: 1.5rem;
            border-radius: 10px;
            transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .team-member-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .team-member-card img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
        }
        .btn-primary-custom {
            background-color: #e65287;
            border-color: #e65287;
            color: white;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            transition: transform 0.2s ease-in-out;
        }
        .btn-primary-custom:hover {
            background-color: #e91e63;
            border-color: #e91e63;
            transform: translateY(-2px);
        }
        .btn-secondary-custom {
            background-color: #37b75f;
            border-color: #37b75f;
            color: white;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            transition: transform 0.2s ease-in-out;
        }
        .btn-secondary-custom:hover {
            background-color: #4cd175;
            border-color: #4cd175;
            transform: translateY(-2px);
        }
        .section-title {
            color: #0056b3;
            font-weight: 700;
            margin-bottom: 3rem;
        }
        .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .nav-link {
            color: #0056b3;
            font-weight: 600;
        }
        .navbar-light .navbar-nav .nav-link:hover {
            color: #e65287;
        }
        .footer {
            background-color: #0056b3;
            color: white;
        }
        /* Estilos adicionais para a seção "Quem Somos" */
        #quem-somos .lead {
            font-size: 1.15rem;
            line-height: 1.6;
        }
        #quem-somos ul {
            text-align: left;
            display: inline-block;
            margin-top: 1rem;
        }
        #quem-somos ul li {
            margin-bottom: 0.5rem;
        }
        /* Ajuste do Hero no mobile */
        @media (max-width: 768px) {
            .hero {
                padding: 3rem 1rem;
                background-position: center;
            }
            .hero-text {
                max-width: 100%;
                text-align: center;
            }
            .hero-text h1 {
                font-size: 1.8rem;
            }
            .hero-text p {
                font-size: 1rem;
            }
            .hero-text .btn {
                width: 100%;
                margin-bottom: 0.5rem;
            }
            .testimonial-card {
                flex-direction: column;
                text-align: center;
            }
            .testimonial-card img {
                margin: 0 auto 1rem;
            }
        }
        /* Ajuste em celulares muito pequenos */
        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 1.5rem;
            }
            .hero-text p {
                font-size: 0.95rem;
            }
            .service-card {
                padding: 1.5rem 1rem;
            }
        }    /* Estilização da caixa de chat */
        .chat-form-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 350px;
            max-width: 90vw; /* Garante que a caixa não seja maior que a tela em dispositivos móveis */
            background-color: #ffffff;
            border-radius: 1rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            z-index: 1050;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.95);
            transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        }

        .chat-form-container.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .chat-form-header {
            background-color: #28a745;
            color: white;
            padding: 1rem;
            border-top-left-radius: 1rem;
            border-top-right-radius: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chat-form-header h5 {
            margin-bottom: 0;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .chat-form-header .btn-close {
            filter: invert(1);
        }

        .chat-form-body {
            padding: 1.5rem;
        }

        /* Estilização do botão flutuante */
        .whatsapp-fixed-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1060; /* Acima do contêiner do chat */
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
            cursor: pointer; /* Adiciona o cursor de link */
        }

        .whatsapp-fixed-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }
        
        /* Estilos do formulário (mantivemos os mesmos do modal) */
        .btn-primary-custom {
            background-color: #e91e63;
            border-color: #e91e63;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
        }

        .btn-primary-custom:hover {
            background-color: #218838;
            border-color: #1e7e34;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
        }

        .form-control:focus, .form-select:focus {
            border-color: #28a745;
            box-shadow: 0 0 0 0.25rem rgba(40, 167, 69, 0.25);
        }
 /* Estilos para o carrossel de depoimentos */
    .testimonial-card {
        padding: 2rem;
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        max-width: 800px;
        margin: 0 auto;
    }
    .carousel-item {
        padding: 2rem 0;
    }
    .carousel-control-prev,
    .carousel-control-next {
        width: 5%;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-color: #0056b3;
        border-radius: 50%;
    }
    .text-warning {
        color: #ffc107 !important;
    }
      