/* css/style.css */
:root {
    --primary: #7ab1ff;
    --primary-dark: #4675b8;
    --secondary: #ff6b6b;
    --accent: #4ecdc4;
    --text: #333333;
    --text-light: #777777;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #e9ecef;
    --dark: #212529;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.text-highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(78, 84, 200, 0.2);
    z-index: -1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    padding: 15px 0;
    transition: var(--transition);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img.logo-img {
    height: 85px; /* Logo aumentado */
    transition: var(--transition);
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav a {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav a:hover {
    color: var(--primary);
}

.nav a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#4675b8);
    z-index: -1;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 50px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(78, 84, 200, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
}

.service-icon i {
    font-size: 2rem;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(78, 84, 200, 0.3), transparent);
}

/* Specialties Section */
.specialties {
    padding: 100px 0;
    background: var(--light);
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.specialty-item {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    font-weight: 500;
}

.specialty-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

/* Team Section */
.team {
    padding: 100px 0;
    background: var(--light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    background: rgba(78, 84, 200, 0.8);
    transition: var(--transition);
}

.team-member:hover .member-social {
    bottom: 0;
}

.member-social a {
    width: 35px;
    height: 35px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.member-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    margin-bottom: 15px;
}

.member-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 30px;
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text p {
    font-style: italic;
    color: var(--text-light);
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--gray);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(78, 84, 200, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-schedule li {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-schedule li span {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text .section-title {
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .specialties-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        transition: var(--transition);
        padding: 40px 20px;
        box-shadow: var(--shadow);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .logo img.logo-img {
        height: 70px; /* Ajuste responsivo para o logo */
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .specialties-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }

    .specialty-item {
        padding: 15px 10px;
        font-size: 0.9rem;
    }

    .logo img.logo-img {
        height: 60px; /* Ajuste responsivo para o logo */
    }
}


/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.carousel {
    position: relative;
    width: 100%;
    height: 400px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--white);
}

.carousel-btn-prev {
    left: 15px;
}

.carousel-btn-next {
    right: 15px;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel {
        height: 300px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
}


/* Convênios Section */
.convenios {
    padding: 100px 0;
    background: var(--white);
}

.convenios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas */
    gap: 30px;
    margin-bottom: 40px;
}

.convenio-card {
    background: var(--light);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px; /* Altura mínima para uniformidade */
}

.convenio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.convenio-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.convenio-logo img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
}

.convenio-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--primary);
}

.convenio-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: auto; /* Empurra o texto para baixo */
}

.convenios-info {
    text-align: center;
    padding: 20px;
    background: rgba(78, 84, 200, 0.1);
    border-radius: 10px;
    max-width: 800px;
    margin: 40px auto 0;
}

.convenios-info p {
    margin: 0;
    color: var(--text);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .convenios-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em tablets */
    }
}

@media (max-width: 768px) {
    .convenios-grid {
        grid-template-columns: 1fr; /* 1 coluna em mobile */
        gap: 20px;
    }
    
    .convenio-card {
        padding: 20px;
        min-height: auto; /* Remove altura fixa em mobile */
    }
    
    .convenio-logo {
        width: 80px;
        height: 80px;
    }
    
    .convenio-logo img {
        max-height: 50px;
    }
}


/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 200px 0 60px;
    color: var(--white);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.breadcrumb {
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--white);
    transition: var(--transition);
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

/* Service Detail Section */
.service-detail {
    padding: 80px 0;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.service-main h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.service-main h3 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--primary);
}

.service-main p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Service Features */
.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: var(--primary);
    font-size: 1.1rem;
}

.feature span {
    color: var(--text);
    font-weight: 500;
}

/* Differentials Grid */
.differentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.differential-card {
    background: var(--light);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.differential-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.differential-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.differential-card h4 {
    margin-bottom: 10px;
    color: var(--dark);
}

.differential-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Products Categories */
.products-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.category {
    background: var(--light);
    padding: 20px;
    border-radius: 10px;
}

.category h4 {
    margin-bottom: 15px;
    color: var(--primary);
}

.category ul {
    list-style: none;
}

.category li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-light);
}

.category li:last-child {
    border-bottom: none;
}

