:root {
    --primary-color: #4B7DDD;
    --secondary-color: #3A5FB8;
    --accent-color: #C4A962;
    --text-dark: #2C3E50;
    --text-medium: #546E7A;
    --text-light: #7F8C8D;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-gray: #F5F7FA;
    --border-color: #E1E8ED;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Top Bar */
.top-bar {
    background: var(--text-dark);
    color: white;
    padding: 10px 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    gap: 2rem;
}

.top-bar-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s;
}

.top-bar-link:hover {
    opacity: 0.8;
}

.top-bar-link i {
    font-size: 1rem;
}

.top-bar-text {
    opacity: 0.9;
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    background: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 20px;
}

.nav-logo .logo-img {
    height: 65px;
    width: auto;
    transition: transform 0.3s;
}

.nav-logo .logo-img:hover {
    transform: scale(1.05);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
    display: block;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient);
    transition: width 0.3s;
}

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

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
}

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

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(78, 205, 196, 0.1) 0%, transparent 100%);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Área do Cliente */
.btn-area-cliente {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
    border-radius: var(--radius-sm);
}

.btn-area-cliente:hover {
    color: var(--primary-color);
    background: rgba(78, 205, 196, 0.1);
}

.btn-area-cliente i {
    font-size: 1.125rem;
}

/* Botão CTA Nav */
.btn-cta-nav {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Buttons */
.btn {
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.btn i {
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

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

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

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

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

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #f5f5f5;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content-slider {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 60px;
}

.hero-main-title {
    font-size: 4.5rem;
    font-weight: 300;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
    text-transform: lowercase;
}

/* Network Search */
.network-search {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.search-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: white;
}

.search-header i {
    color: white;
    font-size: 1rem;
}

.search-header span {
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.search-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.search-input-wrapper {
    display: flex;
    gap: 0.5rem;
}

.search-input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: white;
    background: white;
}

.search-input::placeholder {
    color: var(--text-light);
}

.search-button {
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.search-button:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Slider Controls */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-prev:hover,
.slider-next:hover {
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    gap: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: white;
    width: 36px;
    border-radius: 6px;
}

/* Plans Cards Section */
.plans-cards-section {
    padding: 0;
    background: white;
}

.plans-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 600px;
}

.plan-card-large {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 4rem;
    transition: all 0.5s ease;
}

.plan-card-large:hover {
    transform: scale(1.02);
}

.plan-card-large:hover .plan-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.medical-plan {
    background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1200&h=800&fit=crop');
}

.dental-plan {
    background-image: url('https://images.unsplash.com/photo-1606811971618-4486d14f3f99?w=1200&h=800&fit=crop');
}

.plan-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.plan-card-content {
    position: relative;
    z-index: 2;
    color: white;
}

.plan-card-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.plan-card-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: lowercase;
}

.plan-card-description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.plan-card-buttons {
    display: flex;
    gap: 1rem;
}

.btn-plan-card {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

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

.btn-primary-plan:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(75, 125, 221, 0.4);
}

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

.btn-secondary-plan:hover {
    background: #b39654;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(196, 169, 98, 0.4);
}

/* Plans Introduction Section */
.plans-intro-section {
    padding: 80px 0 60px;
    background: var(--bg-light);
}

.plans-intro-section .section-header {
    max-width: 900px;
    margin: 0 auto;
}

.plans-intro-section .section-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Quote Request Section */
.quote-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 500px;
}

.quote-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?w=1920&h=800&fit=crop');
    background-size: cover;
    background-position: center;
}

.quote-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.quote-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.quote-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: white;
    opacity: 0.95;
}

.quote-title {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: white;
}

.quote-subtitle {
    font-size: 1.375rem;
    margin-bottom: 3rem;
    color: white;
    font-weight: 300;
}

.quote-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-quote {
    padding: 1.125rem 3rem;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    min-width: 200px;
}

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

.btn-treatments:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(75, 125, 221, 0.4);
}

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

