:root {
    --primary-color: #FF8FAB; /* Pink */
    --secondary-color: #FB6F92; /* Darker Pink */
    --text-color: #555;
    --light-bg: #FFF0F3;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
}

.text-pink {
    color: var(--secondary-color) !important;
}

.bg-pink {
    background-color: var(--primary-color) !important;
}

/* Navbar */
.navbar-nav .nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #777;
    font-weight: 400;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--secondary-color);
}

/* Hero Section */
#hero {
    /* Background set inline for dynamic control */
    height: 100vh;
    min-height: 600px;
}

#hero h1, #hero-carousel h1 {
    color: #fff;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary {
    background-color: #fff;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* About Section */
.about-img {
    max-width: 350px;
    border: 5px solid #fff;
}

.section-title {
    position: relative;

}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

.about-content {
    text-align: justify;
}

/* Therapies */
.therapy-card {
    transition: transform 0.3s;
}

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

.therapy-card img {
    height: 200px;
    object-fit: cover;
}

/* Reviews */
.review-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-size: 50%;
}

/* Blog */
.bg-dark-gradient {
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.blog-card img {
    height: 250px;
    object-fit: cover;
}

/* Specializations */
.specialization-icon {
    font-size: 3rem;
    color: #55c57a; /* Verde da imagem */
}
.specialization-card {
    transition: transform 0.3s;
}
.specialization-card:hover {
    transform: translateY(-5px);
}
.specialization-card h5 {
    color: #55c57a; /* Verde da imagem */
    font-size: 1rem;
    letter-spacing: 0.5px;
}
.specialization-card p {
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Contact */
.contact-info i {
    width: 30px;
    text-align: center;
}

.social-links a:hover {
    color: var(--secondary-color) !important;
}

/* Footer */
footer {
    background-color: #fff;
}

/* Custom Container Width for Desktop */
@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

/* Override Bootstrap Defaults for Primary Color (Blue #0d6efd -> Green #4dc782) */
.text-primary {
    color: #4dc782 !important;
}

.border-primary {
    border-color: #4dc782 !important;
}

a {
    color: #4dc782;
    text-decoration: none;
}

a:hover {
    color: #3cb570;
}

.link-primary {
    color: #4dc782 !important;
}

.link-primary:hover {
    color: #3cb570 !important;
}

.btn-link {
    color: #4dc782;
}

.btn-link:hover {
    color: #3cb570;
}

.btn-outline-primary {
    color: #4dc782;
    border-color: #4dc782;
}

.btn-outline-primary:hover {
    background-color: #4dc782;
    border-color: #4dc782;
}
