/* ========================================
   VETERINÁRIA - CSS COMPLETO
   ======================================== */

/* Reset e Configurações Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3AA6A8;
    --primary-dark: #2D8A8C;
    --primary-light: #5BBFC1;
    --text-dark: #333333;
    --text-light: #666666;
    --background: #f5f5f5;
    --white: #ffffff;
    --gray-light: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.highlight {
    color: var(--primary-color);
}

/* ========================================
   HEADER / TOPO
   ======================================== */
.header {
    background-color: var(--primary-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 160px;
    height: auto;
    object-fit: contain;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--gray-light);
}

.nav-menu .btn-contato {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.nav-menu .btn-contato:hover {
    background-color: var(--gray-light);
    color: var(--primary-dark);
}

.menu-mobile {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

/* ========================================
   BOTÕES
   ======================================== */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    padding: 60px 0;
    background-color: var(--white);
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
    max-width: 550px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(58, 166, 168, 0.3);
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.paw-decoration {
    position: absolute;
    z-index: 1;
}

.paw-decoration img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.paw-1 {
    top: -20px;
    right: 50px;
}

.paw-2 {
    top: 50px;
    right: -10px;
}

.paw-3 {
    bottom: 50px;
    right: 20px;
}

/* ========================================
   SECTION HEADER
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ========================================
   SERVIÇOS
   ======================================== */
.services {
    padding: 80px 0;
    background-color: var(--background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: visible;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.service-icon {
    position: absolute;
    bottom: -30px;
    right: 20px;
    width: 65px;
    height: 65px;
    background-color: var(--white);
    border: 3px solid var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.6rem;
    box-shadow: 0 5px 15px rgba(58, 166, 168, 0.3);
    z-index: 10;
}

.service-content {
    padding: 45px 20px 25px;
}

.service-content h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.service-subtitle {
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.service-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ========================================
   ATENDIMENTO SECTION
   ======================================== */
.atendimento {
    padding: 80px 0;
    background-color: var(--white);
}

.atendimento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.atendimento-card {
    background-color: var(--background);
    border-radius: 20px;
    overflow: hidden;
}

.atendimento-image {
    height: 280px;
    overflow: visible;
    position: relative;
}

.atendimento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.atendimento-content {
    padding: 30px 25px;
    position: relative;
}

.atendimento-icon {
    position: absolute;
    top: -35px;
    left: 25px;
    width: 70px;
    height: 70px;
    background-color: var(--white);
    border: 3px solid var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(58, 166, 168, 0.3);
    z-index: 10;
}

.atendimento-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 15px;
}

.atendimento-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ========================================
   GALERIA HOME (SLIDER)
   ======================================== */
.galeria-home {
    padding: 80px 0;
    background-color: var(--background);
}

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.slider {
    width: 100%;
    max-width: 1100px;
    overflow: hidden;
    border-radius: 20px;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 25%;
    padding: 0 10px;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.slider-btn {
    position: absolute;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slider-btn.slider-prev {
    left: 10px;
}

.slider-btn.slider-next {
    right: 10px;
}

.slider-btn:hover {
    background-color: var(--primary-dark);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-light);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary-color);
}

.galeria-btn {
    text-align: center;
}

/* ========================================
   PAGE HEADER (PÁGINAS INTERNAS)
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ========================================
   SOBRE PAGE
   ======================================== */
.sobre-content {
    padding: 80px 0;
    background-color: var(--white);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sobre-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sobre-image img {
    width: 100%;
    height: auto;
}

.sobre-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.sobre-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Valores */
.valores {
    padding: 80px 0;
    background-color: var(--background);
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.valor-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-5px);
}

.valor-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.8rem;
}

.valor-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.valor-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Equipe */
.equipe {
    padding: 80px 0;
    background-color: var(--white);
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.equipe-card {
    text-align: center;
}

.equipe-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--primary-color);
}

.equipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipe-card h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.equipe-card span {
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* ========================================
   SERVIÇOS PAGE
   ======================================== */
.servicos-detalhados {
    padding: 80px 0;
}

.servico-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.servico-item.reverse {
    direction: rtl;
}

.servico-item.reverse > * {
    direction: ltr;
}

.servico-img {
    height: 100%;
    min-height: 400px;
}

.servico-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.servico-info {
    padding: 40px;
}

.servico-icon-large {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.servico-info h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.servico-info > p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.servico-info ul {
    margin-bottom: 25px;
}

.servico-info li {
    padding: 8px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.servico-info li i {
    color: var(--primary-color);
}

/* ========================================
   CONTATO PAGE
   ======================================== */
.contato-section {
    padding: 80px 0;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contato-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contato-form h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group label i {
    color: var(--primary-color);
    margin-right: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contato-info h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.info-text p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.social-contato {
    margin-top: 30px;
}

.social-contato h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.social-contato .social-icons {
    display: flex;
    gap: 15px;
}

.social-contato .social-icons a {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-contato .social-icons a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Mapa */
.mapa-section {
    padding: 60px 0;
    background-color: var(--white);
}

.mapa-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.mapa {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ========================================
   GALERIA PAGE
   ======================================== */
.galeria-full {
    padding: 80px 0;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.galeria-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(58, 166, 168, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-overlay i {
    color: var(--white);
    font-size: 2rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 180px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-info p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-social .social-icons {
    display: flex;
    gap: 15px;
}

.footer-social .social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background-color 0.3s ease;
}

.footer-social .social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* ========================================
   WHATSAPP FLUTUANTE
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

/* ========================================
   RESPONSIVO
   ======================================== */

/* Tablet landscape */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .slide {
        min-width: 33.333%;
    }

    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-text p {
        font-size: 1.15rem;
    }

    .circle-image {
        width: 300px;
        height: 300px;
    }

    .paw-decoration {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .atendimento-grid {
        grid-template-columns: 1fr;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
    }

    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .equipe-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .servico-item {
        grid-template-columns: 1fr;
    }

    .servico-item.reverse {
        direction: ltr;
    }

    .servico-img {
        min-height: 300px;
    }

    .contato-grid {
        grid-template-columns: 1fr;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .slide {
        min-width: 50%;
    }

    .slide img {
        height: 250px;
    }

    .logo img {
        width: 130px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--primary-color);
        transition: left 0.3s ease;
        padding: 30px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu a {
        font-size: 1.1rem;
    }

    .menu-mobile {
        display: block;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .circle-image {
        width: 250px;
        height: 250px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    .atendimento-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .valores-grid {
        grid-template-columns: 1fr;
    }

    .equipe-grid {
        grid-template-columns: 1fr;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo img {
        width: 140px;
    }

    .footer-social .social-icons {
        justify-content: center;
    }

    .slide {
        min-width: 100%;
    }

    .slide img {
        height: 280px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .logo img {
        width: 110px;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 1.9rem;
    }

    .circle-image {
        width: 220px;
        height: 220px;
    }

    .btn-primary {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .service-content h3 {
        font-size: 1.2rem;
    }

    .service-subtitle {
        font-size: 1rem;
    }

    .atendimento-content h3 {
        font-size: 1.3rem;
    }

    .slider-btn.slider-prev {
        left: 5px;
    }

    .slider-btn.slider-next {
        right: 5px;
    }

    .logo img {
        width: 100px;
    }

    .footer-logo img {
        width: 120px;
    }
}