/* Service Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: var(--light);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.sidebar-card h4 {
    margin-bottom: 15px;
    color: var(--primary);
}

.sidebar-card p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.sidebar-card .btn {
    width: 100%;
    text-align: center;
}

/* Service CTA Section */
.service-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
    }
    
    .products-categories {
        grid-template-columns: 1fr;
    }
    
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 40px;
    }
    
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .service-main h2 {
        font-size: 1.8rem;
    }
    
    .service-main h3 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}


/* Service Section Styles */
.service-section {
    margin: 40px 0;
    padding: 30px;
    background: var(--light);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.service-section h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* Warning Signs */
.warning-signs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.warning-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
}

.warning-item i {
    color: var(--secondary);
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateX(5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 5px;
    color: var(--dark);
}

.step-content p {
    color: var(--text-light);
    margin: 0;
}

/* Treatments Grid */
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.treatment-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.treatment-icon {
    width: 70px;
    height: 70px;
    background: rgba(78, 84, 200, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: var(--transition);
}

.treatment-card:hover .treatment-icon {
    background: var(--primary);
    color: var(--white);
}

.treatment-icon i {
    font-size: 1.8rem;
}

.treatment-card h4 {
    margin-bottom: 10px;
    color: var(--dark);
}

.treatment-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Care Grid */
.care-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.care-item {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.care-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.care-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Exams List */
.exams-list {
    list-style: none;
    padding: 0;
}

.exams-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.exams-list li:last-child {
    border-bottom: none;
}

.exams-list i {
    color: var(--primary);
    width: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .step-number {
        align-self: center;
    }
    
    .treatments-grid {
        grid-template-columns: 1fr;
    }
    
    .warning-signs {
        grid-template-columns: 1fr;
    }
    
    .care-grid {
        grid-template-columns: 1fr;
    }
    
    .service-section {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .process-step {
        padding: 15px;
    }
    
    .treatment-card {
        padding: 20px;
    }
    
    .care-item {
        padding: 15px;
    }
}


/* Emergency Hero Section */
.emergency-hero {
    background: linear-gradient(135deg, #ff6b6b 0%, #c44545 100%);
}

.emergency-alert {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    border-radius: 50px;
    margin: 20px 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.emergency-alert i {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Emergency CTA Banner */
.emergency-cta {
    background: #ff6b6b;
    padding: 20px 0;
    color: white;
}

.emergency-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.emergency-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.emergency-icon {
    font-size: 2.5rem;
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.emergency-text h3 {
    margin: 0;
    font-size: 1.5rem;
}

.emergency-text p {
    margin: 5px 0 0;
    opacity: 0.9;
}

.emergency-contacts {
    display: flex;
    gap: 15px;
}

.btn-emergency, .btn-whatsapp {
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-emergency {
    background: #dc3545;
    color: white;
    border: 2px solid #dc3545;
}

.btn-emergency:hover {
    background: #c82333;
    border-color: #c82333;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border: 2px solid #25d366;
}

.btn-whatsapp:hover {
    background: #128c7e;
    border-color: #128c7e;
    transform: translateY(-2px);
}

/* Emergency Sections */
.emergency-section {
    border-left: 5px solid #ff6b6b;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.section-header i {
    font-size: 1.8rem;
    color: #ff6b6b;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 30px;
}

/* Stabilization Grid */
.stabilization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.stabilization-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.stabilization-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.stabilization-item i {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 15px;
}

.stabilization-item h4 {
    margin-bottom: 10px;
    color: var(--dark);
}

.stabilization-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Diagnostics Grid */
.diagnostics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.diagnostic-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.diagnostic-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.diagnostic-icon i {
    font-size: 1.8rem;
    color: #ff6b6b;
}

.diagnostic-card h4 {
    margin-bottom: 15px;
    color: var(--dark);
}

.diagnostic-card ul {
    list-style: none;
    padding: 0;
}

.diagnostic-card li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-light);
}

.diagnostic-card li:last-child {
    border-bottom: none;
}

/* Hospitalization Features */
.hospitalization-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-item i {
    font-size: 1.5rem;
    color: #ff6b6b;
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-item h4 {
    margin-bottom: 5px;
    color: var(--dark);
}

.feature-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Emergency Cases */
.emergency-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.emergency-case {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.emergency-case.urgent {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    color: #856404;
}

.emergency-case.critical {
    background: rgba(220, 53, 69, 0.1);
    border-left: 4px solid #dc3545;
    color: #721c24;
}

.emergency-case i {
    font-size: 1.2rem;
}

/* Facility Grid */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.facility-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.facility-item i {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 15px;
}

.facility-item h4 {
    margin-bottom: 10px;
    color: var(--dark);
}

.facility-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Sidebar Emergency Card */
.emergency-card {
    border: 3px solid #ff6b6b;
}

.emergency-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.emergency-header i {
    font-size: 1.5rem;
    color: #ff6b6b;
    animation: pulse 2s infinite;
}

.emergency-header h4 {
    margin: 0;
    color: #ff6b6b;
}

.emergency-contacts-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-emergency-sidebar, .btn-whatsapp-sidebar {
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-emergency-sidebar {
    background: #dc3545;
    color: white;
}

.btn-emergency-sidebar:hover {
    background: #c82333;
}

.btn-whatsapp-sidebar {
    background: #25d366;
    color: white;
}

.btn-whatsapp-sidebar:hover {
    background: #128c7e;
}

/* Schedule Info */
.schedule-info, .units-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.schedule-item, .unit-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.schedule-item:last-child, .unit-item:last-child {
    border-bottom: none;
}

.unit-item h5 {
    margin: 0 0 5px;
    color: var(--primary);
}

.unit-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Preparation List */
.preparation-list {
    list-style: none;
    padding: 0;
}

.preparation-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.preparation-list li:last-child {
    border-bottom: none;
}

.preparation-list i {
    color: #28a745;
}

/* Final Emergency CTA */
.emergency-final-cta {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.btn-emergency-large {
    background: white;
    color: #dc3545;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid white;
}

.btn-emergency-large:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .emergency-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .hospitalization-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .emergency-alert {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .emergency-contacts {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-emergency, .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
    
    .stabilization-grid,
    .diagnostics-grid,
    .emergency-cases,
    .facility-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .emergency-text h3 {
        font-size: 1.3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-emergency-large {
        width: 100%;
        text-align: center;
    }
}


/* Grooming Hero Section */
.grooming-hero {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
}

/* Grooming Sections */
.grooming-section {
    border-left: 5px solid #4ecdc4;
}

.section-header i {
    color: #4ecdc4;
}

/* Evaluation Grid */
.evaluation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.evaluation-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.evaluation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.evaluation-item i {
    font-size: 2.5rem;
    color: #4ecdc4;
    margin-bottom: 15px;
}

.evaluation-item h4 {
    margin-bottom: 10px;
    color: var(--dark);
}

.evaluation-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.note {
    background: rgba(78, 205, 196, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #4ecdc4;
    margin: 20px 0 0;
}

/* Bath Features */
.bath-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.bath-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-content p {
    color: var(--text-light);
    margin: 0;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #4ecdc4;
}

/* Grooming Types */
.grooming-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.grooming-type-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: var(--transition);
}

.grooming-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.grooming-icon {
    width: 70px;
    height: 70px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.grooming-icon i {
    font-size: 1.8rem;
    color: #4ecdc4;
}

.grooming-type-card h4 {
    margin-bottom: 10px;
    color: var(--dark);
}

.grooming-type-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.grooming-tag {
    background: #4ecdc4;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.grooming-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 10px;
    margin-top: 20px;
}

.grooming-note i {
    font-size: 1.5rem;
    color: #4ecdc4;
    margin-top: 3px;
    flex-shrink: 0;
}

.grooming-note p {
    margin: 0;
    color: var(--text);
}

/* Finishing Steps */
.finishing-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

.finishing-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.finishing-step:hover {
    transform: translateX(5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #4ecdc4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 5px;
    color: var(--dark);
}

.step-content p {
    color: var(--text-light);
    margin: 0;
}

/* Veterinary Benefits */
.veterinary-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.benefit-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #4ecdc4;
    margin-bottom: 15px;
}

.benefit-card h4 {
    margin-bottom: 10px;
    color: var(--dark);
}

.benefit-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Sidebar Grooming Card */
.grooming-card {
    border: 3px solid #4ecdc4;
}

.grooming-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.grooming-header i {
    font-size: 1.5rem;
    color: #4ecdc4;
}

.grooming-header h4 {
    margin: 0;
    color: #4ecdc4;
}

.btn-grooming {
    background: #4ecdc4;
    color: white;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-grooming:hover {
    background: #44a08d;
    transform: translateY(-2px);
}

/* Grooming Differentials */
.grooming-differentials {
    list-style: none;
    padding: 0;
}

.grooming-differentials li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.grooming-differentials li:last-child {
    border-bottom: none;
}

.grooming-differentials i {
    color: #4ecdc4;
}

/* FAQ Preview */
.faq-preview p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.faq-link {
    color: #4ecdc4;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.faq-link:hover {
    gap: 10px;
}

/* Pricing Section */
.grooming-pricing {
    padding: 80px 0;
    background: var(--light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid #4ecdc4;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #4ecdc4;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #4ecdc4;
    margin-bottom: 5px;
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-header p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #4ecdc4;
}

.btn-outline {
    background: transparent;
    color: #4ecdc4;
    border: 2px solid #4ecdc4;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline:hover {
    background: #4ecdc4;
    color: white;
}

/* Grooming CTA */
.grooming-cta {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
}

/* Responsive Design */
@media (max-width: 992px) {
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .bath-feature {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .feature-icon {
        align-self: center;
    }
    
    .grooming-note {
        flex-direction: column;
        text-align: center;
    }
    
    .finishing-step {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .step-number {
        align-self: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .evaluation-grid,
    .grooming-types,
    .veterinary-benefits {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .price {
        font-size: 2.5rem;
    }
}

/* Content Sections */
.content-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.content-section:last-of-type {
    border-bottom: none;
}

.content-section h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-section h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.content-section h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.content-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text);
}

/* Content Lists */
.content-list {
    margin: 15px 0;
    padding-left: 20px;
}

.content-list li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: var(--text);
}

.content-list li:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-section h2 {
        font-size: 1.7rem;
    }
    
    .content-section h3 {
        font-size: 1.3rem;
    }
    
    .content-section h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .content-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section h3 {
        font-size: 1.2rem;
    }
    
    .content-section h4 {
        font-size: 1.1rem;
    }
    
    .content-list {
        padding-left: 15px;
    }
}


/* Content Sections */
.content-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.content-section:last-of-type {
    border-bottom: none;
}

.content-section h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-section h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.content-section h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.content-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text);
}

/* Content Lists */
.content-list {
    margin: 15px 0;
    padding-left: 20px;
}

.content-list li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: var(--text);
}

.content-list li:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-section h2 {
        font-size: 1.7rem;
    }
    
    .content-section h3 {
        font-size: 1.3rem;
    }
    
    .content-section h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .content-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section h3 {
        font-size: 1.2rem;
    }
    
    .content-section h4 {
        font-size: 1.1rem;
    }
    
    .content-list {
        padding-left: 15px;
    }
}





        /* Estilos específicos para esta página */


        
        .content-section {
            margin-bottom: 40px;
        }
        
        .content-list {
            list-style-type: none;
            padding-left: 20px;
        }
        
        .content-list li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        

        
        .sidebar-card {
            background: #f9f9f9;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        

        
        .btn {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        

        
        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        

        
        .breadcrumb {
            margin-top: 15px;
            font-size: 14px;
        }
        
        .breadcrumb a {
            color: #ddd;
            text-decoration: none;
        }
        

        

        
        .info-box.warning {
            background: #fff3e0;
            border-left-color: #ff9800;
        }
        
        .info-box.important {
            background: #e3f2fd;
            border-left-color: #2196f3;
        }
        
        @media (max-width: 768px) {
            .service-content {
                flex-direction: column;
            }
            
            .service-sidebar {
                margin-top: 40px;
            }
        }





    /* Botão de Resultados de Exames */
.exames-btn-container {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.exames-btn-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.exames-btn-subtitle {
    color: #6c757d;
    margin-bottom: 25px;
    font-size: 1rem;
}

.exames-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.exames-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: white;
    border: 2px solid #4CAF50;
    border-radius: 8px;
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.1);
    position: relative;
    overflow: hidden;
}

.exames-btn:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.exames-btn:active {
    transform: translateY(0);
}

.exames-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.exames-btn:hover i {
    transform: scale(1.1);
}

.exames-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.exames-btn:hover::before {
    left: 100%;
}

/* Versão secundária do botão */
.exames-btn.secondary {
    border-color: #2196F3;
    color: #2196F3;
}

.exames-btn.secondary:hover {
    background: #2196F3;
    color: white;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

/* Responsivo */
@media (max-width: 768px) {
    .exames-buttons-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .exames-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .exames-btn-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .exames-btn-container {
        margin: 20px 0;
        padding: 15px;
    }
    
    .exames-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .exames-btn i {
        font-size: 1rem;
    }
}