/* ================================================
   UAMI CARE LANDING PAGE - COMPLETE STYLES
   ================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

a { text-decoration: none; }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }

/* ------------------------------------------------
   Top Bar
   ------------------------------------------------ */
.modern-topbar {
    background: #fff;
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 3px solid #F5A623;
}

.modern-topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #555;
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    transition: all 0.3s ease;
}

.topbar-item:hover { color: #F5A623; }
.topbar-item i { font-size: 14px; color: #F5A623; }

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-search { position: relative; }

.topbar-search-btn {
    background: none;
    border: none;
    color: #555;
    font-size: 15px;
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.topbar-search-btn:hover { color: #F5A623; }

.topbar-social {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 20px;
    border-left: 1px solid #ddd;
}

.topbar-social a { color: #F5A623; font-size: 14px; transition: all 0.3s ease; }
.topbar-social a:hover { color: #214378; }

.topbar-search-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    padding: 12px;
    width: 280px;
    display: none;
    z-index: 1001;
    margin-top: 8px;
}

.topbar-search-dropdown.active { display: block; }

.topbar-search-dropdown .input-group { display: flex; }

.topbar-search-dropdown .form-control {
    border-radius: 4px 0 0 4px;
    border: 1px solid #ddd;
    padding: 8px 12px;
    font-size: 13px;
    flex: 1;
    outline: none;
}

.topbar-search-dropdown .input-group-btn .btn {
    border-radius: 0 4px 4px 0;
    background: #F5A623;
    border: 1px solid #F5A623;
    color: #fff;
    padding: 8px 12px;
    cursor: pointer;
}

/* ------------------------------------------------
   Main Navigation
   ------------------------------------------------ */
.modern-navbar {
    background: #fff;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.modern-navbar > .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.modern-navbar-brand {
    display: inline-flex;
    align-items: center;
    padding: 12px 0;
    flex-shrink: 0;
}

.modern-navbar-brand img { max-height: 45px; width: auto; }

.modern-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
    gap: 0;
    margin-left: 40px;
}

.modern-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.modern-nav > li { position: relative; }

.modern-nav > li > a {
    display: inline-block;
    padding: 22px 20px;
    color: #444;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.modern-nav > li > a:hover,
.modern-nav > li.active > a { color: #f5a422; }

.modern-nav-auth {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
}

.btn-modern-login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    color: #444;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 4px;
    white-space: nowrap;
}

.btn-modern-login:hover { color: #F5A623; }

.btn-modern-register {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: #F5A623;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-modern-register:hover { background: #E8971F; color: #fff; }

.modern-navbar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 10px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

/* ------------------------------------------------
   Hero Section
   ------------------------------------------------ */
.modern-hero {
    background: #151c2c;
    background-image: url('/images/hero-bg.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding: 20px 0 40px 0;
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(21, 28, 44, 0.3);
}

.modern-hero .container { position: relative; z-index: 2; }

.hero-slider-wrapper { overflow: hidden; position: relative; width: 100%; }

.hero-slider-track {
    display: flex;
    width: 400%;
    animation: slideHero 24s ease-in-out infinite;
}

.hero-slide { width: 25%; flex-shrink: 0; overflow: hidden; }

@keyframes slideHero {
    0%, 20% { transform: translateX(0); }
    25%, 45% { transform: translateX(-25%); }
    50%, 70% { transform: translateX(-50%); }
    75%, 95% { transform: translateX(-75%); }
    100% { transform: translateX(-100%); }
}

.hero-slider-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

.hero-indicator {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicator.active { background: #F5A623; width: 60px; }
.hero-indicator:hover { background: rgba(255, 255, 255, 0.7); }

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 250px;
}

.hero-text {
    flex: 0 0 50%;
    color: #fff;
    padding-right: 40px;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #fff;
    white-space: nowrap;
    animation: fadeInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    animation: fadeInLeft 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-benefits li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 2;
    margin-bottom: 2px;
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.hero-benefits li:nth-child(1) { animation-delay: 0.3s; }
.hero-benefits li:nth-child(2) { animation-delay: 0.4s; }
.hero-benefits li:nth-child(3) { animation-delay: 0.5s; }
.hero-benefits li:nth-child(4) { animation-delay: 0.6s; }
.hero-benefits li:nth-child(5) { animation-delay: 0.7s; }
.hero-benefits li:nth-child(6) { animation-delay: 0.8s; }

.hero-price {
    color: #F5A623;
    font-size: 18px;
    margin-bottom: 30px;
    animation: fadeInLeft 0.8s ease-out 0.9s forwards;
    opacity: 0;
}

.hero-price strong { font-size: 20px; font-weight: 700; }

.hero-buttons {
    display: flex;
    gap: 15px;
    animation: fadeInUp 0.8s ease-out 1s forwards;
    opacity: 0;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 110px;
}

.hero-btn-primary {
    background: #F5A623;
    color: #fff;
    border: 2px solid #F5A623;
}

.hero-btn-primary:hover {
    background: #e8971f;
    border-color: #e8971f;
    color: #fff;
    transform: translateY(-2px);
}

.hero-btn-secondary {
    background: transparent;
    color: #F5A623;
    border: 2px solid #F5A623;
}

.hero-btn-secondary:hover {
    background: #F5A623;
    color: #fff;
    transform: translateY(-2px);
}

.hero-cards {
    flex: 0 0 45%;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    animation: fadeInRight 1s ease-out 0.5s forwards;
    opacity: 0;
}

.hero-cards img {
    width: 400px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    animation: cardFloat 4s ease-in-out 1.5s infinite;
}

@keyframes fadeInLeft {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    0% { opacity: 0; transform: translateX(50px) scale(0.95); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ------------------------------------------------
   Sobre Nós Section
   ------------------------------------------------ */
.sobre-nos-section { padding: 80px 0; background: #fff; }

.sobre-nos-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.sobre-nos-image { flex: 0 0 40%; }

.sobre-nos-image img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.sobre-nos-text { flex: 1; }

.sobre-nos-label {
    display: inline-block;
    color: #1e3a5f;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.sobre-nos-title {
    font-size: 42px;
    font-weight: 700;
    color: #F5A623;
    margin-bottom: 20px;
}

.sobre-nos-description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.missao-visao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.missao-visao-item h4 {
    color: #1e3a5f;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.missao-visao-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.sobre-nos-btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: #1e3a5f;
    color: #fff;
    padding: 0;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.sobre-nos-btn span { padding: 14px 25px; }

.sobre-nos-btn i {
    background: #F5A623;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
}

.sobre-nos-btn:hover {
    background: #152a45;
    color: #fff;
    transform: translateX(5px);
}

/* ------------------------------------------------
   Produtos Section
   ------------------------------------------------ */
.produtos-section-new { padding: 80px 0; background: #f0f0f0; }

.produtos-title {
    font-size: 36px;
    font-weight: 700;
    color: #F5A623;
    margin-bottom: 50px;
}

.produtos-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.produto-card-new {
    background: #fff;
    padding: 40px 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.produto-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.produto-icon-new {
    width: 70px;
    height: 70px;
    background: #F5A623;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.produto-icon-new i { font-size: 28px; color: #fff; }

.produto-card-new h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 15px;
}

.produto-card-new p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.produto-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.produto-line {
    flex-grow: 1;
    height: 3px;
    background: #1e3a5f;
    border-radius: 2px;
}

.produto-arrow {
    width: 35px;
    height: 35px;
    background: #F5A623;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.produto-arrow:hover {
    background: #e8971f;
    color: #fff;
    transform: scale(1.1);
}

.produto-arrow i { font-size: 14px; }

/* ------------------------------------------------
   Stats Section
   ------------------------------------------------ */
.stats-section-new {
    background: #1e3a5f;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-bg-pattern {
    position: absolute;
    top: 0; right: 0;
    width: 50%;
    height: 100%;
    background: url('/images/stats-bg.png') no-repeat center right;
    background-size: contain;
    opacity: 0.3;
}

.stats-grid-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    width: 100%;
}

.stat-circle {
    width: 150px;
    height: 150px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    transition: all 0.3s ease;
}

.stat-circle:hover {
    border-color: #F5A623;
    transform: scale(1.05);
}

.stat-number-new {
    display: block;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label-new {
    font-size: 14px;
    opacity: 0.8;
    color: #F5A623;
}

/* ------------------------------------------------
   Testimonials Section
   ------------------------------------------------ */
.testimonials-section-new {
    padding: 80px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.testimonials-title {
    font-size: 36px;
    font-weight: 700;
    color: #F5A623;
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-slider-wrapper {
    overflow: hidden;
    margin-bottom: 40px;
    padding: 20px 10px;
}

.testimonials-slider-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

.testimonial-card-new {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 350px;
}

.testimonial-card-new p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-author-new {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author-new img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info-new strong {
    display: block;
    color: #F5A623;
    font-size: 16px;
    margin-bottom: 3px;
}

.author-info-new span { font-size: 13px; color: #666; }

.testimonials-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.indicator-line {
    width: 80px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.indicator-line.active { background: #F5A623; }

/* ------------------------------------------------
   Clínicas Section
   ------------------------------------------------ */
.clinicas-header-wrapper {
    background: #f7f9fa;
    padding: 10px 0 15px;
}

.clinicas-section-new {
    padding: 30px 0 80px;
    background: #fcf0de;
}

.clinicas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.clinicas-title {
    font-size: 36px;
    font-weight: 700;
    color: #F5A623;
}

.clinicas-btn {
    background: #F5A623;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.clinicas-btn:hover { background: #e8971f; color: #fff; }

.clinicas-content-new {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
    align-items: start;
}

.clinicas-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.clinicas-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filter-select {
    border: none;
    background: transparent;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    outline: none;
}

.filter-input {
    border: none;
    background: transparent;
    font-size: 14px;
    color: #444;
    outline: none;
    flex: 1;
    padding: 5px 0;
    border-left: 1px solid #eee;
    padding-left: 15px;
    margin-left: 5px;
}

.filter-input::placeholder { color: #aaa; }

.filter-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0f0f0;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
}

.filter-tag button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #999;
}

.filter-tags-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
}

.filter-search-btn {
    background: #F5A623;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    flex-shrink: 0;
}

.filter-search-bar {
    display: flex;
    align-items: center;
    width: 100%;
}

.filter-provincias {
    width: 100%;
    padding: 15px 20px;
}

.clinicas-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 560px;
    overflow-y: auto;
    padding: 5px 15px 15px 5px;
    margin: -5px;
}

.clinicas-list::-webkit-scrollbar { width: 6px; }
.clinicas-list::-webkit-scrollbar-track { background: transparent; }
.clinicas-list::-webkit-scrollbar-thumb { background: #F5A62344; border-radius: 10px; }
.clinicas-list::-webkit-scrollbar-thumb:hover { background: #F5A62388; }

.clinica-item {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.clinica-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.clinica-image {
    width: 130px;
    height: 110px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0;
}

.clinica-image img { width: 90%; height: 90%; object-fit: contain; }

.clinica-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.clinica-info h4 {
    font-size: 17px;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 10px;
    line-height: 1.2;
}

.clinica-info p {
    margin: 0 0 4px;
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

.clinica-info p strong {
    color: #888;
    font-weight: 500;
    margin-right: 4px;
}

.clinica-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
}

.clinica-rating i { color: #F5A623; font-size: 14px; }
.clinica-rating span { font-size: 14px; font-weight: 600; color: #666; }

.clinicas-map-new {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    height: 500px;
}

.clinicas-ver-mais-btn { display: none; }

/* ------------------------------------------------
   Booking Section
   ------------------------------------------------ */
.booking-section {
    padding: 80px 0;
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
}

.booking-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.booking-card {
    background: #fff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
}

.booking-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #F5A623;
    margin-bottom: 5px;
}

.booking-header p {
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
}

.booking-divider {
    width: 60px;
    height: 3px;
    background: #F5A623;
    margin-bottom: 30px;
    border-radius: 2px;
    opacity: 0.5;
}

.booking-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.booking-group { margin-bottom: 20px; }

.booking-group label {
    display: block;
    font-size: 13px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.booking-group input,
.booking-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    background: #f9f9f9;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
    font-family: inherit;
}

.booking-group input:focus,
.booking-group textarea:focus { border-color: #F5A623; }

.booking-group textarea { height: 100px; resize: none; }

.booking-submit-btn {
    background: #F5A623;
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.booking-submit-btn:hover {
    background: #e8971f;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(245,166,35,0.3);
}

.booking-agent-wrapper { position: relative; z-index: 1; }

.booking-agent-img {
    width: 100%;
    border-radius: 0;
    display: block;
}

.decor-square {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #F5A623;
    opacity: 0.8;
    z-index: -1;
}

.decor-square.top-left { top: -20px; left: -20px; }
.decor-square.bottom-right { bottom: -20px; right: -20px; }

/* ------------------------------------------------
   Prestadores Section
   ------------------------------------------------ */
.prestadores-modern {
    padding: 80px 0;
    background: #f5f5f5;
    overflow: hidden;
}

.prestadores-header-wrapper { margin-bottom: 50px; }
.prestadores-header-wrapper .header-content { text-align: left; }

.prestadores-header-wrapper h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1e3a5f;
    margin-bottom: 15px;
}

.prestadores-header-wrapper h2 span { color: #F5A623; }

.prestadores-header-wrapper p {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0;
}

.prestadores-sliders {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.prestadores-sliders::before,
.prestadores-sliders::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 10;
    pointer-events: none;
}

.prestadores-sliders::before {
    left: 0;
    background: linear-gradient(to right, #f5f5f5 0%, rgba(245,245,245,0) 100%);
}

.prestadores-sliders::after {
    right: 0;
    background: linear-gradient(to left, #f5f5f5 0%, rgba(245,245,245,0) 100%);
}

.slider-track {
    display: flex;
    gap: 15px;
    width: max-content;
}

.slider-right { animation: slideRight 150s linear infinite; }
.slider-left { animation: slideLeft 150s linear infinite; }

@keyframes slideRight {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes slideLeft {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.prestador-card {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prestador-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.prestador-card img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
}

/* ------------------------------------------------
   Newsletter Section
   ------------------------------------------------ */
.modern-newsletter {
    background: #F5A623;
    padding: 50px 0;
    text-align: center;
}

.newsletter-title {
    color: #1a1a1a;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.newsletter-form { max-width: 500px; margin: 0 auto; }

.newsletter-input-group {
    display: flex;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.newsletter-input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    font-size: 14px;
    outline: none;
    background: transparent;
}

.newsletter-input::placeholder { color: #999; }

.newsletter-btn {
    background: #fff;
    border: none;
    padding: 15px 35px;
    color: #F5A623;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 1px solid #eee;
}

.newsletter-btn:hover { background: #f8f8f8; color: #e8971f; }

/* ------------------------------------------------
   Footer
   ------------------------------------------------ */
.modern-footer {
    background: #1a1a1a;
    color: #fff;
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-about { padding-right: 30px; }

.footer-logo img {
    max-height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.footer-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 40px;
    height: 2px;
    background: #F5A623;
}

.footer-links li { margin-bottom: 12px; }

.footer-links li a {
    color: #aaa;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #F5A623;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #aaa;
    font-size: 14px;
}

.footer-contact li i {
    color: #F5A623;
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover { color: #F5A623; }

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn.facebook { background: #3b5998; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.linkedin { background: #0077b5; }
.social-btn.whatsapp { background: #25d366; }

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    color: #fff;
}

.footer-hours { color: #aaa; font-size: 13px; }
.footer-hours i { color: #F5A623; margin-right: 8px; }

.footer-copyright {
    background: #111;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-copyright p { color: #888; font-size: 13px; margin: 0; }
.footer-copyright a { color: #F5A623; text-decoration: underline; transition: color 0.3s ease; }
.footer-copyright a:hover { color: #fff; }

/* ------------------------------------------------
   Back to Top
   ------------------------------------------------ */
#back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#back-top.visible { opacity: 1; visibility: visible; }

#back-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #F5A623;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(245,166,35,0.4);
    transition: all 0.3s ease;
}

#back-top a:hover {
    background: #e8971f;
    transform: translateY(-3px);
}

/* ------------------------------------------------
   Responsive
   ------------------------------------------------ */
@media (max-width: 991px) {
    .modern-topbar .container {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
        padding: 5px 15px;
    }
    .topbar-item span { display: none; }
    .topbar-social { border-left: none; padding-left: 0; gap: 10px; }
    .modern-navbar > .container {
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative;
    }
    .modern-navbar-toggle {
        display: flex;
    }
    .modern-nav-wrapper {
        display: none;
        width: 100%;
        flex-direction: column;
        background: #fff;
        padding: 0;
        border-top: 1px solid #eee;
        order: 3;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        max-height: calc(100vh - 150px);
        overflow-y: auto;
    }
    .modern-nav-wrapper.active { display: flex; }
    .modern-nav { flex-direction: column; width: 100%; }
    .modern-nav > li { display: block; width: 100%; border-bottom: 1px solid #f0f0f0; }
    .modern-nav > li > a { display: flex; padding: 15px 20px; font-size: 15px; }
    .modern-nav-auth {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
        padding: 15px 20px;
        gap: 10px;
        background: #f8f9fa;
        border-top: 1px solid #eee;
    }
    .btn-modern-login, .btn-modern-register {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
    .modern-hero { padding: 60px 0; }
    .hero-content { flex-direction: column; text-align: center; }
    .hero-text { flex: 1; padding-right: 0; margin-bottom: 40px; }
    .hero-buttons { justify-content: center; }
    .hero-cards { flex: 1; text-align: center; }
    .hero-cards img { max-height: 250px; }
    .sobre-nos-content { flex-direction: column; }
    .sobre-nos-image { flex: none; width: 100%; }
    .missao-visao-grid { grid-template-columns: 1fr; }
    .sobre-nos-title { font-size: 32px; }
    .booking-content { grid-template-columns: 1fr; gap: 40px; }
    .booking-row { grid-template-columns: 1fr; }
    .booking-left { order: 2; }
    .booking-right { order: 1; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-about { grid-column: span 2; padding-right: 0; text-align: center; }
    .footer-column { text-align: center; }
    .footer-title::after { left: 50%; transform: translateX(-50%); }
    .footer-contact li { justify-content: center; }
    .footer-social { justify-content: center; }
}

@media (max-width: 768px) {
    .produtos-grid-new { grid-template-columns: 1fr; }
    .produtos-title { font-size: 28px; text-align: center; }
    .stats-grid-new { flex-wrap: wrap; gap: 30px; justify-content: center; }
    .stat-circle { width: 130px; height: 130px; }
    .stat-number-new { font-size: 26px; }
    .testimonial-card-new { width: 300px; }
    .testimonials-title { font-size: 28px; }
    .clinicas-content-new { grid-template-columns: 1fr; }
    .clinicas-header { flex-direction: column; gap: 20px; text-align: center; }
    .clinicas-map-new { height: 300px; }
    .prestadores-modern h2 { font-size: 28px; }
    .prestador-card { width: 140px; height: 80px; }
}

@media (max-width: 576px) {
    .modern-hero { padding: 40px 0; min-height: auto; }
    .hero-title { font-size: 26px; white-space: normal; }
    .hero-btn { min-width: 100px; padding: 10px 20px; font-size: 13px; }
    .hero-cards img { max-height: 180px; }
    .modern-newsletter { padding: 35px 15px; }
    .newsletter-title { font-size: 22px; }
    .newsletter-input-group { flex-direction: column; border-radius: 10px; }
    .newsletter-input { text-align: center; padding: 12px 20px; }
    .newsletter-btn { border-left: none; border-top: 1px solid #eee; padding: 12px 25px; }
    .footer-content { grid-template-columns: 1fr; gap: 30px; }
    .footer-about { grid-column: span 1; }
    .modern-footer { padding-top: 40px; }
}
