* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gray-dark: #333333;
    --gray-medium: #808285;
    --gray-light: #F3F6FA;
    --text-dark: #1A1A2E;
    --text-gray: #5A6378;
    --text-light: #808285;
    --text-white: #FFFFFF;
    --bg-light: #F3F6FA;
    --bg-gray: #333333;
    --bg-white: #FFFFFF;
    --border-color: #D6E0EB;
    --shadow: 0 4px 15px rgba(7, 74, 143, 0.08);
    --shadow-hover: 0 8px 25px rgba(7, 74, 143, 0.12);
    --radius-sm: 6px;
    --radius-md: 10px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 8px 0;
    justify-content: flex-start;
}

.navbar-brand {
    margin-right: 40px;
    margin-left: 0;
    padding-left: 0;
}

.navbar-nav.ms-auto {
    margin-left: 0 !important;
    margin-right: auto;
}

.logo-img {
    height: 55px;
    width: auto;
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
    padding: 8px 12px !important;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-light) !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
}

.btn-results {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-results:hover {
    background: var(--primary-dark);
    color: var(--text-white);
}

.btn-results.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
}

.header-social {
    display: flex;
    gap: 8px;
}

.header-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(7, 74, 143, 0.1);
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.header-social-link:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.header-social-link.whatsapp {
    background: rgba(7, 74, 143, 0.1);
    color: var(--primary-color);
}

.header-social-link.whatsapp:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 6px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23074A8F' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center 10%;
    min-height: 500px;
    padding: 160px 0;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    background: #ffffff;
    color: var(--primary-light, #2484C6);
    padding: 14px 35px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: var(--accent-color, #92C5EB);
    color: var(--primary-dark, #053A72);
    transform: translateY(-3px);
}

/* NPS Banner */
.nps-banner {
    background: var(--primary-color);
    padding: 20px 0;
}

.nps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.nps-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.nps-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
}

.nps-item-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-top: 4px;
}

.nps-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

/* Section Title */
.section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: var(--accent-color, #92C5EB);
    margin: 0 auto 30px;
}

.title-underline.left {
    margin: 0 0 25px 0;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Slogan Badge */
.slogan-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    padding: 12px 25px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    margin-top: 15px;
}

.slogan-badge i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.slogan-badge span {
    color: var(--primary-color);
    font-weight: 600;
    font-style: italic;
    font-size: 1.05rem;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background: var(--bg-light);
}

