        /* Estilos Globais e Fundo */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            background-color: #ffffff;
            overflow-x: hidden;
            color: #333;
            line-height: 1.8;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- Cabeçalho (Header) --- */
        
        .header .container {
            display: flex;
            align-items: center;
        }
        .header .logo {
            margin-right: 15px; 
            height: 60px;
            width: auto;
        }
        .nav-menu {
            margin-left: auto; 
        }
        
        .nav-menu ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 2rem;
        }
        .nav-menu a {
            text-decoration: none;
            color: #555;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-menu a:hover {
            color: #5d987d;
        }

        /* --- Seção Principal (Hero Section) --- */
        .hero {
            display: flex;
            min-height: 100vh;
            align-items: center; 
            justify-content: center;
            gap: 40px;
            padding-bottom: 2rem;
        }
        .hero .content-area {
            flex: 1;
            padding: 2rem;
            max-width: 650px;
        }
        .hero .logo-vetcare {
            max-width: 400px;
            height: auto;
            margin-bottom: 10px;
        }
        .main-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
            margin: 0 0 1rem 0;
            line-height: 1.2;
            padding: 0 20px;
        }
        .main-description {
            text-align: justify;
            font-size: 1.1rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 2rem;
            padding: 0 20px;
        }
        .buttons-container {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            padding: 0 20px;
        }
        .btn {
            padding: 15px 30px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 50px;
            transition: transform 0.2s ease, background-color 0.2s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        .btn-green {
            background-color: #5d987d;
            color: #fff;
        }
        .btn-green:hover {
            background-color: #4a7c64;
            transform: translateY(-3px);
        }
        .btn-orange {
            background-color: #f7a353;
            color: #fff;
        }
        .btn-orange:hover {
            background-color: #e08c41;
            transform: translateY(-3px);
        }
        .image-area {
            flex: 1;
            background-image: url('https://vetcarehome.com.br/img/cao_gato_papagaio_peixe.jpg');
            background-size: 700px auto;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            padding-top: 50%;
        }

        /* --- Seção de Depoimentos --- */
        .testimonials {
            background-color: #f8f9fa;
            padding: 60px 20px;
            text-align: center;
        }
        .testimonials h2 {
            font-size: 2.5rem;
            color: #0056b3;
            margin-bottom: 40px;
        }
        .carousel-container {
            width: 90%;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            background-color: #ffffff;
            padding: 20px;
        }
        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        .carousel-slide {
            min-width: 100%;
            padding: 10px 20px;
            box-sizing: border-box;
            text-align: center;
        }
        .carousel-slide p {
            font-size: 1.1em;
            font-style: italic;
            color: #555;
            margin-bottom: 10px;
            line-height: 1.5;
        }
        .carousel-slide strong {
            display: block;
            margin-top: 10px;
            font-size: 1em;
            color: #0056b3;
        }
        .carousel-dot-container {
            text-align: center;
            margin-top: 20px;
        }
        .carousel-dot {
            height: 12px;
            width: 12px;
            margin: 0 6px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .carousel-dot.active {
            background-color: #007bff;
        }
        
        /* --- Rodapé (Footer) --- */
        .footer {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 40px 20px;
            margin-top: auto;
        }
        .footer p {
            margin: 0;
            margin-bottom: 10px;
        }
        .footer .social-media {
            margin-top: 20px;
        }
        .footer .social-media a {
            color: #fff;
            margin: 0 10px;
            text-decoration: none;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        .footer .social-media a:hover {
            color: #007bff;
        }

        /* Botão Flutuante do WhatsApp */
        .whatsapp-float-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25D366;
            color: white;
            padding: 12px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1rem;
            font-weight: bold;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: transform 0.2s ease, background-color 0.2s ease;
            z-index: 999;
        }
        .whatsapp-float-button:hover {
            background-color: #1DA851;
            transform: scale(1.05);
        }
        .whatsapp-float-button img {
            width: 24px;
            height: 24px;
            margin-right: 10px;
        }

        /* --- Responsividade --- */
        @media (max-width: 992px) {
            .header .container {
                flex-direction: column;
                gap: 1rem;
            }
            .nav-menu ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .hero {
                flex-direction: column;
                justify-content: flex-start;
                min-height: auto;
            }
            .hero .content-area {
                text-align: center;
                padding: 1rem 1rem;
                max-width: 100%;
            }
            .hero .buttons-container {
                justify-content: center;
            }
            
            .image-area {
                background-size: cover;
                height: 100px;
                width:50%;
                
            }
        }