/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #0f3460;
    --accent-color: #28a745;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #28a745;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #e8f5e9;
}

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

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

.navbar {
    padding: 1rem 0;
}
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-fallback {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-fallback i {
    font-size: 2rem;
    color: var(--primary-color);
}

.logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    display: block;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

/* Dropdown Menu */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-menu .dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .dropdown-menu li {
    list-style: none;
}

.nav-menu .dropdown-menu a {
    padding: 0.8rem 1.2rem;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-menu .dropdown-menu a:hover {
    background: rgba(40, 167, 69, 0.1);
    color: var(--accent-color);
}

.nav-menu .dropdown-menu li:last-child a {
    border-bottom: none;
}

.btn-nav {
    background-color: var(--accent-color);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
}

.btn-nav:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
}

/* Top Banner Section with Parallax */
.top-banner {
    background: #f8f9fa;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-banner.parallax-section {
    background-attachment: fixed !important;
    background-size: cover !important;
    background-position: center !important;
}

.top-banner .container {
    max-width: 1200px;
}

.banner-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 100px 0;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Parallax Effect */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-banner {
    position: relative;
    background-image: url('../images/banner-home.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.7);
    z-index: 1;
}

/* About Hero with Parallax */
.about-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: var(--white);
}

.parallax-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.75);
    z-index: 1;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.tech-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tech-icon i {
    color: var(--primary-color);
}

/* Mission Cards Update */
.mission-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.values-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.values-list i {
    color: var(--accent-color);
}

/* Stats Inline */
.stats-inline {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-inline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    min-width: 120px;
}

.stat-inline-item .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-inline-item .stat-label {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Team Member Updates */
.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0.5rem 0;
}

.member-bio {
    font-size: 0.9rem;
    color: #6c757d;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Utilities */
.section-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 1rem;
}

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

.about-content-grid {
    display: grid;
    gap: 3rem;
}

.about-text-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #495057;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1.2s ease;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    animation: fadeInUp 1.4s ease;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(40, 167, 69, 0.3);
}

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

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

.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Benefits Section */
.benefits {
    background-color: var(--light-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), #34ce57);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-card p {
    color: var(--text-light);
}