.advantage-card {
    background: var(--bg-white);
    padding: 30px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid var(--border-color);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.advantage-icon {
    width: 65px;
    height: 65px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
    background: var(--primary-dark);
}

.advantage-icon i {
    font-size: 1.6rem;
    color: var(--text-white);
}

.advantage-title {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.advantage-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark, #053A72) 100%);
    padding: 60px 0;
    color: var(--text-white);
}

.cta-banner h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-white);
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.btn-whatsapp-hero {
    background: #25D366;
    color: var(--text-white);
    padding: 14px 35px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-whatsapp-hero:hover {
    background: #1EBE5A;
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Specialties Section */
.specialties {
    padding: 80px 0;
    background: var(--bg-light);
}

.specialty-card {
    background: var(--bg-white);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    cursor: pointer;
    height: 100%;
    border: 1px solid var(--border-color);
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.specialty-card:hover .specialty-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.specialty-card:hover .specialty-icon i {
    color: var(--text-white);
}

.specialty-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color, #92C5EB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.specialty-icon i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.specialty-title {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.specialty-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

/* Instituto Section */
.instituto {
    padding: 80px 0;
    background: var(--bg-white);
}

.instituto-image {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c9a96e;
}

.instituto-image img {
    width: 150%;
    height: auto;
    max-width: none;
    margin-left: -33%;
    display: block;
}

.instituto-text {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.section-subtitle-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.instituto-text strong {
    color: var(--primary-color);
}

.btn-primary-custom {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* Values Section */
.values-section {
    padding: 60px 0;
    background: var(--gray-dark);
}

.value-card {
    text-align: center;
    padding: 30px 20px;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.value-title {
    font-size: 1.3rem;
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 15px;
}

.value-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Structure Section */
.structure-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.structure-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    width: 100%;
}

/* Exames List */
.exames-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.exames-list li {
    padding: 8px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.exames-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Procedimentos Section */
.procedimentos {
    padding: 80px 0;
    background: var(--bg-white);
}

/* Exam Cards */
.exam-card {
    background: var(--bg-white);
    border-left: 4px solid var(--primary-color, #074A8F);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.3s ease;
}

.exam-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.exam-card-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color, #074A8F);
    display: block;
    margin-bottom: 8px;
}

.exam-card-desc {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.cirurgia-card {
    background: var(--bg-light);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.cirurgia-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.cirurgia-card:hover .cirurgia-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.cirurgia-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color, #92C5EB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.cirurgia-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.cirurgia-card h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.cirurgia-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* Testimonials Section */
.depoimentos {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonial-card {
    background: var(--bg-white);
    padding: 30px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-quote {
    margin-bottom: 15px;
}

.testimonial-quote i {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.4;
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-name {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    padding-top: 15px;
    border-top: 2px solid var(--primary-color);
}

/* Corpo Clínico - inherited styles */

.team-card {
    text-align: center;
    padding: 25px 15px;
    background: var(--bg-white);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    margin-bottom: 15px;
}

.team-name {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.team-specialty {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin: 0;
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

/* Contato Section */
.contato {
    padding: 80px 0;
    background: var(--bg-white);
}

.contato-text {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 30px;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contato-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contato-item i {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 3px;
}

.contato-item strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 3px;
}

.contato-item p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

.contato-form-wrapper {
    background: var(--bg-light);
    padding: 35px;
    border-radius: var(--radius-md);
}

.form-label {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.form-control {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(27, 107, 74, 0.1);
}

.form-privacy {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.form-privacy a {
    color: var(--primary-color);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--text-white);
    padding: 12px 25px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1EBE5A;
    color: var(--text-white);
}

.form-message {
    padding: 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* Centro Cirúrgico */
.centro-cirurgico {
    padding: 80px 0;
    background: var(--bg-light);
}

.centro-carousel {
    overflow: hidden;
    position: relative;
}

.centro-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.centro-carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.centro-carousel-slide img {
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.centro-carousel-slide img:hover {
    transform: scale(1.02);
}

.centro-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.centro-carousel-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 1rem;
}

.centro-carousel-btn:hover {
    background: var(--primary-dark);
}

.centro-carousel-dots {
    display: flex;
    gap: 8px;
}

.centro-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.centro-dot.active {
    background: var(--primary-color);
}

.centro-subtitle {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Centro Cirúrgico Page */
.cc-page p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.cc-page-title {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cc-page img.shadow {
    box-shadow: var(--shadow-hover);
}

.cc-equip-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.cc-equip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.cc-equip-card i {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 15px;
}

.cc-equip-card h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.cc-equip-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cc-img-caption {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 8px;
    font-weight: 500;
}

.cc-galeria img {
    transition: transform 0.3s ease;
}

.cc-galeria img:hover {
    transform: scale(1.03);
}

/* Corpo Clínico */
.corpo-clinico {
    padding: 80px 0;
    background: var(--bg-light);
}

.doctors-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.doctors-carousel {
    overflow: hidden;
    flex: 1;
}

.doctors-carousel-track {
    display: flex;
    transition: transform 0.4s ease;
}

.doctor-slide {
    min-width: 25%;
    padding: 0 10px;
    box-sizing: border-box;
}

.carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: var(--bg-white);
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.doctor-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.doctor-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--accent-color, #92C5EB);
}

.doctor-icon {
    font-size: 4rem;
    color: var(--primary-light);
    margin-bottom: 15px;
}

.doctor-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.doctor-specialty {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 3px;
}

.doctor-crm {
    color: var(--text-light);
    font-size: 0.8rem;
}

.corpo-clinico-placeholder {
    padding: 40px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border: 2px dashed var(--border-color);
}

.corpo-clinico-placeholder i {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 15px;
    display: block;
}

.corpo-clinico-placeholder p {
    color: var(--text-gray);
    font-size: 1rem;
    margin: 0;
}

/* Parceiros Page */
.parceiros-page {
    padding: 60px 0;
}

.parceiros-title {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.parceiros-intro p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
}

.parceiro-card {
    text-align: center;
    padding: 25px 20px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.parceiro-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.parceiro-icon {
    font-size: 3.5rem;
    color: var(--primary-light);
    margin-bottom: 15px;
}

.parceiro-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--accent-color, #92C5EB);
}

.parceiro-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.parceiro-specialty {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 3px;
}

.parceiro-crm {
    color: var(--text-light);
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.parceiro-desc {
    color: var(--text-gray);
    font-size: 0.82rem;
    line-height: 1.6;
    margin: 0;
}

/* Orçamento */
.orcamento {
    padding: 80px 0;
    background: var(--bg-light);
}

.orcamento-highlights {
    margin-top: 25px;
}

.orcamento-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-dark);
}

.orcamento-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
}

.orcamento-cta-box {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.orcamento-cta-box i.bi-calculator {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.orcamento-cta-box h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.orcamento-cta-box p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: #ffffff;
    color: var(--text-dark);
    padding: 50px 0 25px;
    border-top: 3px solid var(--primary-color);
}

.footer-logo-img {
    height: 60px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-text {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-text i {
    margin-right: 8px;
    color: var(--primary-color);
}

.footer-slogan {
    color: var(--primary-light);
    font-size: 0.95rem;
    margin-top: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-address-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-address-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(7, 74, 143, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.footer-divider {
    border-color: rgba(7, 74, 143, 0.15);
    margin: 35px 0 20px;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Responsive */
@media (max-width: 991px) {
    .header-actions {
        flex-direction: column;
        gap: 10px;
        margin: 15px 0 0 0;
        align-items: flex-start;
    }

    .header-social {
        margin-top: 5px;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .nps-grid {
        gap: 20px;
    }

    .nps-number {
        font-size: 1.5rem;
    }

    .nps-item-label {
        font-size: 0.75rem;
    }

    .nps-divider {
        height: 30px;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .specialties,
    .instituto,
    .advantages,
    .depoimentos,
    .contato,
    .structure-section {
        padding: 60px 0;
    }

    .specialty-card {
        padding: 20px 15px;
    }

    .specialty-desc {
        display: none;
    }

    .contato-form-wrapper {
        padding: 25px 20px;
    }

    .team-photo {
        width: 90px;
        height: 90px;
    }

    .value-card {
        padding: 20px 15px;
    }

    .footer {
        text-align: center;
    }

    .footer .col-md-4 {
        margin-bottom: 30px;
    }

    .footer-social {
        justify-content: center;
    }

    .nps-number {
        font-size: 1.3rem;
    }

    .nps-item-label {
        font-size: 0.7rem;
    }

    .cta-banner h2 {
        font-size: 1.5rem;
    }
}

/* ========================================
   SUBPAGES STYLES
   ======================================== */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--gray-dark) 0%, #1a2a3a 100%);
    padding: 120px 0 60px;
    text-align: center;
    color: var(--text-white);
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Page Content */
.page-content {
    padding: 60px 0;
    background: var(--bg-white);
}

/* Specialty Card Full */
.specialty-card-full {
    background: var(--bg-light);
    padding: 30px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.specialty-card-full:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.specialty-card-full .specialty-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-color, #92C5EB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.specialty-card-full:hover .specialty-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.specialty-card-full .specialty-icon i {
    font-size: 1.8rem;
    color: var(--text-white);
}

.specialty-card-full h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.specialty-card-full p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

.specialty-card-full.clickable {
    cursor: pointer;
    height: auto;
}

.spec-details {
    margin-top: 15px;
    text-align: left;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.spec-details-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 12px !important;
}

.spec-procedures {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-procedures li {
    font-size: 0.85rem;
    color: var(--text-gray);
    padding: 4px 0;
}

.spec-procedures li i {
    color: var(--primary-light);
    margin-right: 8px;
    font-size: 0.8rem;
}

.spec-toggle-hint {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--primary-light);
    font-weight: 500;
    transition: color 0.3s ease;
}

.specialty-card-full.clickable:hover .spec-toggle-hint {
    color: var(--primary-color);
}

.specialty-card-full.expanded {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

/* Cirurgia Card Full */
.cirurgia-card-full {
    background: var(--bg-light);
    padding: 30px 25px;
    border-radius: var(--radius-md);
    height: 100%;
    transition: all 0.3s ease;
}

.cirurgia-card-full:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.cirurgia-card-full .cirurgia-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color, #92C5EB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.cirurgia-card-full:hover .cirurgia-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.cirurgia-card-full .cirurgia-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.cirurgia-card-full h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.cirurgia-card-full p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.cirurgia-card-full ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cirurgia-card-full ul li {
    padding: 5px 0;
    color: var(--text-dark);
    font-size: 0.9rem;
    position: relative;
    padding-left: 15px;
}

.cirurgia-card-full ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Responsive for Subpages */
@media (max-width: 991px) {
    .doctor-slide {
        min-width: 50%;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 50px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-content {
        padding: 40px 0;
    }

    .doctor-slide {
        min-width: 100%;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Pacotes Cirúrgicos Button */
.btn-outline-pacotes {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-pacotes:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Pacotes Cirúrgicos Page */
.pacotes-page {
    padding: 60px 0;
}

.pacotes-title {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.pacotes-intro p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 800px;
}

.pacotes-info-bar {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding: 20px 25px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.pacotes-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-dark);
}

.pacotes-info-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

/* Filter Navigation */
.pacotes-filter-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-200, #e9ecef);
}

.pacote-filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--gray-300, #dee2e6);
    background: #fff;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pacote-filter-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary-color);
}

.pacote-filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Specialty Cards */
.pacotes-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.pacote-specialty-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--gray-200, #e9ecef);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.pacote-specialty-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.pacote-specialty-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background: var(--bg-light);
    transition: background 0.3s ease;
}

.pacote-specialty-header:hover {
    background: #e8f0fe;
}

.pacote-specialty-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pacote-specialty-title i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.pacote-specialty-title h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.pacote-specialty-count {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pacote-badge {
    background: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pacote-chevron {
    font-size: 1.2rem;
    color: var(--gray-600);
    transition: transform 0.3s ease;
}

.pacote-specialty-card.open .pacote-chevron {
    transform: rotate(180deg);
}

.pacote-specialty-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 25px;
}

.pacote-specialty-card.open .pacote-specialty-body {
    max-height: 3000px;
    padding: 20px 25px 25px;
}

.pacote-subcategory {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-light);
    margin: 20px 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pacote-subcategory:first-child {
    margin-top: 0;
}

.pacote-procedures-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 8px;
}

.pacote-procedure-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 15px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: background 0.2s ease;
}

.pacote-procedure-item:hover {
    background: #e8f0fe;
}

.pacote-procedure-item i {
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.pacote-procedure-item span {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.pacote-cta {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-200, #e9ecef);
    text-align: right;
}

@media (max-width: 768px) {
    .pacotes-info-bar {
        flex-direction: column;
        gap: 12px;
    }

    .pacotes-filter-nav {
        gap: 6px;
    }

    .pacote-filter-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
    }

    .pacote-procedures-list {
        grid-template-columns: 1fr;
    }

    .pacote-specialty-header {
        padding: 15px 18px;
    }

    .pacote-specialty-card.open .pacote-specialty-body {
        padding: 15px 18px 20px;
    }

    .pacote-specialty-count .pacote-badge {
        display: none;
    }
}