.btn-differentials:hover {
    background: #b39654;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(196, 169, 98, 0.4);
}

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

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

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1) 0%, rgba(91, 127, 255, 0.1) 100%);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Plans Section */
.plans {
    background: white;
}

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

.plan-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.plan-featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.03) 0%, rgba(91, 127, 255, 0.03) 100%);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.plan-icon i {
    font-size: 2.25rem;
    color: white;
}

.plan-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.plan-description {
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.plan-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-medium);
}

.plan-benefits i {
    color: var(--primary-color);
    font-size: 1rem;
}

.btn-plan {
    width: 100%;
    justify-content: center;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-plan-featured {
    width: 100%;
    justify-content: center;
    background: var(--gradient);
    color: white;
}

.btn-plan-featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

/* Dental Section */
.dental {
    background: var(--bg-gray);
}

.dental-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.dental-icon-wrapper {
    width: 150px;
    height: 150px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.dental-icon-wrapper i {
    font-size: 4rem;
    color: white;
}

.dental-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.dental-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dental-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.dental-feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.dental-feature h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.dental-feature p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Partners Section */
.partners {
    background: white;
}

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

.partner-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

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

.partner-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.partner-desc {
    color: var(--text-medium);
    font-size: 0.875rem;
}

/* Why Choose Section */
.why-choose {
    background: var(--bg-gray);
}

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

.why-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1) 0%, rgba(91, 127, 255, 0.1) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.why-icon i {
    font-size: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-title {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.why-description {
    color: var(--text-medium);
    line-height: 1.7;
}

/* CTA Section */
.cta {
    background: var(--gradient);
    color: white;
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

.btn-cta-primary {
    background: white;
    color: var(--primary-color);
    padding: 1.125rem 2.25rem;
}

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

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1.125rem 2.25rem;
}

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

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

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

.contact-card {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: var(--radius);
    transition: all 0.3s;
}

.contact-card:hover {
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

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

.contact-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-card-text {
    color: var(--text-medium);
    margin-bottom: 0.75rem;
}

.contact-card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.contact-card-link:hover {
    gap: 0.75rem;
}

.contact-card-hours {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-form-wrapper {
    background: var(--bg-gray);
    padding: 3rem;
    border-radius: var(--radius-lg);
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-subtitle {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

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

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

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

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-input::placeholder {
    color: var(--text-light);
}

select.form-input {
    cursor: pointer;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    
}

.footer-logo-img {
    height: 80px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.875rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: white;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Assistant Float Button */
.assistant-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(78, 205, 196, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.assistant-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(78, 205, 196, 0.6);
}

.assistant-float i {
    font-size: 2rem;
    color: white;
}

.assistant-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--accent-color);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    animation: bounce 2s infinite;
}

.assistant-badge.hidden {
    display: none;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(78, 205, 196, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(78, 205, 196, 0.7);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Assistant Chat */
.assistant-chat {
    display: none;
    position: fixed;
    bottom: 110px;
    right: 30px;
    z-index: 1001;
    animation: slideUp 0.3s ease;
}

.assistant-chat.active {
    display: block;
}

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

.assistant-container {
    width: 360px;
    height: 520px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.assistant-header {
    background: var(--gradient);
    color: white;
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.assistant-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.assistant-avatar {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.assistant-avatar i {
    font-size: 1.3rem;
}

.assistant-info h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.assistant-status {
    font-size: 0.8rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.assistant-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 0.9rem;
}

.assistant-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.assistant-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    background: #f8fafc;
    position: relative;
}

.assistant-messages {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.message {
    display: flex;
    animation: fadeIn 0.3s ease;
}

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

.message-content {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    max-width: 85%;
    line-height: 1.5;
    font-size: 0.9rem;
}

.bot-message .message-content {
    background: white;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.user-message {
    justify-content: flex-end;
}

.user-message .message-content {
    background: var(--gradient);
    color: white;
}

.typing-indicator {
    display: none;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 12px;
    width: fit-content;
    border: 1px solid var(--border-color);
    margin-bottom: 0.75rem;
}

.typing-indicator.active {
    display: flex;
    gap: 0.35rem;
    align-items: center;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.whatsapp-redirect-btn {
    padding: 0.75rem 1.25rem;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.whatsapp-redirect-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.assistant-footer {
    padding: 0.875rem;
    border-top: 1px solid var(--border-color);
    background: white;
}

.assistant-quick-actions {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
    overflow-x: auto;
    padding-bottom: 0.4rem;
}

.assistant-quick-actions::-webkit-scrollbar {
    height: 4px;
}

.assistant-quick-actions::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.quick-action-btn {
    padding: 0.45rem 0.85rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
    flex-shrink: 0;
}

.quick-action-btn:hover {
    border-color: var(--primary-color);
    background: rgba(78, 205, 196, 0.05);
}

.assistant-input-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.assistant-input {
    flex: 1;
    padding: 0.75rem 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 22px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    transition: border-color 0.3s;
}

.assistant-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.assistant-send-btn {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.assistant-send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
    .top-bar {
        display: none;
    }

    .nav {
        padding: 1rem 20px;
    }

    .nav-logo .logo-img {
        height: 55px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: white;
        width: 280px;
        height: 100vh;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s;
        gap: 0;
        overflow-y: auto;
        z-index: 1001;
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        padding: 1rem 0;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    /* Dropdown Mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-gray);
        margin: 0;
        padding: 0.5rem 0;
        display: none;
    }

    .nav-item.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .nav-toggle {
        display: block;
        z-index: 1002;
    }

    .nav-actions .btn-area-cliente,
    .nav-actions .btn-cta-nav {
        display: none;
    }

    /* Hero Slider Mobile */
    .hero-slider {
        height: auto;
        min-height: 500px;
    }

    .hero-main-title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .network-search {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .search-input-wrapper {
        flex-direction: column;
    }

    .search-button {
        width: 100%;
    }

    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-prev {
        left: 15px;
    }

    .slider-next {
        right: 15px;
    }

    .slider-indicators {
        bottom: 15px;
    }

    /* Plans Cards Mobile */
    .plans-cards-container {
        grid-template-columns: 1fr;
        height: auto;
    }

    .plan-card-large {
        min-height: 500px;
        padding: 2.5rem;
    }

    .plan-card-title {
        font-size: 2.5rem;
    }

    .plan-card-buttons {
        flex-direction: column;
    }

    .btn-plan-card {
        width: 100%;
        text-align: center;
    }

    /* Plans Intro Mobile */
    .plans-intro-section {
        padding: 60px 0 40px;
    }

    .plans-intro-section .section-subtitle {
        font-size: 1rem;
    }

    /* Quote Section Mobile */
    .quote-section {
        padding: 60px 0;
        min-height: 400px;
    }

    .quote-title {
        font-size: 1.75rem;
    }

    .quote-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .quote-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-quote {
        width: 100%;
        min-width: auto;
    }

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

    .plans-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .dental-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .assistant-container {
        width: calc(100vw - 40px);
        height: calc(100vh - 140px);
    }

    /* Menu Mobile Overlay */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 280px;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 2.5rem;
    }

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

    .btn-large {
        padding: 1rem 1.75rem;
        font-size: 0.95rem;
    }

    .plan-card-title {
        font-size: 2rem;
    }

    .plan-card-large {
        padding: 2rem;
    }

    .plan-card-description {
        font-size: 1rem;
    }

    .quote-title {
        font-size: 1.5rem;
    }

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

    .btn-quote {
        padding: 1rem 2rem;
        font-size: 0.875rem;
    }

    .network-search {
        padding: 1.25rem 1.5rem;
    }

    .search-header span {
        font-size: 0.8rem;
    }

    .search-subtitle {
        font-size: 0.8rem;
    }

    .plans-intro-section .section-subtitle br {
        display: none;
    }

    .quote-title br {
        display: none;
    }
}