/* How It Works Section */
.how-it-works {
    background-color: var(--white);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    text-align: center;
    padding: 1rem;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 2rem auto 1rem;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 3rem;
    color: var(--accent-color);
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step p {
    color: var(--text-light);
}

.step-arrow {
    font-size: 2rem;
    color: var(--accent-color);
}

.video-container {
    text-align: center;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.video-container video {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.video-container video:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transform: translateY(-5px);
}

.video-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 4rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.author-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-color), #34ce57);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Blog Section */
.blog-section {
    background-color: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    gap: 0.8rem;
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

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

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

/* Registration Section */
.registration-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.registration-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin: 0 auto;
}

.registration-form h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

/* Specialties Section */
.specialties-section {
    padding: 60px 0;
}

.search-box {
    max-width: 600px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 0.5rem;
}

.search-box input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.search-box button {
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.specialty-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.specialty-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.specialty-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.specialty-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.btn-details {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

/* Network Section */
.network-section {
    padding: 60px 0;
}

.search-filters {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
}

.filter-group {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr auto;
    gap: 1rem;
}

.results-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.result-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.result-header h4 {
    color: var(--primary-color);
}

.rating {
    color: #ffc107;
}

.result-specialty,
.result-address,
.result-phone {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.result-specialty i,
.result-address i,
.result-phone i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.result-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background-color: #000000;
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: var(--accent-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

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

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #000000;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .steps-container {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .filter-group {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Hero */
.contact-hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    color: white;
}

/* MVV Grid */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mvv-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.mvv-icon {
    font-size: 3.5rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.mvv-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.values-list-contact {
    list-style: none;
    padding: 0;
    text-align: left;
}

.values-list-contact li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.values-list-contact i {
    color: #d4af37;
    font-size: 1.1rem;
}

/* Timeline Section */
.timeline-section {
    padding: 4rem 0;
    position: relative;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.timeline-item {
    background: rgba(255,255,255,0.95);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
}

.timeline-year {
    font-size: 2rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 1rem;
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #495057;
    line-height: 1.6;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info-modern h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-intro {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-detail-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-detail-item p {
    color: #495057;
    line-height: 1.6;
}

/* Contact Form Modern */
.contact-form-modern {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-form-modern h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.btn-block {
    width: 100%;
}

/* CTA Section Contact */
.cta-section-contact {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta-content-contact h2 {
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content-contact p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.social-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.social-cta-btn.whatsapp {
    background: #25D366;
    color: white;
}

.social-cta-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.social-cta-btn.linkedin {
    background: #0077B5;
    color: white;
}

.social-cta-btn.facebook {
    background: #1877F2;
    color: white;
}

/* Responsive for Contact Page */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
    }
}
/* Solicitar Cartão - Estilos */
.solicitar-hero { min-height: 500px; display: flex; align-items: center; color: white; }
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 2rem; }
.plan-card { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); text-align: center; position: relative; transition: transform 0.3s; }
.plan-card:hover { transform: translateY(-5px); }
.plan-card.featured { border: 3px solid #d4af37; }
.plan-badge { position: absolute; top: -10px; right: 20px; background: #d4af37; color: white; padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.85rem; font-weight: bold; }
.plan-icon { font-size: 3rem; color: var(--primary-color); margin-bottom: 1rem; }
.plan-price { margin: 1.5rem 0; }
.plan-price .value { font-size: 3rem; font-weight: bold; color: var(--primary-color); }
.plan-price .currency, .plan-price .period { font-size: 1rem; color: #6c757d; }
.plan-features { list-style: none; padding: 0; margin: 2rem 0; text-align: left; }
.plan-features li { padding: 0.5rem 0; display: flex; align-items: center; gap: 0.5rem; }
.plan-features i { color: var(--accent-color); }
.comparison-table-wrapper { overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; background: white; border-radius: 12px; overflow: hidden; }
.comparison-table th, .comparison-table td { padding: 1rem; text-align: center; border-bottom: 1px solid #dee2e6; }
.comparison-table th { background: var(--primary-color); color: white; }
.comparison-table .featured-col { background: #fff8e1; }
.text-success { color: #28a745; font-size: 1.5rem; }
.text-muted { color: #6c757d; font-size: 1.5rem; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 2rem; }
.benefit-item { text-align: center; padding: 2rem; background: white; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.benefit-icon { font-size: 3rem; color: #d4af37; margin-bottom: 1rem; }
.multistep-form-container { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.progress-steps { display: flex; justify-content: space-between; margin-bottom: 3rem; }
.progress-steps .step { flex: 1; text-align: center; position: relative; }
.progress-steps .step-number { width: 40px; height: 40px; background: #e9ecef; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: bold; margin-bottom: 0.5rem; }
.progress-steps .step.active .step-number { background: var(--primary-color); color: white; }
.progress-steps .step-label { font-size: 0.85rem; color: #6c757d; }
.form-step { display: none; }
.form-step.active { display: block; }
.form-navigation { display: flex; gap: 1rem; justify-content: space-between; margin-top: 2rem; }
.checkbox-label { display: flex; align-items: center; gap: 0.5rem; }
.cta-section-solicitar { background: linear-gradient(135deg, #1a1a2e, #0f3460); padding: 4rem 0; text-align: center; }
.cta-content-solicitar h2 { color: #d4af37; font-size: 2rem; margin-bottom: 2rem; }

/* Abrir Conta - Estilos Premium */
.abrir-conta-hero { min-height: 500px; display: flex; align-items: center; color: white; }
.abrir-conta-hero .hero-content h1 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.abrir-conta-hero .hero-content p { font-size: 1.2rem; margin-bottom: 2rem; max-width: 700px; }

/* Selos de Confiança */
.trust-section { background: #f8f9fa; }
.trust-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.stat-item { text-align: center; padding: 2rem; background: white; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); transition: transform 0.3s; }
.stat-item:hover { transform: translateY(-5px); }
.stat-icon { font-size: 3rem; color: #d4af37; margin-bottom: 1rem; }
.stat-number { font-size: 2.5rem; font-weight: bold; color: #1a1a2e; margin-bottom: 0.5rem; }
.stat-label { color: #6c757d; font-size: 1rem; }

/* Depoimentos */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.testimonial-card { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.testimonial-rating { color: #ffc107; margin-bottom: 1rem; }
.testimonial-rating i { margin-right: 0.25rem; }
.testimonial-text { color: #495057; font-style: italic; margin-bottom: 1.5rem; line-height: 1.6; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { font-size: 3rem; color: #d4af37; }
.author-info h5 { margin: 0; color: #1a1a2e; }
.author-info span { color: #6c757d; font-size: 0.9rem; }

/* CTA Final */
.cta-section-final { background: linear-gradient(135deg, #1a1a2e, #0f3460); padding: 4rem 0; }
.cta-section-final .cta-content h2 { color: #d4af37; font-size: 2.5rem; margin-bottom: 1rem; }
.cta-section-final .cta-content p { color: white; font-size: 1.2rem; margin-bottom: 2rem; }

/* Responsividade Solicitar Cartão */
@media (max-width: 1200px) {
    .plans-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .plans-grid { grid-template-columns: 1fr; }
    .abrir-conta-hero .hero-content h1 { font-size: 1.8rem; }
    .trust-stats { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .stat-number { font-size: 2rem; }
}

/* Franquia - Estilos Premium */
.franquia-hero { min-height: 550px; display: flex; align-items: center; color: white; }
.franquia-hero .hero-content h1 { font-size: 2.8rem; margin-bottom: 1rem; }
.franquia-hero .hero-subtitle { font-size: 1.5rem; font-weight: 600; color: #d4af37; margin-bottom: 1rem; }
.franquia-hero .hero-content p { font-size: 1.2rem; margin-bottom: 2rem; max-width: 800px; }

/* Destaques da Marca */
.highlights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.highlight-card { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); text-align: center; transition: transform 0.3s; }
.highlight-card:hover { transform: translateY(-10px); box-shadow: 0 8px 20px rgba(212,175,55,0.3); }
.highlight-icon { font-size: 3rem; color: #d4af37; margin-bottom: 1rem; }
.highlight-number { font-size: 2.5rem; font-weight: bold; color: #1a1a2e; margin-bottom: 0.5rem; }
.highlight-label { font-size: 1.1rem; font-weight: 600; color: #495057; margin-bottom: 0.5rem; }
.highlight-card p { color: #6c757d; font-size: 0.9rem; }

/* Por que Investir */
.invest-reasons { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.reason-item { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.reason-icon { width: 60px; height: 60px; background: linear-gradient(135deg, #d4af37, #f4d03f); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.reason-icon i { font-size: 1.8rem; color: white; }
.reason-item h4 { color: #1a1a2e; margin-bottom: 0.75rem; }
.reason-item p { color: #6c757d; line-height: 1.6; }

/* Modelos de Franquia */
.models-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 2rem; }
.model-card { background: white; padding: 2.5rem; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); position: relative; transition: transform 0.3s; }
.model-card:hover { transform: translateY(-10px); }
.model-card.featured { border: 3px solid #d4af37; box-shadow: 0 8px 30px rgba(212,175,55,0.3); }
.model-badge { position: absolute; top: -15px; right: 20px; background: #d4af37; color: white; padding: 0.5rem 1.5rem; border-radius: 20px; font-size: 0.85rem; font-weight: bold; }
.model-header { text-align: center; margin-bottom: 1.5rem; }
.model-icon { width: 80px; height: 80px; background: linear-gradient(135deg, #1a1a2e, #0f3460); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.model-icon i { font-size: 2.5rem; color: #d4af37; }
.model-card h3 { color: #1a1a2e; font-size: 1.8rem; }
.model-price { text-align: center; margin: 1.5rem 0; }
.model-price .currency { font-size: 1.5rem; color: #6c757d; }
.model-price .amount { font-size: 3rem; font-weight: bold; color: #d4af37; }
.model-description { text-align: center; color: #6c757d; margin-bottom: 1.5rem; line-height: 1.6; }
.model-features { list-style: none; padding: 0; margin: 2rem 0; }
.model-features li { padding: 0.75rem 0; border-bottom: 1px solid #e9ecef; display: flex; align-items: center; gap: 0.75rem; }
.model-features li:last-child { border-bottom: none; }
.model-features i { color: #28a745; font-size: 1.2rem; }
.model-card .btn { width: 100%; margin-top: 1rem; }

/* Satisfação */
.satisfaction-content { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; align-items: center; margin-top: 2rem; }
.chart-circle { position: relative; width: 250px; height: 250px; margin: 0 auto; }
.chart-label { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; }
.chart-number { display: block; font-size: 3.5rem; font-weight: bold; color: #d4af37; }
.chart-text { display: block; font-size: 1.2rem; color: #6c757d; }
.satisfaction-stats { display: grid; gap: 1.5rem; }
.stat-box { background: white; padding: 1.5rem; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 1.5rem; }
.stat-box i { font-size: 2.5rem; color: #d4af37; }
.stat-box h4 { color: #1a1a2e; margin-bottom: 0.5rem; }
.stat-box p { color: #6c757d; margin: 0; }

/* Formulário */
.form-container { max-width: 800px; margin: 2rem auto; background: white; padding: 3rem; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.form-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.form-actions .btn { min-width: 250px; }

/* CTA Final */
.cta-final-franquia { background: linear-gradient(135deg, #1a1a2e, #0f3460); padding: 5rem 0; }
.cta-final-franquia .cta-content h2 { color: #d4af37; font-size: 2.5rem; margin-bottom: 1.5rem; }
.cta-final-franquia .cta-content p { color: white; font-size: 1.2rem; margin-bottom: 2rem; max-width: 800px; margin-left: auto; margin-right: auto; }

/* Responsividade Franquia */
@media (max-width: 768px) {
    .franquia-hero .hero-content h1 { font-size: 2rem; }
    .franquia-hero .hero-subtitle { font-size: 1.2rem; }
    .highlights-grid { grid-template-columns: 1fr; }
    .models-grid { grid-template-columns: 1fr; }
    .satisfaction-content { grid-template-columns: 1fr; }
    .chart-circle { width: 200px; height: 200px; }
    .invest-reasons { grid-template-columns: 1fr; }
    .form-actions { flex-direction: column; }
    .form-actions .btn { width: 100%; }
}

/* Financiamento - Estilos Premium */
.financiamento-hero { min-height: 550px; display: flex; align-items: center; color: white; }
.financiamento-hero .hero-content h1 { font-size: 2.8rem; margin-bottom: 1rem; }
.financiamento-hero .hero-subtitle { font-size: 1.3rem; color: #d4af37; margin-bottom: 1.5rem; font-weight: 600; }
.hero-badge { background: rgba(212,175,55,0.2); border: 2px solid #d4af37; padding: 0.75rem 1.5rem; border-radius: 30px; display: inline-block; margin-top: 1.5rem; }
.hero-badge i { color: #d4af37; margin-right: 0.5rem; }

/* Números Institucionais */
.numbers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2rem; }
.number-item { text-align: center; padding: 1.5rem; background: white; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); transition: transform 0.3s; }
.number-item:hover { transform: translateY(-5px); box-shadow: 0 6px 20px rgba(212,175,55,0.3); }
.number-icon { font-size: 2.5rem; color: #d4af37; margin-bottom: 0.75rem; }
.number-value { font-size: 2rem; font-weight: bold; color: #1a1a2e; margin-bottom: 0.5rem; }
.number-label { color: #6c757d; font-size: 0.9rem; }

/* Benefícios Financiamento */
.benefits-grid-financing { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2rem; }
.benefit-card-fin { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); text-align: center; transition: transform 0.3s; }
.benefit-card-fin:hover { transform: translateY(-10px); box-shadow: 0 8px 20px rgba(212,175,55,0.3); }
.benefit-icon-fin { width: 70px; height: 70px; background: linear-gradient(135deg, #d4af37, #f4d03f); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.benefit-icon-fin i { font-size: 2rem; color: white; }
.benefit-card-fin h4 { color: #1a1a2e; margin-bottom: 0.75rem; }
.benefit-card-fin p { color: #6c757d; line-height: 1.6; }

/* Simulador Moderno */
.simulator-container-modern { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2rem; }
.simulator-form { background: white; padding: 2.5rem; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.input-with-icon { position: relative; }
.input-prefix { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #6c757d; font-weight: 600; }
.input-with-icon input { padding-left: 45px; }
.slider { width: 100%; height: 8px; border-radius: 5px; background: #e9ecef; outline: none; margin: 1rem 0; }
.slider::-webkit-slider-thumb { appearance: none; width: 20px; height: 20px; border-radius: 50%; background: #d4af37; cursor: pointer; }
.slider::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: #d4af37; cursor: pointer; border: none; }
.range-labels { display: flex; justify-content: space-between; font-size: 0.85rem; color: #6c757d; }
.form-select-modern { width: 100%; padding: 0.75rem; border: 1px solid #dee2e6; border-radius: 8px; font-size: 1rem; }
.btn-block { width: 100%; }

/* Resultado Simulador */
.simulator-result { background: linear-gradient(135deg, #1a1a2e, #0f3460); padding: 2.5rem; border-radius: 16px; color: white; display: none; }
.result-header { text-align: center; margin-bottom: 2rem; border-bottom: 2px solid rgba(212,175,55,0.3); padding-bottom: 1rem; }
.result-header h3 { color: #d4af37; margin-bottom: 0.5rem; }
.result-values { margin-bottom: 2rem; }
.result-item { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.result-item:last-child { border-bottom: none; }
.result-label { font-size: 0.95rem; color: #e9ecef; }
.result-value { font-size: 1.5rem; font-weight: bold; color: #d4af37; }
.main-result .result-value { font-size: 2.5rem; }
.result-comparison { background: rgba(212,175,55,0.2); padding: 1rem; border-radius: 8px; text-align: center; margin-bottom: 1.5rem; }
.result-comparison i { color: #d4af37; margin-right: 0.5rem; }

/* Bancos Parceiros */
.partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.partner-item { background: white; padding: 1.5rem; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 1rem; transition: transform 0.3s; }
.partner-item:hover { transform: translateY(-5px); box-shadow: 0 6px 16px rgba(0,0,0,0.15); }
.partner-item i { font-size: 2rem; color: #d4af37; }
.partner-item span { font-weight: 600; color: #1a1a2e; }

/* Especialidades Grid */
.specialties-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; margin-top: 2rem; }
.specialty-item { background: white; padding: 1rem 1.5rem; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 0.75rem; transition: all 0.3s; }
.specialty-item:hover { background: linear-gradient(135deg, #d4af37, #f4d03f); color: white; transform: translateX(5px); }
.specialty-item i { color: #d4af37; font-size: 1.2rem; }
.specialty-item:hover i { color: white; }

/* Satisfação */
.satisfaction-box { background: white; padding: 3rem; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); text-align: center; }
.satisfaction-icon { width: 80px; height: 80px; background: linear-gradient(135deg, #d4af37, #f4d03f); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.satisfaction-icon i { font-size: 2.5rem; color: white; }
.satisfaction-box h2 { color: #1a1a2e; margin-bottom: 1rem; }
.stars { font-size: 2rem; color: #d4af37; margin: 1.5rem 0; }
.testimonials-mini { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.testimonial-mini { background: #f8f9fa; padding: 1.5rem; border-radius: 12px; border-left: 4px solid #d4af37; }
.testimonial-mini p { font-style: italic; color: #495057; margin-bottom: 0.75rem; }
.testimonial-mini span { color: #6c757d; font-size: 0.9rem; }

/* CTA Final */
.cta-final-financing { background: linear-gradient(135deg, #1a1a2e, #0f3460); padding: 5rem 0; }
.cta-final-financing h2 { color: #d4af37; font-size: 2.5rem; margin-bottom: 1.5rem; }
.cta-final-financing p { color: white; font-size: 1.2rem; margin-bottom: 2rem; }

/* Botão Consultor Fixo */
.consultant-button { position: fixed; bottom: 100px; right: 30px; background: linear-gradient(135deg, #d4af37, #f4d03f); color: white; padding: 1rem 1.5rem; border-radius: 50px; box-shadow: 0 4px 20px rgba(212,175,55,0.4); display: flex; align-items: center; gap: 0.75rem; font-weight: 600; z-index: 999; transition: all 0.3s; text-decoration: none; }
.consultant-button:hover { transform: translateY(-5px); box-shadow: 0 6px 25px rgba(212,175,55,0.6); }
.consultant-button i { font-size: 1.3rem; }

/* FAQ */
.faq-container { max-width: 800px; margin: 2rem auto; }
.faq-item { background: white; margin-bottom: 1rem; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.faq-question { padding: 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.3s; }
.faq-question:hover { background: #f8f9fa; }
.faq-question h4 { margin: 0; color: #1a1a2e; }
.faq-question i { color: #d4af37; transition: transform 0.3s; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 1.5rem 1.5rem; color: #6c757d; line-height: 1.6; }

/* Responsividade Financiamento */
@media (max-width: 768px) {
    .financiamento-hero .hero-content h1 { font-size: 2rem; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid-financing { grid-template-columns: 1fr; }
    .simulator-container-modern { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .specialties-grid { grid-template-columns: 1fr; }
    .testimonials-mini { grid-template-columns: 1fr; }
    .consultant-button { bottom: 80px; right: 20px; padding: 0.75rem 1rem; }
    .consultant-button span { display: none; }
}

/* Especialidades - Estilos Premium */
.especialidades-hero { min-height: 600px; display: flex; align-items: center; color: white; }
.especialidades-hero .hero-content h1 { font-size: 3rem; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 2px; }
.especialidades-hero .hero-subtitle { font-size: 1.4rem; color: #C9A84E; margin-bottom: 2rem; font-weight: 500; }

/* Estatísticas Institucionais */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2rem; }
.stat-item { text-align: center; padding: 2rem 1rem; background: white; border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); transition: all 0.3s; }
.stat-item:hover { transform: translateY(-10px); box-shadow: 0 8px 25px rgba(201,168,78,0.3); }
.stat-icon { font-size: 3rem; color: #C9A84E; margin-bottom: 1rem; }
.stat-number { font-size: 2.5rem; font-weight: bold; color: #1a1a2e; margin-bottom: 0.5rem; font-family: 'Poppins', sans-serif; }
.stat-text { font-size: 2.5rem; font-weight: bold; color: #1a1a2e; margin-bottom: 0.5rem; }
.stat-label { color: #6c757d; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; }

/* Sistema de Busca */
.search-container { max-width: 1200px; margin: 2rem auto; }
.search-form { background: white; padding: 2.5rem; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.search-form .form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; align-items: end; }
.search-form label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: #1a1a2e; }
.search-form input, .search-form select { width: 100%; padding: 0.875rem; border: 2px solid #e9ecef; border-radius: 8px; font-size: 1rem; transition: border-color 0.3s; }
.search-form input:focus, .search-form select:focus { outline: none; border-color: #C9A84E; }

/* Resultados da Busca */
.search-results { margin-top: 3rem; }
.search-results h3 { color: #1a1a2e; margin-bottom: 1.5rem; }
#resultsContainer { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 1.5rem; }
.result-card { background: white; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); overflow: hidden; transition: transform 0.3s; }
.result-card:hover { transform: translateY(-5px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.result-header { background: linear-gradient(135deg, #1a1a2e, #0f3460); color: white; padding: 1.5rem; }
.result-header h4 { margin: 0 0 0.5rem 0; }
.result-specialty { background: #C9A84E; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.85rem; }
.result-body { padding: 1.5rem; }
.result-body p { margin: 0.75rem 0; color: #495057; display: flex; align-items: center; gap: 0.75rem; }
.result-body i { color: #C9A84E; }
.result-footer { padding: 0 1.5rem 1.5rem; }

/* Grid de Especialidades */
.specialties-list { display: block; }
.specialties-grid-full { 
    display: grid !important; 
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important; 
    gap: 2rem !important; 
    margin-top: 2.5rem !important; 
    width: 100%;
}
.specialties-grid-full .specialty-card { 
    background: white !important; 
    padding: 2rem !important; 
    border-radius: 16px !important; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important; 
    transition: all 0.4s !important; 
    border: 2px solid transparent !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.specialties-grid-full .specialty-card:hover { transform: translateY(-10px); box-shadow: 0 8px 25px rgba(201,168,78,0.2); border-color: #C9A84E; }
.specialty-icon { 
    width: 70px !important; 
    height: 70px !important; 
    background: linear-gradient(135deg, #C9A84E, #f4d03f) !important; 
    border-radius: 50% !important; 
    display: flex !important; 
    align-items: center !important; 
    justify-content: center !important; 
    margin-bottom: 1.5rem !important; 
}
.specialty-icon i { font-size: 2rem !important; color: white !important; }
.specialties-grid-full .specialty-card h4 { color: #1a1a2e !important; margin-bottom: 0.75rem !important; font-size: 1.25rem !important; font-weight: 600 !important; }
.specialties-grid-full .specialty-card p { color: #6c757d !important; line-height: 1.6 !important; font-size: 0.95rem !important; }
.bg-light { background-color: #f8f9fa; }
.section-padding { padding: 80px 0; }

/* Bloco Informativo */
.info-block { background: linear-gradient(135deg, #1a1a2e, #0f3460); color: white; padding: 5rem 0; }
.info-content { max-width: 900px; margin: 0 auto; text-align: center; }
.info-content h2 { font-size: 2.5rem; margin-bottom: 1.5rem; color: #C9A84E; }
.info-content p { font-size: 1.2rem; line-height: 1.8; margin-bottom: 1.5rem; }
.info-content strong { color: #C9A84E; }
.info-actions { display: flex; gap: 1.5rem; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap; }

/* Animações AOS */
[data-aos="fade-up"] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos="fade-up"].aos-animate { opacity: 1; transform: translateY(0); }

/* ========================================
   PÁGINA DE PAGAMENTOS - PREMIUM
   ======================================== */

/* Hero Pagamentos */
.pagamentos-hero { min-height: 600px; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; background-attachment: fixed; position: relative; }
.pagamentos-hero .hero-content h1 { font-size: 3rem; font-weight: 700; margin-bottom: 1.5rem; text-shadow: 2px 2px 8px rgba(0,0,0,0.3); }
.pagamentos-hero .hero-subtitle { font-size: 1.3rem; color: #C9A84E; margin-bottom: 2.5rem; line-height: 1.8; }

/* Benefícios */
.benefits-section { display: block !important; }
.benefits-grid { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important; gap: 2.5rem !important; margin-top: 3rem !important; }
.benefit-card { background: white !important; padding: 2.5rem !important; border-radius: 16px !important; box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important; transition: all 0.4s !important; border: 2px solid transparent !important; text-align: center !important; display: block !important; visibility: visible !important; opacity: 1 !important; }
.benefit-card:hover { transform: translateY(-10px) !important; box-shadow: 0 8px 30px rgba(201,168,78,0.2) !important; border-color: #C9A84E !important; }
.benefit-icon { width: 80px !important; height: 80px !important; background: linear-gradient(135deg, #C9A84E, #f4d03f) !important; border-radius: 50% !important; display: flex !important; align-items: center !important; justify-content: center !important; margin: 0 auto 1.5rem !important; }
.benefit-icon i { font-size: 2.5rem !important; color: white !important; }
.benefit-card h3 { color: #1a1a2e !important; margin-bottom: 1rem !important; font-size: 1.4rem !important; }
.benefit-card p { color: #6c757d !important; line-height: 1.7 !important; }

/* Área de Pagamento */
.payment-area { background: #f8f9fa; }
.payment-container { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; margin-top: 3rem; }
.payment-form-card { background: white; padding: 3rem; border-radius: 20px; box-shadow: 0 4px 25px rgba(0,0,0,0.1); }
.payment-step { margin-bottom: 3rem; }
.payment-step h3 { color: #1a1a2e; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.step-number { background: linear-gradient(135deg, #C9A84E, #f4d03f); color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }

/* Formulários */
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; color: #1a1a2e; font-weight: 500; }
.form-control, select { width: 100%; padding: 1rem; border: 2px solid #e0e0e0; border-radius: 8px; font-size: 1rem; transition: all 0.3s; }
.form-control:focus, select:focus { border-color: #C9A84E; outline: none; box-shadow: 0 0 0 3px rgba(201,168,78,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Valor do Pagamento */
.payment-value { background: linear-gradient(135deg, #1a1a2e, #0f3460); color: white; padding: 1.5rem; border-radius: 12px; margin-top: 1.5rem; }
.payment-value p { margin: 0.5rem 0; font-size: 1.1rem; }
.payment-value strong { color: #C9A84E; font-size: 1.3rem; }
.vencimento { font-size: 0.95rem; opacity: 0.9; }

/* Tabs de Pagamento */
.payment-methods-tabs { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.payment-tab { flex: 1; min-width: 150px; padding: 1rem; background: #f8f9fa; border: 2px solid #e0e0e0; border-radius: 10px; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-weight: 500; }
.payment-tab:hover { background: #fff; border-color: #C9A84E; }
.payment-tab.active { background: linear-gradient(135deg, #C9A84E, #f4d03f); color: white; border-color: #C9A84E; }
.payment-tab i { font-size: 1.2rem; }

/* Conteúdo dos Métodos */
.payment-method-content { display: none; }
.payment-method-content.active { display: block; }

/* PIX */
.pix-area { text-align: center; }
.qr-code-container { background: white; padding: 2rem; border: 3px dashed #C9A84E; border-radius: 16px; margin-bottom: 2rem; }
.qr-code-container img { max-width: 200px; margin-bottom: 1rem; }
.pix-info { color: #6c757d; font-size: 0.95rem; }
.pix-copy { margin-top: 2rem; }
.copy-field { display: flex; gap: 1rem; margin-top: 0.5rem; }
.copy-field input { flex: 1; }
.btn-copy { background: #C9A84E; color: white; border: none; padding: 1rem 1.5rem; border-radius: 8px; cursor: pointer; transition: all 0.3s; white-space: nowrap; }
.btn-copy:hover { background: #b8973d; }
.payment-status { background: #d4edda; color: #155724; padding: 1.5rem; border-radius: 12px; margin-top: 2rem; display: flex; align-items: center; justify-content: center; gap: 1rem; }
.payment-status i { font-size: 2rem; }

/* Cartão de Crédito */
.credit-card-form { }
.checkbox-label { display: flex; align-items: center; gap: 0.75rem; cursor: pointer; }
.checkbox-label input[type="checkbox"] { width: 20px; height: 20px; cursor: pointer; }
.btn-block { width: 100%; }

/* Boleto */
.boleto-area { text-align: center; }
.boleto-info { background: #fff3cd; padding: 2rem; border-radius: 12px; margin-bottom: 2rem; }
.boleto-info i { font-size: 3rem; color: #C9A84E; margin-bottom: 1rem; }
.boleto-info h4 { color: #1a1a2e; margin-bottom: 1rem; }
.boleto-info .warning { color: #856404; margin-top: 1rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.boleto-generated { background: #d4edda; padding: 2rem; border-radius: 12px; margin-top: 2rem; }
.boleto-generated .success { color: #155724; font-weight: 600; margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.boleto-generated button { margin: 0.5rem; }

/* Transferência Bancária */
.transfer-area { }
.transfer-info { background: #e7f3ff; padding: 2rem; border-radius: 12px; margin-bottom: 2rem; text-align: center; }
.transfer-info i { font-size: 3rem; color: #0056b3; margin-bottom: 1rem; }
.transfer-info h4 { color: #1a1a2e; margin-bottom: 1rem; }
.banks-transfer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.bank-transfer-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; background: white; border: 2px solid #e0e0e0; border-radius: 12px; text-decoration: none; color: #1a1a2e; transition: all 0.3s; }
.bank-transfer-btn:hover { border-color: #C9A84E; background: #fff8e1; transform: translateY(-5px); box-shadow: 0 4px 15px rgba(201,168,78,0.2); }
.bank-transfer-btn i { font-size: 2rem; color: #C9A84E; margin-bottom: 0.5rem; }
.bank-transfer-btn span { font-weight: 600; font-size: 0.9rem; }
.transfer-details { background: #f8f9fa; padding: 2rem; border-radius: 12px; margin-top: 2rem; }
.transfer-details h5 { color: #1a1a2e; margin-bottom: 1.5rem; text-align: center; }
.bank-details { background: white; padding: 1.5rem; border-radius: 8px; margin-bottom: 1.5rem; }
.bank-details p { margin: 0.75rem 0; color: #495057; display: flex; justify-content: space-between; border-bottom: 1px solid #e0e0e0; padding-bottom: 0.75rem; }
.bank-details p:last-child { border-bottom: none; }
.bank-details strong { color: #1a1a2e; }

/* Débito Automático */
.debit-area { }
.debit-info { background: #d1ecf1; padding: 2rem; border-radius: 12px; margin-bottom: 2rem; text-align: center; }
.debit-info i { font-size: 3rem; color: #0c5460; margin-bottom: 1rem; }
.debit-info h4 { color: #1a1a2e; margin-bottom: 1rem; }

/* Sidebar Resumo */
.payment-sidebar { }
.payment-summary { background: linear-gradient(135deg, #1a1a2e, #0f3460); color: white; padding: 2rem; border-radius: 16px; margin-bottom: 2rem; }
.payment-summary h3 { color: #C9A84E; margin-bottom: 1.5rem; }
.summary-item { display: flex; justify-content: space-between; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.summary-item span { opacity: 0.9; }
.summary-total { display: flex; justify-content: space-between; padding: 1.5rem 0; margin-top: 1rem; border-top: 2px solid #C9A84E; font-size: 1.2rem; font-weight: 700; }
.summary-total strong { color: #C9A84E; }

/* Badges de Segurança */
.security-badges { background: white; padding: 2rem; border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.security-badges h4 { color: #1a1a2e; margin-bottom: 1rem; text-align: center; }
.badges { display: flex; flex-direction: column; gap: 0.75rem; }
.badge { background: #f8f9fa; padding: 0.75rem; border-radius: 8px; display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: #1a1a2e; }
.badge i { color: #28a745; }

/* Bancos */
.banks-section { background: white; }
.banks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2rem; margin-top: 3rem; align-items: center; }
.bank-logo { background: white; padding: 1.5rem; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
.bank-logo:hover { transform: translateY(-5px); box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.bank-logo img { max-width: 100%; height: auto; opacity: 0.7; transition: opacity 0.3s; }
.bank-logo:hover img { opacity: 1; }

/* FAQ */
.faq-container { max-width: 900px; margin: 3rem auto 0; }
.faq-item { background: white; margin-bottom: 1rem; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.faq-question { width: 100%; padding: 1.5rem; background: white; border: none; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 1.1rem; font-weight: 600; color: #1a1a2e; transition: all 0.3s; }
.faq-question:hover { background: #f8f9fa; }
.faq-question i { transition: transform 0.3s; color: #C9A84E; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 1.5rem 1.5rem; color: #6c757d; line-height: 1.7; }

/* Suporte */
.support-section { background: linear-gradient(135deg, #f8f9fa, #e9ecef); }
.support-content { max-width: 900px; margin: 0 auto; }
.support-icon { width: 100px; height: 100px; background: linear-gradient(135deg, #C9A84E, #f4d03f); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; }
.support-icon i { font-size: 3rem; color: white; }
.support-content h2 { color: #1a1a2e; margin-bottom: 1.5rem; }
.support-content p { color: #6c757d; font-size: 1.2rem; margin-bottom: 2.5rem; }
.support-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

/* CTA Final */
.final-cta { background: linear-gradient(135deg, #1a1a2e, #0f3460); color: white; }
.final-cta h2 { color: #C9A84E; margin-bottom: 1.5rem; }
.final-cta p { font-size: 1.2rem; margin-bottom: 2.5rem; line-height: 1.8; }

/* Footer Seals */
.security-seals { display: flex; gap: 2rem; justify-content: center; margin-top: 1.5rem; flex-wrap: wrap; }
.security-seals span { display: flex; align-items: center; gap: 0.5rem; color: #6c757d; font-size: 0.9rem; }
.security-seals i { color: #28a745; }

/* Responsividade Pagamentos */
@media (max-width: 1024px) {
    .payment-container { grid-template-columns: 1fr; }
    .payment-sidebar { order: -1; }
}

@media (max-width: 768px) {
    .pagamentos-hero .hero-content h1 { font-size: 2rem; }
    .pagamentos-hero .hero-subtitle { font-size: 1.1rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .payment-methods-tabs { flex-direction: column; }
    .payment-tab { min-width: 100%; }
    .form-row { grid-template-columns: 1fr; }
    .support-buttons { flex-direction: column; }
    .support-buttons .btn { width: 100%; }
    .banks-grid { grid-template-columns: repeat(2, 1fr); }
    .banks-transfer-grid { grid-template-columns: repeat(2, 1fr); }
    .bank-details p { flex-direction: column; align-items: flex-start; }
}

/* ========================================
   PÁGINA DE CONSULTAS - PREMIUM
   ======================================== */

/* Hero Consultas */
.consultas-hero { min-height: 600px; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; background-attachment: fixed; position: relative; }
.consultas-hero .hero-content h1 { font-size: 3rem; font-weight: 700; margin-bottom: 1.5rem; text-shadow: 2px 2px 8px rgba(0,0,0,0.3); }
.consultas-hero .hero-subtitle { font-size: 1.3rem; color: #C9A84E; margin-bottom: 2.5rem; line-height: 1.8; }

/* Benefícios Consulta */
.benefits-consulta { display: block !important; }
.benefits-grid-consulta { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important; gap: 2rem !important; margin-top: 3rem !important; }
.benefit-card-consulta { background: white !important; padding: 2rem !important; border-radius: 16px !important; box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important; transition: all 0.4s !important; border: 2px solid transparent !important; text-align: center !important; display: block !important; visibility: visible !important; opacity: 1 !important; }
.benefit-card-consulta:hover { transform: translateY(-10px) !important; box-shadow: 0 8px 30px rgba(201,168,78,0.2) !important; border-color: #C9A84E !important; }
.benefit-icon-consulta { width: 80px !important; height: 80px !important; background: linear-gradient(135deg, #C9A84E, #f4d03f) !important; border-radius: 50% !important; display: flex !important; align-items: center !important; justify-content: center !important; margin: 0 auto 1.5rem !important; }
.benefit-icon-consulta i { font-size: 2.5rem !important; color: white !important; }
.benefit-card-consulta h3 { color: #1a1a2e !important; margin-bottom: 1rem !important; font-size: 1.3rem !important; }
.benefit-card-consulta p { color: #6c757d !important; line-height: 1.7 !important; }

/* Agendamento */
.agendamento-section { background: #f8f9fa; }
.agendamento-container { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; margin-top: 3rem; }
.agendamento-form { background: white; padding: 3rem; border-radius: 20px; box-shadow: 0 4px 25px rgba(0,0,0,0.1); }
.agendamento-step { display: none; }
.agendamento-step.active { display: block; }
.agendamento-step h3 { color: #1a1a2e; margin-bottom: 2rem; display: flex; align-items: center; gap: 1rem; font-size: 1.5rem; }
.step-badge { background: linear-gradient(135deg, #C9A84E, #f4d03f); color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }

/* Tabs de Busca */
.search-tabs { display: flex; gap: 1rem; margin: 1rem 0; }
.search-tab { flex: 1; padding: 1rem; background: #f8f9fa; border: 2px solid #e0e0e0; border-radius: 10px; cursor: pointer; transition: all 0.3s; font-weight: 500; text-align: center; }
.search-tab:hover { background: #fff; border-color: #C9A84E; }
.search-tab.active { background: linear-gradient(135deg, #C9A84E, #f4d03f); color: white; border-color: #C9A84E; }
.search-content { display: none; }
.search-content.active { display: block; }

/* Tipo de Consulta */
.consulta-type-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1rem 0; }
.type-tab { padding: 1.5rem; background: white; border: 2px solid #e0e0e0; border-radius: 12px; cursor: pointer; transition: all 0.3s; text-align: center; }
.type-tab:hover { border-color: #C9A84E; }
.type-tab.active { background: linear-gradient(135deg, #C9A84E, #f4d03f); color: white; border-color: #C9A84E; }
.type-tab i { font-size: 2rem; display: block; margin-bottom: 0.5rem; }

/* Localização */
.location-input { display: flex; gap: 1rem; }
.location-input input { flex: 1; }
.btn-location { background: #C9A84E; color: white; border: none; padding: 1rem 1.5rem; border-radius: 8px; cursor: pointer; transition: all 0.3s; white-space: nowrap; }
.btn-location:hover { background: #b8973d; }

/* Calendário */
.calendar-container { margin: 2rem 0; }
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.calendar-header h4 { margin: 0; color: #1a1a2e; }
.btn-calendar-nav { background: #f8f9fa; border: 2px solid #e0e0e0; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; transition: all 0.3s; }
.btn-calendar-nav:hover { background: #C9A84E; color: white; border-color: #C9A84E; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.5rem; }
.calendar-day-header { padding: 0.75rem; text-align: center; font-weight: 600; color: #6c757d; font-size: 0.9rem; }
.calendar-day { padding: 1rem; text-align: center; background: #f8f9fa; border-radius: 8px; cursor: pointer; transition: all 0.3s; }
.calendar-day:hover:not(.disabled):not(.empty) { background: #C9A84E; color: white; }
.calendar-day.selected { background: linear-gradient(135deg, #C9A84E, #f4d03f); color: white; font-weight: 700; }
.calendar-day.disabled { opacity: 0.3; cursor: not-allowed; }
.calendar-day.empty { background: transparent; cursor: default; }

/* Horários */
.horarios-container { margin-top: 2rem; }
.horarios-container h4 { color: #1a1a2e; margin-bottom: 1rem; }
.horarios-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 1rem; }
.horario-btn { padding: 1rem; background: #f8f9fa; border: 2px solid #e0e0e0; border-radius: 8px; cursor: pointer; transition: all 0.3s; font-weight: 500; }
.horario-btn:hover { background: #fff; border-color: #C9A84E; }
.horario-btn.selected { background: linear-gradient(135deg, #C9A84E, #f4d03f); color: white; border-color: #C9A84E; }

/* Botões de Navegação */
.step-buttons { display: flex; gap: 1rem; margin-top: 2rem; }
.step-buttons .btn { flex: 1; }

/* Resumo */
.resumo-agendamento { background: #f8f9fa; padding: 2rem; border-radius: 12px; margin-bottom: 2rem; }
.resumo-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid #e0e0e0; }
.resumo-item:last-child { border-bottom: none; }
.resumo-item i { font-size: 1.5rem; color: #C9A84E; }
.resumo-item strong { display: block; color: #1a1a2e; margin-bottom: 0.25rem; }
.resumo-item p { margin: 0; color: #6c757d; }

/* Sidebar Agendamento */
.agendamento-sidebar { }
.info-card { background: white; padding: 2rem; border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); margin-bottom: 2rem; }
.info-card h4 { color: #1a1a2e; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.info-card h4 i { color: #C9A84E; }
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { padding: 0.75rem 0; display: flex; align-items: center; gap: 0.75rem; color: #6c757d; }
.info-list li i { color: #28a745; }

/* Telemedicina */
.telemedicina-section { background: linear-gradient(135deg, #f8f9fa, #e9ecef); }
.telemedicina-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.telemedicina-text h2 { color: #1a1a2e; margin-bottom: 1rem; }
.telemedicina-text .lead { font-size: 1.2rem; color: #6c757d; margin-bottom: 2rem; }
.features-list { list-style: none; padding: 0; margin: 2rem 0; }
.features-list li { padding: 0.75rem 0; display: flex; align-items: center; gap: 1rem; font-size: 1.1rem; color: #495057; }
.features-list li i { color: #28a745; font-size: 1.3rem; }
.video-placeholder { background: linear-gradient(135deg, #1a1a2e, #0f3460); padding: 4rem; border-radius: 20px; text-align: center; color: white; }
.video-placeholder i { font-size: 5rem; color: #C9A84E; margin-bottom: 1rem; }
.video-placeholder p { font-size: 1.2rem; }

/* Prontuário */
.prontuario-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
.prontuario-card { background: white; padding: 2rem; border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); text-align: center; transition: all 0.3s; }
.prontuario-card:hover { transform: translateY(-10px); box-shadow: 0 8px 25px rgba(201,168,78,0.2); }
.prontuario-card i { font-size: 3rem; color: #C9A84E; margin-bottom: 1rem; }
.prontuario-card h4 { color: #1a1a2e; margin-bottom: 0.75rem; }
.prontuario-card p { color: #6c757d; line-height: 1.6; }

/* CTA Final Consulta */
.final-cta-consulta { background: linear-gradient(135deg, #1a1a2e, #0f3460); color: white; }
.final-cta-consulta h2 { color: #C9A84E; margin-bottom: 1.5rem; }
.final-cta-consulta p { font-size: 1.2rem; margin-bottom: 2.5rem; line-height: 1.8; }

/* Responsividade Consultas */
@media (max-width: 1024px) {
    .agendamento-container { grid-template-columns: 1fr; }
    .agendamento-sidebar { order: -1; }
    .telemedicina-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .consultas-hero .hero-content h1 { font-size: 2rem; }
    .consultas-hero .hero-subtitle { font-size: 1.1rem; }
    .benefits-grid-consulta { grid-template-columns: 1fr; }
    .search-tabs { flex-direction: column; }
    .consulta-type-tabs { grid-template-columns: 1fr; }
    .location-input { flex-direction: column; }
    .btn-location { width: 100%; }
    .calendar-grid { gap: 0.25rem; }
    .calendar-day { padding: 0.5rem; font-size: 0.9rem; }
    .horarios-grid { grid-template-columns: repeat(3, 1fr); }
    .step-buttons { flex-direction: column; }
}

/* ========================================
   PÁGINA REDE CREDENCIADA - PREMIUM
   ======================================== */

/* Hero Rede Credenciada */
.rede-hero { min-height: 600px; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; background-attachment: fixed; position: relative; }
.rede-hero .hero-content h1 { font-size: 3rem; font-weight: 700; margin-bottom: 1.5rem; text-shadow: 2px 2px 8px rgba(0,0,0,0.3); }
.rede-hero .hero-subtitle { font-size: 1.2rem; color: #C9A84E; margin-bottom: 2.5rem; line-height: 1.8; max-width: 900px; margin-left: auto; margin-right: auto; }

/* Números Section */
.numeros-section { background: linear-gradient(135deg, #f8f9fa, #e9ecef); }
.numeros-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
.numero-card { background: white; padding: 2.5rem; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: all 0.4s; border: 2px solid transparent; text-align: center; }
.numero-card:hover { transform: translateY(-10px); box-shadow: 0 8px 30px rgba(201,168,78,0.2); border-color: #C9A84E; }
.numero-icon { width: 80px; height: 80px; background: linear-gradient(135deg, #C9A84E, #f4d03f); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.numero-icon i { font-size: 2.5rem; color: white; }
.numero-content { min-height: 120px; }
.numero-counter { display: block !important; font-size: 3rem !important; font-weight: 700 !important; color: #1a1a2e !important; margin-bottom: 0.5rem !important; line-height: 1.2 !important; visibility: visible !important; opacity: 1 !important; }
.numero-card h3 { color: #1a1a2e; margin-bottom: 0.75rem; font-size: 1.2rem; }
.numero-card p { color: #6c757d; line-height: 1.6; }

/* Mapa Brasil */
.mapa-brasil-section { }
.mapa-container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; align-items: center; }
.mapa-brasil { background: white; padding: 2rem; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.brasil-svg { width: 100%; height: auto; max-width: 450px; margin: 0 auto; display: block; }
.estado { cursor: pointer; transition: all 0.3s; stroke: #1a1a2e; stroke-width: 0.5; }
.estado:hover { opacity: 1 !important; fill: #f4d03f !important; transform: scale(1.05); }
.mapa-legenda { text-align: center; margin-top: 1.5rem; }
.mapa-legenda p { color: #6c757d; font-size: 0.95rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.mapa-legenda i { color: #C9A84E; font-size: 1.2rem; }
.mapa-info { background: white; padding: 2.5rem; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); min-height: 300px; }
.estado-info h3 { color: #1a1a2e; margin-bottom: 1rem; font-size: 1.8rem; }
.estado-info p { color: #6c757d; margin-bottom: 1.5rem; }
.estado-stats { margin-top: 2rem; }
.stat-row { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid #e0e0e0; }
.stat-row:last-child { border-bottom: none; }
.stat-row i { font-size: 1.5rem; color: #C9A84E; }
.stat-row strong { color: #1a1a2e; font-size: 1.3rem; }

/* Buscador */
.buscador-section { background: #f8f9fa; }
.buscador-container { max-width: 1200px; margin: 0 auto; }
.search-box { background: white; padding: 2.5rem; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); margin-bottom: 3rem; }
.search-input-group { position: relative; margin-bottom: 1.5rem; }
.search-input-group i { position: absolute; left: 1.5rem; top: 50%; transform: translateY(-50%); color: #6c757d; font-size: 1.2rem; }
.search-input { width: 100%; padding: 1.2rem 1.5rem 1.2rem 3.5rem; border: 2px solid #e0e0e0; border-radius: 12px; font-size: 1.1rem; transition: all 0.3s; }
.search-input:focus { border-color: #C9A84E; outline: none; box-shadow: 0 0 0 3px rgba(201,168,78,0.1); }
.search-filters { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.filter-select, .filter-input { padding: 1rem; border: 2px solid #e0e0e0; border-radius: 8px; font-size: 1rem; transition: all 0.3s; }
.filter-select:focus, .filter-input:focus { border-color: #C9A84E; outline: none; }

/* Resultados */
.resultados-container { display: none; }
.resultados-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.resultados-header h3 { color: #1a1a2e; margin: 0; }
.resultados-count { color: #6c757d; font-size: 1rem; }
.resultados-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 2rem; }
.resultado-card { background: white; border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: all 0.4s; overflow: hidden; }
.resultado-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(201,168,78,0.2); }
.resultado-header { display: flex; gap: 1rem; padding: 1.5rem; background: linear-gradient(135deg, #f8f9fa, #e9ecef); }
.resultado-icon { width: 60px; height: 60px; background: linear-gradient(135deg, #C9A84E, #f4d03f); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.resultado-icon i { font-size: 1.8rem; color: white; }
.resultado-info h4 { color: #1a1a2e; margin: 0 0 0.5rem 0; font-size: 1.2rem; }
.resultado-tipo { color: #6c757d; font-size: 0.9rem; }
.resultado-body { padding: 1.5rem; }
.resultado-body p { margin: 0.75rem 0; color: #495057; display: flex; align-items: center; gap: 0.75rem; }
.resultado-body i { color: #C9A84E; width: 20px; }
.resultado-especialidades, .resultado-servicos { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.badge { background: #e9ecef; color: #495057; padding: 0.4rem 0.8rem; border-radius: 20px; font-size: 0.85rem; }
.badge-success { background: #d4edda; color: #155724; padding: 0.4rem 0.8rem; border-radius: 20px; font-size: 0.85rem; }
.resultado-rating { display: flex; align-items: center; gap: 0.5rem; margin-top: 1rem; color: #C9A84E; }
.resultado-rating i { font-size: 1rem; }
.resultado-rating span { color: #6c757d; font-size: 0.9rem; margin-left: 0.5rem; }
.resultado-footer { display: flex; gap: 1rem; padding: 1.5rem; border-top: 1px solid #e0e0e0; }
.resultado-footer .btn { flex: 1; }

/* CTA Final Rede */
.final-cta-rede { background: linear-gradient(135deg, #1a1a2e, #0f3460); color: white; }
.final-cta-rede h2 { color: #C9A84E; margin-bottom: 1.5rem; }
.final-cta-rede p { font-size: 1.2rem; margin-bottom: 2.5rem; line-height: 1.8; }

/* Responsividade Rede Credenciada */
@media (max-width: 1024px) {
    .mapa-container { grid-template-columns: 1fr; }
    .resultados-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .rede-hero .hero-content h1 { font-size: 2rem; }
    .rede-hero .hero-subtitle { font-size: 1rem; }
    .numeros-grid { grid-template-columns: 1fr; }
    .search-filters { grid-template-columns: 1fr; }
    .resultados-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .resultado-footer { flex-direction: column; }
}

/* ========================================
   PÁGINA BLOG - PREMIUM
   ======================================== */

/* Hero Blog */
.blog-hero { min-height: 550px; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; background-attachment: fixed; position: relative; }
.blog-hero .hero-content h1 { font-size: 3.5rem; font-weight: 700; margin-bottom: 1.5rem; text-shadow: 2px 2px 8px rgba(0,0,0,0.3); }
.blog-hero .hero-subtitle { font-size: 1.2rem; color: #C9A84E; margin-bottom: 2.5rem; line-height: 1.8; max-width: 800px; margin-left: auto; margin-right: auto; }
.hero-search { display: flex; align-items: center; max-width: 600px; margin: 0 auto 2rem; background: white; border-radius: 50px; padding: 0.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.hero-search i { color: #6c757d; margin-left: 1.5rem; font-size: 1.2rem; }
.hero-search-input { flex: 1; border: none; padding: 1rem; font-size: 1rem; outline: none; background: transparent; }
.hero-search .btn { border-radius: 50px; padding: 0.8rem 2rem; }

/* Post em Destaque */
.featured-post-section { }
.featured-post-container { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; margin-top: 3rem; }
.featured-post { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: all 0.4s; }
.featured-post:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(201,168,78,0.2); }
.featured-post-image { position: relative; height: 400px; overflow: hidden; }
.featured-post-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.featured-post:hover .featured-post-image img { transform: scale(1.05); }
.badge-new { position: absolute; top: 1rem; left: 1rem; background: #28a745; color: white; padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600; }
.badge-category { position: absolute; top: 1rem; right: 1rem; padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600; color: white; }
.badge-category.tecnologia { background: #007bff; }
.badge-category.saude { background: #28a745; }
.badge-category.dicas { background: #ffc107; color: #1a1a2e; }
.badge-category.franquias { background: #6f42c1; }
.badge-category.planos { background: #17a2b8; }
.badge-category.noticias { background: #fd7e14; }
.featured-post-content { padding: 2.5rem; }
.post-meta { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; color: #6c757d; font-size: 0.9rem; }
.post-meta i { color: #C9A84E; }
.featured-post-content h2 { color: #1a1a2e; margin-bottom: 1.5rem; font-size: 2rem; line-height: 1.4; }
.featured-post-content p { color: #495057; line-height: 1.8; margin-bottom: 2rem; }

/* Mini Posts Recentes */
.recent-mini-posts { display: flex; flex-direction: column; gap: 1.5rem; }
.recent-mini-posts h3 { color: #1a1a2e; margin-bottom: 1rem; font-size: 1.3rem; }
.mini-post { display: flex; gap: 1rem; background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.08); transition: all 0.3s; cursor: pointer; }
.mini-post:hover { transform: translateX(5px); box-shadow: 0 4px 15px rgba(201,168,78,0.2); }
.mini-post img { width: 120px; height: 100px; object-fit: cover; }
.mini-post-content { padding: 1rem; flex: 1; }
.mini-post-content h4 { color: #1a1a2e; font-size: 1rem; margin: 0.5rem 0; line-height: 1.4; }
.post-meta-mini { color: #6c757d; font-size: 0.85rem; }

/* Layout Blog com Sidebar */
.blog-layout { display: grid; grid-template-columns: 300px 1fr; gap: 3rem; }

/* Sidebar */
.blog-sidebar { }
.sidebar-widget { background: white; padding: 2rem; border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); margin-bottom: 2rem; }
.sidebar-widget h3 { color: #1a1a2e; margin-bottom: 1.5rem; font-size: 1.2rem; border-bottom: 2px solid #C9A84E; padding-bottom: 0.75rem; }
.sidebar-search { position: relative; }
.sidebar-search i { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: #6c757d; }
.sidebar-search input { width: 100%; padding: 0.8rem 1rem 0.8rem 3rem; border: 2px solid #e0e0e0; border-radius: 8px; transition: all 0.3s; }
.sidebar-search input:focus { border-color: #C9A84E; outline: none; }
.categories-list { list-style: none; padding: 0; margin: 0; }
.categories-list li { margin-bottom: 0.75rem; }
.categories-list a { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; border-radius: 8px; color: #495057; text-decoration: none; transition: all 0.3s; }
.categories-list a:hover, .categories-list a.active { background: linear-gradient(135deg, #C9A84E, #f4d03f); color: white; }
.categories-list i { margin-right: 0.75rem; }
.categories-list .count { font-size: 0.85rem; opacity: 0.8; }
.popular-posts { }
.popular-post { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid #e0e0e0; }
.popular-post:last-child { border-bottom: none; }
.popular-number { width: 35px; height: 35px; background: linear-gradient(135deg, #C9A84E, #f4d03f); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.popular-post h4 { color: #1a1a2e; font-size: 0.95rem; margin: 0 0 0.5rem 0; line-height: 1.4; }
.popular-views { color: #6c757d; font-size: 0.85rem; }
.popular-views i { color: #C9A84E; margin-right: 0.25rem; }
.newsletter-widget { background: linear-gradient(135deg, #1a1a2e, #0f3460); color: white; }
.newsletter-widget h3 { color: #C9A84E; border-color: #C9A84E; }
.newsletter-widget p { color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; }
.newsletter-form input { width: 100%; padding: 0.8rem; border: 2px solid rgba(255,255,255,0.3); border-radius: 8px; margin-bottom: 1rem; background: rgba(255,255,255,0.1); color: white; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.7); }

/* Grid de Artigos */
.blog-main-content { }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2.5rem; }
.blog-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: all 0.4s; }
.blog-card:hover { transform: translateY(-10px); box-shadow: 0 8px 25px rgba(201,168,78,0.2); }
.blog-card-image { position: relative; height: 220px; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-image img { transform: scale(1.1); }
.blog-card-content { padding: 2rem; }
.blog-card-content h3 { color: #1a1a2e; margin: 1rem 0; font-size: 1.3rem; line-height: 1.4; }
.blog-card-content p { color: #495057; line-height: 1.7; margin-bottom: 1.5rem; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid #e0e0e0; }
.author { color: #6c757d; font-size: 0.9rem; }
.author i { color: #C9A84E; margin-right: 0.5rem; }
.read-more { color: #C9A84E; text-decoration: none; font-weight: 600; transition: all 0.3s; }
.read-more:hover { color: #1a1a2e; }
.read-more i { margin-left: 0.5rem; transition: transform 0.3s; }
.read-more:hover i { transform: translateX(5px); }

/* Paginação */
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.pagination-btn { padding: 0.75rem 1.25rem; border: 2px solid #e0e0e0; background: white; color: #495057; border-radius: 8px; cursor: pointer; transition: all 0.3s; font-weight: 600; }
.pagination-btn:hover:not(:disabled) { border-color: #C9A84E; background: #C9A84E; color: white; }
.pagination-btn.active { border-color: #C9A84E; background: #C9A84E; color: white; }
.pagination-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Top Posts Horizontal */
.top-posts-section { background: linear-gradient(135deg, #f8f9fa, #e9ecef); }
.top-posts-slider { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
.top-post-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: all 0.4s; position: relative; cursor: pointer; }
.top-post-card:hover { transform: translateY(-10px); box-shadow: 0 8px 25px rgba(201,168,78,0.2); }
.top-badge { position: absolute; top: 1rem; left: 1rem; background: rgba(0,0,0,0.8); color: white; padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.9rem; font-weight: 700; z-index: 1; }
.top-post-card img { width: 100%; height: 180px; object-fit: cover; transition: transform 0.4s; }
.top-post-card:hover img { transform: scale(1.1); }
.top-post-card h4 { padding: 1.5rem; color: #1a1a2e; font-size: 1.1rem; margin: 0; }
.top-post-card .views { display: block; padding: 0 1.5rem 1.5rem; color: #6c757d; font-size: 0.9rem; }

/* CTA Blog */
.blog-cta-section { background: linear-gradient(135deg, #1a1a2e, #0f3460); color: white; padding: 5rem 0; }
.blog-cta-section h2 { color: #C9A84E; margin-bottom: 1.5rem; font-size: 2.5rem; }
.blog-cta-section p { font-size: 1.2rem; margin-bottom: 2.5rem; }
.cta-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

/* Responsividade Blog */
@media (max-width: 1024px) {
    .blog-layout { grid-template-columns: 1fr; }
    .blog-sidebar { order: 2; }
    .featured-post-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .blog-hero .hero-content h1 { font-size: 2rem; }
    .blog-hero .hero-subtitle { font-size: 1rem; }
    .hero-search { flex-direction: column; border-radius: 16px; }
    .hero-search .btn { width: 100%; border-radius: 8px; }
    .blog-grid { grid-template-columns: 1fr; }
    .top-posts-slider { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; }
}

/* Responsividade Especialidades */
@media (max-width: 768px) {
    .especialidades-hero .hero-content h1 { font-size: 2rem; }
    .especialidades-hero .hero-subtitle { font-size: 1.1rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .search-form .form-row { grid-template-columns: 1fr; }
    .specialties-grid-full { grid-template-columns: 1fr; }
    #resultsContainer { grid-template-columns: 1fr; }
    .info-actions { flex-direction: column; }
    .info-actions .btn { width: 100%; }
}

/* ========================================
   FORMULÁRIO DE DADOS PESSOAIS
   ======================================== */
.dados-pessoais-form {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.dados-pessoais-form h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dados-pessoais-form h4 i {
    color: #667eea;
}

.dados-pessoais-form .form-group {
    margin-bottom: 1.5rem;
}

.dados-pessoais-form label {
    display: block;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.dados-pessoais-form .form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.dados-pessoais-form .form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.dados-pessoais-form textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

@media (max-width: 768px) {
    .dados-pessoais-form {
        padding: 1.5rem;
    }
    
    .dados-pessoais-form h4 {
        font-size: 1.1rem;
    }
}

/* ========================================
   FORMULÁRIO EM 4 ETAPAS - FINANCIAMENTO
   ======================================== */
.progress-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem auto;
    max-width: 900px;
    padding: 0 1rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 2;
}

.progress-step.active .step-circle {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transform: scale(1.1);
}

.progress-step.completed .step-circle {
    background: #28a745;
    color: white;
}

.progress-step.completed .step-circle::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.step-label {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    text-align: center;
}

.progress-step.active .step-label {
    color: #667eea;
    font-weight: 700;
}

.progress-line {
    height: 3px;
    background: #e0e0e0;
    flex: 1;
    margin: 0 -1rem;
    position: relative;
    top: -20px;
    z-index: 1;
}

.progress-step.completed + .progress-line {
    background: #28a745;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-step h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
}

.form-step h3 i {
    color: #667eea;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-end;
}

.form-buttons .btn {
    min-width: 150px;
}

.terms-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    color: #555;
    gap: 0.75rem;
}

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-container a {
    color: #667eea;
    text-decoration: underline;
}

.checkbox-container a:hover {
    color: #764ba2;
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: #6c757d;
    font-size: 0.85rem;
}

/* Responsividade do formulário em etapas */
@media (max-width: 768px) {
    .progress-container {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .progress-step {
        flex: 0 0 calc(50% - 0.5rem);
    }
    
    .progress-line {
        display: none;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .form-step h3 {
        font-size: 1.2rem;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .form-buttons .btn {
        width: 100%;
        min-width: 100%;
    }
}

/* Estilo para links de bancos e especialidades */
.partner-item {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.specialty-item {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.specialty-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* ========================================
   TABELA MODERNA DE PREÇOS
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.pricing-table-section {
    background: linear-gradient(135deg, #1a4d2e 0%, #0d2818 100%);
    padding: 4rem 0;
    font-family: 'Poppins', sans-serif;
}

.pricing-header {
    margin-bottom: 3rem;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

.modern-pricing-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    overflow-x: auto;
}

.elegant-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.elegant-table thead {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.table-header-main {
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid #ffd700;
}

.table-row {
    transition: all 0.3s ease;
    border-bottom: 1px solid #e0e0e0;
}

.table-row:hover {
    background: rgba(255, 215, 0, 0.05);
    transform: scale(1.01);
}

.featured-row {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-left: 4px solid #ffd700;
}

.featured-row:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.08) 100%);
}

.service-row {
    background: rgba(240, 240, 240, 0.3);
}

.plan-name {
    padding: 1.5rem 1rem;
    font-size: 1.1rem;
    color: #1a4d2e;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.plan-icon-small {
    font-size: 1.5rem;
    color: #ffd700;
    min-width: 30px;
}

.popular-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.plan-price-cell {
    padding: 1.5rem 1rem;
    text-align: center;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a4d2e;
    display: block;
}

.price-period {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

.plan-details {
    padding: 1.5rem 1rem;
    color: #555;
    font-size: 0.95rem;
}

.plan-action {
    padding: 1.5rem 1rem;
    text-align: center;
}

.btn-subscribe {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffd700;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #ffd700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-subscribe:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.featured-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    border-color: #000;
}

.featured-btn:hover {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffd700;
    border-color: #ffd700;
}

.divider-row {
    height: 20px;
    background: transparent;
}

.table-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ffd700 50%, transparent 100%);
    margin: 0 2rem;
}

.pricing-footer {
    margin-top: 2rem;
}

.footer-note {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-note i {
    color: #ffd700;
    font-size: 1.2rem;
}

/* Responsividade da Tabela */
@media (max-width: 1024px) {
    .pricing-title {
        font-size: 2rem;
    }
    
    .pricing-subtitle {
        font-size: 1rem;
    }
    
    .table-header-main {
        font-size: 0.85rem;
        padding: 1rem 0.75rem;
    }
    
    .plan-name {
        font-size: 1rem;
        padding: 1rem 0.75rem;
    }
    
    .price-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-table-section {
        padding: 3rem 0;
    }
    
    .pricing-title {
        font-size: 1.5rem;
    }
    
    .pricing-subtitle {
        font-size: 0.9rem;
    }
    
    .modern-pricing-table {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .elegant-table {
        font-size: 0.85rem;
    }
    
    .table-header-main {
        padding: 0.75rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .plan-name {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .plan-icon-small {
        font-size: 1.2rem;
    }
    
    .popular-badge {
        margin-left: 0;
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }
    
    .price-value {
        font-size: 1.2rem;
    }
    
    .price-period {
        font-size: 0.75rem;
    }
    
    .plan-details {
        font-size: 0.8rem;
        padding: 1rem 0.5rem;
    }
    
    .btn-subscribe {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .footer-note {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .modern-pricing-table {
        padding: 0.5rem;
    }
    
    .elegant-table {
        display: block;
        overflow-x: auto;
    }
    
    .pricing-title {
        font-size: 1.3rem;
    }
    
    .table-header-main:nth-child(3) {
        display: none;
    }
    
    .plan-details {
        display: none;
    }
    
    .btn-subscribe {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
}

/* ========================================
   HERO CAROUSEL SECTION
   ======================================== */
.hero-carousel-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-carousel-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: none;
}

.hero-carousel-slide.active {
    opacity: 1;
    display: block;
}

.hero-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 900px;
    color: white;
}

.hero-carousel-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-carousel-content p {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out;
}

.hero-carousel-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out;
}

.hero-carousel-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-carousel-buttons .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
}

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

/* Navigation Buttons */
.hero-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.hero-carousel-btn i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.hero-carousel-prev {
    left: 30px;
}

.hero-carousel-next {
    right: 30px;
}

/* Indicators */
.hero-carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-carousel-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.hero-carousel-indicator.active {
    background: white;
    width: 40px;
    border-radius: 7px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Hero Carousel */
@media (max-width: 768px) {
    .hero-carousel-container {
        height: 500px;
    }
    
    .hero-carousel-content h1 {
        font-size: 2rem;
    }
    
    .hero-carousel-content p {
        font-size: 1.2rem;
    }
    
    .hero-carousel-buttons .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .hero-carousel-btn {
        width: 45px;
        height: 45px;
    }
    
    .hero-carousel-btn i {
        font-size: 1.2rem;
    }
    
    .hero-carousel-prev {
        left: 15px;
    }
    
    .hero-carousel-next {
        right: 15px;
    }
    
    .hero-carousel-indicators {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-carousel-container {
        height: 400px;
    }
    
    .hero-carousel-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-carousel-content p {
        font-size: 1rem;
    }
    
    .hero-carousel-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
}
