﻿:root {
    --primary-blue: #1976d2;
    --primary-blue-dark: #1565c0;
    --primary-blue-darker: #0d47a1;
    --primary-600: #1d4076;
    --primary-700: #084db5;
    --primary-800: #063d8f;
    --primary-500: #1976d2;
    --primary-400: #42a5f5;
    --primary-300: #90caf9;
    --primary-200: #bbdefb;
    --on-primary: #FFFFFF;
    --danger-500: #ef4444;
    --search-bg: #FFFFFF;
    --search-border: rgba(0,0,0,.12);
    --search-border-hover: rgba(0,0,0,.18);
    --text-muted: rgba(0,0,0,.55);
    --gradient-primary: linear-gradient(135deg,#38609d 0%,#28568a 100%);
    --gradient-primary-hover: linear-gradient(135deg,#1565c0 0%,#0d47a1 100%);
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #e9ecef;
    --bg-dark: #333333;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --text-white: #ffffff;
    --border-light: #e0e0e0;
    --border-gray: #cccccc;
    --shadow-light: rgba(0,0,0,0.1);
    --shadow-medium: rgba(0,0,0,0.15);
    --shadow-dark: rgba(0,0,0,0.25);
    --overlay-light: rgba(255,255,255,0.1);
    --overlay-medium: rgba(255,255,255,0.5);
    --overlay-dark: rgba(0,0,0,0.5);
    --font-xs: 12px;
    --font-sm: 14px;
    --font-base: 16px;
    --font-lg: 18px;
    --font-xl: 24px;
    --font-2xl: 2em;
    --font-3xl: 48px;
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
    --spacing-xl: 30px;
    --spacing-2xl: 40px;
    --spacing-3xl: 60px;
    --spacing-4xl: 80px;
    --radius-sm: 15px;
    --radius-md: 10px;
    --radius-lg: 15px;
    --radius-xl: 25px;
    --radius-full: 50px;
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    --container-max-width: 1440px;
    --topbar-h: 34px;
    --mainheader-h: auto;
    --brand: #1661c9;
    --brand-dark: #0e4c9d;
    --on-brand: #fff;
    --radius: 16px;
    --gutter: 5px;
    --shadow: 0 2px 12px rgba(0,0,0,.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size:16px;
}

body {
    font-family: 'Public Sans',sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/mother-child-beach-bg.jpg');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    opacity: 0.12;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left,rgba(255,255,255,0.95) 0%,rgba(255,255,255,0.85) 20%,rgba(255,255,255,0.6) 50%,rgba(255,255,255,0.3) 80%,rgba(255,255,255,0.05) 100%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    max-width: 1300px;
}

h1,h2,h3,h4,h5,h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: var(--font-3xl);
}

h2 {
    font-size: var(--font-2xl);
}

h3 {
    font-size: var(--font-xl);
}

h4 {
    font-size: var(--font-lg);
}

p {
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-xl);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: var(--font-sm);
}

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

.btn-primary:hover {
    background: var(--gradient-primary-hover);
    transform: translateY(-2px);
}

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-medium);
}

.card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: transform var(--transition-fast);
}

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

.section {
    padding: var(--spacing-4xl) 0;
}

.destacados-section .section-title {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--primary-600);
    margin-bottom: var(--spacing-3xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    letter-spacing: -1px;
}

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

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

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

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.mb-xl {
    margin-bottom: var(--spacing-xl);
}

.mt-sm {
    margin-top: var(--spacing-sm);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.mt-xl {
    margin-top: var(--spacing-xl);
}

.grid {
    display: grid;
    gap: var(--spacing-xl);
}

.grid-2 {
    grid-template-columns: repeat(2,1fr);
}

.grid-3 {
    grid-template-columns: repeat(3,1fr);
}

.grid-4 {
    grid-template-columns: repeat(4,1fr);
}

@media (max-width: 768px) {
    .grid-2,.grid-3,.grid-4 {
        grid-template-columns:1fr;
    }

    .container {
        padding: 0 var(--spacing-md);
    }

    .section {
        padding: var(--spacing-3xl) 0;
    }
}

.docs-section {
    background: var(--bg-light);
    padding: 32px 0;
}

@media (max-width: 767px) {
    .docs-section {
        padding:20px 0;
    }
}

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

.docs-header {
    margin-bottom: 16px;
}

.docs-title {
    font-size: var(--font-2xl);
    font-weight: 700;
    color: var(--primary-600);
    margin-bottom: var(--spacing-xl);
    line-height: 0.9em;
    letter-spacing: -1px;
}

@media (max-width: 767px) {
    .docs-title {
        font-size:24px;
    }
}

.docs-lead {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0px;
    opacity: 0.9;
    color: var(--text-secondary);
}

.docs-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: start;
}

@media (max-width: 1023px) {
    .docs-content {
        grid-template-columns:1fr;
        gap: 20px;
    }
}

.docs-main {
    display: flex;
    flex-direction: column;
}

.docs-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.docs-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.docs-item:focus-within {
    outline: 2px solid rgba(10,34,64,0.35);
    outline-offset: 4px;
    background: rgba(10,34,64,0.05);
}

.docs-icon {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    font-size: 18px;
    color: #0A2240;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .docs-icon {
        flex:0 0 16px;
        width: 16px;
        height: 16px;
        font-size: 16px;
    }
}

.docs-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.4;
}

.docs-legal {
    background: transparent;
    padding: 0;
}

.docs-legal-card {
    padding: 16px;
    border: 1px solid rgba(10,34,64,0.2);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(10,34,64,0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
}

@media (max-width: 1023px) {
    .docs-legal-card {
        position:static;
        margin: 0;
    }
}

@media (max-width: 767px) {
    .docs-legal-card {
        padding:14px;
    }
}

.docs-legal-title {
    color: #0A2240;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.docs-legal-icon {
    color: #0A2240;
    font-size: 24px;
}

.docs-legal-text {
    color: #1F2937;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.floating-contact-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) translateX(100px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.floating-contact-buttons.scrolled {
    transform: translateY(-50%) translateX(0);
}

.floating-contact-buttons:hover {
    transform: translateY(-50%) translateX(0);
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-600);
    border: 2px solid var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: var(--bg-white);
    text-decoration: none;
}

.floating-btn i {
    font-size: 20px;
}

.whatsapp-btn:hover {
    background: #25D366;
    border-color: #25D366;
}

.phone-btn:hover {
    background: #4CAF50;
    border-color: #4CAF50;
}

.email-btn:hover {
}

@media (max-width: 768px) {
    .floating-contact-buttons {
        right:15px;
        gap: 10px;
        transform: translateY(-50%) translateX(80px);
    }

    .floating-contact-buttons.scrolled {
        transform: translateY(-50%) translateX(0);
    }

    .floating-btn {
        width: 45px;
        height: 45px;
    }

    .floating-btn i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .floating-contact-buttons {
        right:10px;
        gap: 8px;
        transform: translateY(-50%) translateX(70px);
    }

    .floating-contact-buttons.scrolled {
        transform: translateY(-50%) translateX(0);
    }

    .floating-btn {
        width: 40px;
        height: 40px;
    }

    .floating-btn i {
        font-size: 16px;
    }
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    margin-top: 4px;
    display: none;
}

.suggestions-panel {
    padding: 16px 0;
}

.close-suggestions {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #6c757d;
}

.suggestions-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    font-size: 0.9rem;
    padding: 0 15px;
}

.suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}

.view-all-resultados {
    padding: 5px 15px;
}

.suggestions-list li {
    padding: 5px 14px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.suggestions-list li:hover {
    background-color: var(--primary-600);
    color: var(--bg-light);
}

.header-search-form {
    width: 100%;
    position: relative;
}

.header-search-section {
    flex: 1 1 0;
    max-width: 600px;
    min-width: 400px;
}

.top-bar {
    background: var(--bg-white);
    padding: calc(var(--spacing-sm) * 0.6) 0;
    font-size: 11px;
    line-height: 1.2;
    height: var(--topbar-h,34px);
    opacity: 1;
    transition: height .25s ease,padding .25s ease,opacity .2s ease;
    will-change: height,opacity;
    overflow: hidden;
}

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

.top-bar a {
    color: var(--primary-600);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.2em;
    line-height: 1;
}

.top-bar a i {
    font-size: 12px;
}

html.is-stuck .menu-toggle {
    display: block;
}

.main-header {
    background: var(--gradient-primary);
    padding: calc(var(--spacing-md) * 0.6) 0;
    border-radius: var(--radius-xl);
    position: relative;
    margin: 0 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    transition: box-shadow .2s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    padding: 0 var(--spacing-xs);
}

.logo-container img {
    max-height: 41px;
    width: auto;
    margin-right: var(--spacing-md);
    display: block;
}

.searchbar {
    flex: 1;
    max-width: 570px;
    position: relative;
    display: flex;
    align-items: center;
    height: 50px;
    background: var(--search-bg);
    border: 1px solid var(--search-border);
    border-radius: 9999px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    transition: all 0.15s ease;
}

.searchbar:hover {
    border-color: var(--search-border-hover);
    box-shadow: 0 3px 10px rgba(0,0,0,.08);
}

.searchbar:focus-within {
    border-color: var(--primary-500);
    outline: 2px solid color-mix(in oklab,var(--primary-500) 45%,transparent);
    outline-offset: 2px;
}

.searchbar__mic {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-600);
    opacity: 0.9;
    transition: opacity 0.15s ease;
    z-index: 2;
}

.searchbar__mic:hover {
    opacity: 1;
}

.searchbar__mic:focus-visible {
    outline: 2px solid var(--primary-500);
    outline-offset: 2px;
}

.searchbar__mic svg {
    width: 18px;
    height: 18px;
}

.searchbar__input {
    flex: 1;
    height: 100%;
    padding: 0 48px;
    border: none;
    background: transparent;
    font-size: var(--font-sm);
    color: var(--text-primary);
    line-height: 1.2;
    outline: none;
}

.searchbar__input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.searchbar__input:focus-visible {
    outline: none;
}

.searchbar__submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-600);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--on-primary);
    box-shadow: 0 1px 2px rgba(0,0,0,.06);
    transition: all 0.15s ease;
    z-index: 2;
}

.searchbar__submit:hover {
    background: var(--primary-700);
    transform: translateY(-50%) translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,.10);
}

.searchbar__submit:active {
    background: var(--primary-800);
    transform: translateY(-50%) translateY(0);
}

.searchbar__submit:focus-visible {
    outline: 2px solid var(--primary-500);
    outline-offset: 2px;
}

.searchbar__submit svg {
    width: 20px;
    height: 20px;
}

.searchbar.is-invalid {
    border-color: var(--danger-500);
}

.searchbar.is-disabled {
    opacity: 0.6;
    pointer-events: none;
}

.searchbar.is-disabled .searchbar__submit {
    cursor: not-allowed;
    background: var(--primary-300);
}

@media (max-width: 1199px) {
    .searchbar {
        height:47px;
    }

    .searchbar__input {
        padding: 0 44px;
    }

    .searchbar__mic {
        width: 38px;
        height: 38px;
    }

    .searchbar__submit {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 991px) {
    .searchbar {
        height:42px;
    }

    .searchbar__input {
        font-size: 13px;
        padding: 0 42px;
    }

    .searchbar__mic {
        width: 36px;
        height: 36px;
    }

    .searchbar__mic svg {
        width: 16px;
        height: 16px;
    }

    .searchbar__submit {
        width: 36px;
        height: 36px;
    }

    .searchbar__submit svg {
        width: 18px;
        height: 18px;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.orcamento-btn {
    background: var(--bg-white);
    color: var(--primary-blue);
    border: none;
    padding: 0 var(--spacing-md);
    height: 34px;
    border-radius: var(--radius-full);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    font-size: var(--font-sm);
    min-height: 34px;
    line-height: 1;
}

.orcamento-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px var(--shadow-medium);
}

.orcamento-btn:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 16px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.menu-toggle:hover {
    background: rgba(255,255,255,0.1);
}

.menu-toggle:focus {
    outline: 2px solid var(--bg-white);
    outline-offset: 2px;
}

.navigation {
    background: var(--bg-white);
    padding: calc(var(--spacing-sm) * 0.7) 0;
}

.navigation-menu {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    list-style: none;
}

.nav-item {
    color: var(--primary-600);
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    height: 32px;
}

.nav-item:hover {
    background: var(--bg-light);
    color: var(--primary-blue);
}

.nav-item i {
    font-size: 14px;
}

.nav-item.faq-highlight {
    background: var(--bg-light);
    border-radius: 9999px;
    padding: var(--spacing-sm) 10px;
}

.nav-item.faq-highlight:hover {
    background: var(--primary-blue);
    color: var(--bg-white);
}

@media (max-width: 1199px) {
    .main-header {
        padding:calc(var(--spacing-md) * 0.5) 0;
        margin: 0 5px;
    }

    .logo-container img {
        max-height: 28px;
    }

    .nav-item {
        font-size: 11px;
        gap: 5px;
    }

    .nav-item i {
        font-size: 13px;
    }
}

@media (min-width: 992px) {
    .header-top-row {
        display:none;
    }

    .header-content {
        flex-direction: row;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-xs);
    }

    .logo-container.logo-desktop {
        display: block;
        order: 1;
    }

    .logo-container.logo-desktop img {
        max-height: 41px;
        width: auto;
        margin-right: var(--spacing-md);
    }

    .searchbar {
        flex: 1;
        max-width: 570px;
        height: 50px;
        order: 2;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: var(--spacing-md);
        order: 3;
    }

    .orcamento-btn {
        background: var(--bg-white);
        color: var(--primary-blue);
        padding: 0 var(--spacing-md);
        height: 34px;
        border-radius: var(--radius-full);
        font-weight: 500;
        font-size: var(--font-sm);
    }

    .menu-toggle {
        background: none;
        border: none;
        color: var(--text-white);
        font-size: 16px;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all var(--transition-fast);
        opacity: 0;
        visibility: hidden;
        transform: scale(0.8);
        display: none;
    }

    .navigation {
        display: block;
    }
}

@media (max-width: 991px) {
    .main-header {
        /* border-radius:var(--radius); */
        /* box-shadow: var(--shadow); */
        /* margin: 0 var(--gutter); */
        padding: var(--spacing-sm) 0;
        display: grid;
         /* logo - espaÃ§o - menu */
        align-items: center;
        /* width: 100%; */
        position: relative;
    }

    .header-content {
        flex-direction: column;
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-sm);
        /* width: 100%; */
    }

    .logo-container.logo-desktop {
        display: none;
    }

    .header-top-row {
        display: grid;
        grid-template-columns: 48px 1fr auto;
        align-items: center;
        width: 100%;
        position: relative;
    }

    .menu-toggle {
        /* width: 44px; */
        /* height: 44px; */
        /* background: transparent; */
        /* border: none; */
        /* color: var(--on-brand); */
        /* cursor: pointer; */
        /* display: flex; */
        /* align-items: center; */
        /* justify-content: center; */
        /* border-radius: 8px; */
        /* transition: all 0.2s ease; */
        /* grid-column: 1; */
        /* opacity: 1; */
        /* visibility: hidden; */
        /* transform: scale(0.8); */
        grid-column: 3;
        width: 44px;
        height: 44px;
        background: transparent;
        border: none;
        color: var(--on-brand);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center; /* Ã­cone centralizado no botÃ£o */
        border-radius: 8px;
        transition: all 0.2s ease;
        opacity: 1;
        visibility: visible; /* mostrar no mobile */
        transform: scale(0.9);
    }

    .menu-toggle:hover {
        background: rgba(255,255,255,0.1);
    }

    .menu-toggle:focus-visible {
        outline: 2px solid var(--on-brand);
        outline-offset: 2px;
    }

    .logo-container {
        /* grid-column: 2; */
        /* display: flex; */
        /* justify-content: center; */
        /* align-items: center; */
        grid-column: 1;
        display: flex;
        justify-content: flex-start; /* logo Ã  esquerda */
        align-items: center;
    }

    .logo-container img {
        max-height: 26px;
        object-fit: contain;
    }

    .orcamento-btn {
        /* background: #ffe383; */
        border: none;
        padding: 0 16px;
        color: #1d4076;
        height: 38px;
        border-radius: 9999px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        grid-column: 3;
        min-width: 80px;
        background: linear-gradient(to bottom, #fffef8, #fde077);
    }

    .orcamento-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .orcamento-btn:focus-visible {
        outline: 2px solid var(--on-brand);
        outline-offset: 2px;
    }

    .searchbar {
        width: calc(100% - 2 * var(--gutter));
        margin: 0 var(--gutter);
        height: 44px;
        border-radius: 9999px;
        background: var(--bg-white);
        border: 1px solid rgba(255,255,255,0.2);
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        position: relative;
        display: flex;
        align-items: center;
    }

    .searchbar__input {
        padding: 0 44px;
    }

    .searchbar__input {
        color: var(--text-primary);
        font-size: 1.1rem;
        padding: 0 44px;
        height: 46px;
        border: none;
        background: transparent;
        outline: none;
        flex: 1;
        width: 100%;
        
        
        
        
        
        
        .searchbar__input {
            padding: 0 44px;
        }

        ;}

    .searchbar__input::placeholder {
        color: var(--text-muted);
    }

    .searchbar__mic {
        width: 40px;
        height: 40px;
        left: 2px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
    }

    .searchbar__submit {
        width: 40px;
        height: 40px;
        right: 2px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
    }

    .header-actions {
        display: none;
    }

    .navigation {
        display: none;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding:calc(var(--spacing-md) * 0.4) 0;
        border-radius: var(--radius-md);
        margin: 0 5px;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 2px;
        width: 100% !important;
        /* background: red; */
        margin: 0;
        padding: 0;
        padding-top: 3px;
    }

    .logo-container img {
        max-height: 44px;
        margin-top: 2px;
    }

    .searchbar {
        order: 2;
        max-width: 100%;
        margin: var(--spacing-sm) 0;
        height: 40px;
    }

    .searchbar__input {
        padding: 0 40px;
        font-size: 1rem;
        height: 38px;
    }

    .searchbar__mic {
        width: 36px;
        height: 36px;
        left: 2px;
    }

    .searchbar__submit {
        width: 36px;
        height: 36px;
        right: 2px;
    }

    .header-actions {
        order: 3;
        width: 100%;
        justify-content: space-between;
    }

    .orcamento-btn {
        padding: 0 var(--spacing-sm);
        height: 32px;
        font-size: 11px;
        min-height: 32px;
    }

    .nav-item {
        margin-right: var(--spacing-sm);
        font-size: 10px;
        height: 28px;
    }

    .nav-item i {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .navigation-menu .nav-item:not(:first-child):not(:nth-child(2)) {
        display:none;
    }

    .main-header {
        border-radius: var(--radius-sm);
        margin: 0 3px;
        margin-bottom: 10px;
    }

    .searchbar {
        height: 38px;
    }

    .searchbar__input {
        padding: 0 38px;
        font-size: 1.1rem;
    }

    .searchbar__mic {
        width: 34px;
        height: 34px;
        left: 2px;
    }

    .searchbar__submit {
        width: 34px;
        height: 34px;
        right: 2px;
    }

    .orcamento-btn {
        padding: 0 var(--spacing-sm);
        font-size: 0.7rem;
        min-height: 30px;
        height: 30px;
    }

    .top-bar {
        padding: calc(var(--spacing-sm) * 0.5) 0;
    }

    .top-bar a {
        font-size: 0.9rem;
    }

    .top-bar a i {
        font-size: 11px;
    }
}

.searchbar:focus-visible {
    outline: 2px solid var(--primary-500);
    outline-offset: 2px;
}

.searchbar__input:focus-visible {
    outline: none;
}

.searchbar__mic:focus-visible,.searchbar__submit:focus-visible {
    outline: 2px solid var(--primary-500);
    outline-offset: 2px;
}

.nav-item:focus-visible {
    outline: 2px solid var(--primary-500);
    outline-offset: 2px;
    background: var(--bg-light);
}

.top-bar a {
    color: var(--primary-600);
}

.nav-item {
    color: var(--primary-600);
}

.nav-item:hover {
    color: var(--primary-blue-dark);
}

.orcamento-btn:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
    background: var(--primary-blue);
    color: var(--bg-white);
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--bg-white);
    outline-offset: 2px;
    background: rgba(255,255,255,0.2);
}

html.is-stuck .top-bar {
    height: 0;
    padding-block:0;opacity: 0;
    overflow: hidden;
    pointer-events: none;
}

html.is-stuck .main-header {
    position: fixed;
    top: 7px;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,.10);
}

.menu-toggle {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

body {
    transition: padding-top .2s ease;
}

@media (prefers-reduced-motion:reduce) {
    .top-bar,.main-header,body,.menu-toggle {
        transition: none !important;
    }
}

.sidemenu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease,visibility 0.25s ease,backdrop-filter 0.25s ease;
}

.sidemenu-overlay.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sidemenu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 86vw;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: -8px 0 24px rgba(0,0,0,0.16);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 100000;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidemenu.is-active {
    transform: translateX(0);
}

@media (min-width: 992px) {
    .sidemenu {
        width:400px;
        max-width: 30vw;
    }

    .sidemenu-nav-item {
        padding: var(--spacing-lg);
        font-size: 15px;
    }

    .sidemenu-nav-item i {
        font-size: 20px;
        width: 28px;
    }

    .sidemenu-whatsapp-btn {
        padding: var(--spacing-lg);
        font-size: 15px;
    }

    .sidemenu-whatsapp-btn i {
        font-size: 22px;
        width: 28px;
    }

    .sidemenu-whatsapp-btn span {
        font-size: 14px;
    }

    .sidemenu-overlay {
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }

    .sidemenu {
        box-shadow: -12px 0 32px rgba(0,0,0,0.2);
    }
}

.sidemenu-header {
    background: var(--brand);
    color: var(--on-brand);
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidemenu-title {
    font-size: var(--font-lg);
    font-weight: 600;
    margin: 0;
}

.sidemenu-close {
    background: none;
    border: none;
    color: var(--on-brand);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.sidemenu-close:hover {
    background: rgba(255,255,255,0.1);
}

.sidemenu-close:focus-visible {
    outline: 2px solid var(--on-brand);
    outline-offset: 2px;
}

.sidemenu-nav {
    padding: var(--spacing-md);
}

.sidemenu-nav-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    margin-bottom: var(--spacing-xs);
}

.sidemenu-nav-item:hover {
    background: var(--bg-light);
    color: var(--primary-blue);
}

.sidemenu-nav-item:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
    background: var(--bg-light);
}

.sidemenu-nav-item i {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.sidemenu-cotacao {
    padding: var(--spacing-md);
    border-top: 1px solid var(--border-light);
    margin-top: var(--spacing-sm);
}

.sidemenu-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    width: 100%;
    padding: var(--spacing-md);
    background: var(--primary-600);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(37,211,102,0.3);
}

.sidemenu-whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
}

.sidemenu-whatsapp-btn:active {
    transform: translateY(0);
}

.sidemenu-whatsapp-btn:focus-visible {
    outline: 2px solid #25D366;
    outline-offset: 2px;
}

.sidemenu-whatsapp-btn i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.sidemenu-whatsapp-btn span {
    font-size: 13px;
    letter-spacing: 0.5px;
}

html.is-menu-open {
    overflow: hidden;
}

html.is-menu-open .sidemenu-overlay {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

html.is-menu-open .sidemenu {
    transform: translateX(0) !important;
}

.sidemenu {
    will-change: transform;
}

html.is-menu-open .sidemenu {
    transform: translateX(0) !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.sidemenu {
    background: var(--bg-white) !important;
}

html.is-menu-open .sidemenu-overlay {
    background: rgb(0 0 0 / 15%) !important;
    backdrop-filter: blur(9px) !important;
    -webkit-backdrop-filter: blur(9px) !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

html.is-menu-open .sidemenu {
    transform: translateX(0) !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.sidemenu {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 320px !important;
    height: 100vh !important;
    background: var(--bg-white) !important;
    z-index: 100000 !important;
}

.sidemenu-overlay {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -moz-backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.85);
}

@media (min-width: 992px) {
    .sidemenu-overlay {
        backdrop-filter:blur(15px);
        -webkit-backdrop-filter: blur(15px);
        -moz-backdrop-filter: blur(15px);
        background: rgba(255,255,255,0.9);
    }
}

html.is-menu-open .sidemenu {
    transform: translateX(0) !important;
    right: 0 !important;
}

.hero-promo-section {
    padding: var(--spacing-4xl) 0;
    margin: 0 8px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.hero-promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg_slider_01.jpeg');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
    z-index: 0;
    background-attachment: fixed;
}

.hero-promo-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
    margin-right: 60px;
}

.hero-promo-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

.hero-promo-title {
    /* font-size: var(--font-3xl); */
    /* font-weight: 700; */
    /* color: var(--primary-600); */
    /* margin-bottom: var(--spacing-xl); */
    /* line-height: 1.1; */
    /* letter-spacing: -1px; */
}

.hero-promo-description {
    font-size: var(--font-lg);
    color: #3f3e3e;
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
    opacity: 0.9;
    font-size: 1.2rem;
}

.hero-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    background: transparent;
    color: var(--primary-600);
    border: 2px solid var(--primary-600);
    padding: var(--spacing-lg) var(--spacing-2xl);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(10,34,64,0.1);
}

.hero-promo-btn:hover {
    background: var(--primary-600);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10,34,64,0.2);
    text-decoration: none;
}

.hero-promo-btn i {
    font-size: var(--font-lg);
}

.chat-widget {
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out,transform 0.8s ease-out;
}

.chat-widget.loaded {
    opacity: 1;
    transform: translateY(0);
}

.chat-header {
    background: linear-gradient(135deg,var(--primary-600) 0%,var(--primary-700) 100%);
    padding: var(--spacing-lg);
    color: var(--text-white);
}

.chat-profile {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

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

.chat-avatar i {
    font-size: 18px;
    color: var(--text-white);
}

.chat-info h4 {
    margin: 0;
    font-size: var(--font-base);
    font-weight: 600;
}

.chat-info span {
    font-size: var(--font-sm);
    opacity: 0.8;
}

.chat-messages {
    flex: 1;
    padding: var(--spacing-lg);
    overflow-y: auto;
    background: #f8f9fa;
}

.message {
    margin-bottom: var(--spacing-md);
}

.bot-message {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    max-width: 85%;
}

.bot-message p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--text-secondary);
}

.typing-indicator {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: var(--spacing-sm);
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-400);
    border-radius: 50%;
    animation: typing-animation 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) {
    animation-delay: 0s;
}

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

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

@keyframes typing-animation {
    0%,60%,100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.message-content {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.message-content.show {
    opacity: 1;
}

.chat-input {
    padding: var(--spacing-lg);
    background: var(--bg-white);
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: var(--spacing-sm);
}

.chat-text-input {
    flex: 1;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--font-sm);
    outline: none;
    transition: border-color var(--transition-fast);
}

.chat-text-input:focus {
    border-color: var(--primary-600);
}

.chat-send-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--primary-600);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.chat-send-btn:hover {
    background: var(--primary-700);
    transform: scale(1.05);
}

.chat-send-btn i {
    font-size: 14px;
}

@media (max-width: 1199px) {
    .hero-promo-title {
        font-size:var(--font-2xl);
    }

    .hero-promo-content {
        max-width: 500px;
    }

    .hero-promo-wrapper {
        grid-template-columns: 1fr 320px;
        gap: var(--spacing-2xl);
    }
}

@media (max-width: 991px) {
    .hero-promo-section {
        padding:var(--spacing-3xl) 0;
    }
    .quem-somos-image{
        width: auto;
    }
    
    .hero-promo-title {
        font-size: var(--font-xl);
    }

    .hero-promo-description {
        font-size: var(--font-base);
    }

    .hero-promo-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        margin-right: 0;
    }


    .quem-somos-image img{
        width: auto !important;
    }

        .quem-somos-image{
        width: auto !important;
    }
    .hero-promo-content {
        max-width: 100%;
        text-align: left;
        margin: 0;
        width: 100%;
    }

    .chat-widget {
        height: 350px;
        max-width: 400px;
        margin: 0 auto;
    }
}


h1.hero-promo-title span {
    font-size: 3rem !important;
    letter-spacing: -0.045rem;
    line-height: 2.2rem;
    color: #29568B;
}


@media (max-width: 576px) {
    .hero-promo-section {
        margin:var(--spacing-sm) 3px;
        border-radius: 12px;
        padding: var(--spacing-2xl) 0;
    }

    .hero-promo-title {
        font-size: 2rem;
        margin-bottom: var(--spacing-lg);
    }

    .hero-promo-text{
        width: 100%;
        /* background:red; */
        padding: 0;
        max-width: 100% !important;
}

    .hero-promo-description {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-xl);
    }

    .hero-promo-btn {
        padding: var(--spacing-md) var(--spacing-xl);
        font-size: var(--font-sm);
    }

    .chat-widget {
        height: 300px;
        border-radius: 12px;
    }

    .chat-header {
        padding: var(--spacing-md);
    }

    .chat-messages {
        padding: var(--spacing-md);
    }

    .chat-input {
        padding: var(--spacing-md);
    }
}

Ã¯Â»Â¿.destacados-section {
    padding: var(--spacing-3xl) 0;
    background: rgba(248,250,252,0.9);
    backdrop-filter: blur(10px);
    padding-bottom: 20px;
}

.sl_products_carousel {
    position: relative;
    overflow: hidden;
    margin-top: var(--spacing-2xl);
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: pan-y pinch-zoom;
}

.sl_products_carousel.is-dragging {
    cursor: grabbing;
}

.sl_products_carousel.is-dragging .product-card:hover {
    transform: none;
}

.sl_products_carousel.is-dragging .product-card {
    pointer-events: none;
}

.products-container {
    display: flex;
    transition: transform var(--transition-fast);
    gap: var(--spacing-lg);
    will-change: transform;
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 10px;
    text-align: center;
    box-shadow: 0 2px 10px var(--shadow-light);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 250px;
    width: 250px;
}

@media (min-width: 769px) {
    .product-card {
        min-width:280px;
        width: 280px;
    }
}

@media (min-width: 1025px) {
    .product-card {
        min-width:300px;
        width: 300px;
    }
}

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

.product-image-link {
    display: block;
    margin: 0 auto var(--spacing-md);
    cursor: pointer;
    text-align: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 170px;
    height: 170px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    display: block;
    margin: 0 auto;
}

.product-title-link {
    display: block;
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.product-title-link:hover {
    transform: translateY(-2px);
}

.product-title-link:hover .product-title {
    color: var(--primary-600);
}

.product-title {
    font-size: var(--font-sm);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
    height: 40px;
    max-height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    transition: color var(--transition-fast);
}

.product-manufacturer {
    font-size: var(--font-xs);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    text-align: center;
    font-style: italic;
    height: 20px;
    max-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.product-btn::after {
    content: "\2192";
    font-size: var(--font-sm);
    transition: transform var(--transition-fast);
}

.product-btn:hover {
    background: var(--primary-600);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(29,64,118,0.3);
}

.product-btn:hover::after {
    transform: translateX(3px);
}

.no-products-message {
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-lg);
    color: var(--text-secondary);
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.no-products-message p {
    margin: 0;
    font-size: var(--font-lg);
    line-height: 1.6;
}

.no-products-message p:first-child {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.no-products-message p:last-child {
    font-size: var(--font-md);
    opacity: 0.8;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    border: none;
    color: var(--text-white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
}

.carousel-nav:hover {
    background: var(--primary-blue);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(29,64,118,0.3);
}

.carousel-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

.carousel-nav:disabled:hover {
    background: rgba(0,0,0,0.7);
    transform: translateY(-50%) scale(1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.carousel-prev {
    left: var(--spacing-sm);
}

.carousel-next {
    right: var(--spacing-sm);
}

@media (max-width: 768px) {
    .carousel-nav {
        display:none !important;
    }
}

.oferecemos-section {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: var(--spacing-4xl) 0;
}

.oferecemos-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.oferecemos-text h2 {
    font-size: var(--font-sm);
    font-weight: 400;
    margin-bottom: var(--spacing-sm);
    opacity: 0.9;
}

.oferecemos-text h3 {
    font-size: var(--font-3xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-xl);
}

.oferecemos-text p {
    font-size: var(--font-lg);
    line-height: 1.6;
    opacity: 0.9;
}

.oferecemos-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.oferecemos-card {
    background: var(--overlay-light);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
}

.oferecemos-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
}

.oferecemos-card h4 {
    font-size: var(--font-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.oferecemos-card p {
    font-size: var(--font-sm);
    opacity: 0.9;
    line-height: 1.5;
}

.escolher-section {
    background: var(--bg-light);
    padding: var(--spacing-4xl) 0;
}

.escolher-section h2 {
    color: var(--primary-blue);
    font-size: var(--font-2xl);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.escolher-cards {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: var(--spacing-xl);
}

.escolher-card {
    background: rgba(255,255,255,0.95);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-light);
    position: relative;
    backdrop-filter: blur(10px);
}

.escolher-card .number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--text-white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--font-sm);
}

.escolher-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
}

.escolher-card h4 {
    color: var(--primary-blue);
    font-size: var(--font-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.escolher-card p {
    color: var(--text-secondary);
    font-size: var(--font-sm);
    line-height: 1.5;
}

.faq-section {
    background: var(--bg-white);
    padding: var(--spacing-4xl) 0;
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.faq-section h2 {
    text-align: center;
    font-size: var(--font-2xl);
    font-weight: 700;
    color: var(--primary-600);
    margin-bottom: var(--spacing-xl);
    line-height: 0.9em;
    letter-spacing: -1px;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
}

.faq-question {
    padding: var(--spacing-lg) var(--spacing-xl);
    font-size: var(--font-base);
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    border: none;
    background: var(--bs-gray-300);
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition-fast);
}

.faq-question:hover {
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
    display: inline-grid;
}

.faq-answer {
    padding: 0 var(--spacing-xl) var(--spacing-lg);
    color: #1f2937;
    line-height: 1.6;
    display: none;
    background: var(--bs-gray-300);
}

.faq-question .material-icons {
    font-size: var(--font-lg);
}

.faq-question:focus {
    outline: 2px solid var(--primary-600);
    outline-offset: 2px;
}

.quem-somos-section {
    padding: var(--spacing-4xl) 0;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.quem-somos-title {
    text-align: center;
    font-size: var(--font-2xl);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-3xl);
    text-transform: uppercase;
}

.quem-somos-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: var(--spacing-2xl);
}

.quem-somos-slide {
    display: none;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.quem-somos-slide.active {
    display: block;
    opacity: 1;
}

.quem-somos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
}

.quem-somos-image {
    text-align: center;
}

.quem-somos-image img {
    max-width: 100%;
    height: auto;
    border-radius: 40px 5px 40px 5px;
    width: 450px;
    box-shadow: 0 8px 12px rgba(0,0,0,0.3);
}

.quem-somos-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-600);
    margin-bottom: var(--spacing-xl);
    line-height: 0.9em;
    letter-spacing: -1px;
}

.quem-somos-text p {
    font-size: var(--font-lg);
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.quem-somos-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.quem-somos-nav-btn {
    background: rgba(255,255,255,0.9);
    border: none;
    color: var(--primary-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    pointer-events: auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.quem-somos-nav-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(25,118,210,0.3);
}

.quem-somos-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quem-somos-indicators {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-2xl);
}

.quem-somos-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(25,118,210,0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.quem-somos-indicator.active {
    background: var(--primary-blue);
    transform: scale(1.2);
}

.quem-somos-indicator:hover {
    background: var(--primary-blue);
    transform: scale(1.1);
}

.valores-section {
    color: var(--text-white);
    padding: var(--spacing-4xl) 0;
    position: relative;
    background: linear-gradient(to left,rgba(0,0,0,0),rgba(0,0,0,0.5) 80%),url(../images/bg_quem_somos.jpeg) var(--primary-600);
    background-position: top;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

.valores-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.valores-header {
    text-align: center;
    margin-bottom: var(--spacing-4xl);
}

.valores-subtitle {
    display: block;
    font-size: var(--font-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--spacing-md);
}

.valores-title {
    font-size: var(--font-3xl);
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -1px;
}

.valores-cards {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-bottom: var(--spacing-4xl);
}

.valores-card {
    background: linear-gradient(135deg,rgba(255,255,255,0.02) 0%,rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    text-align: center;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.valores-card:hover {
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.1);
    background: linear-gradient(135deg,rgba(255,255,255,0.05) 0%,rgba(255,255,255,0.1) 100%);
}

.valores-card:hover .valores-card-icon svg {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(255,255,255,0.2));
}

.valores-card:hover .valores-card-icon .material-icons-outlined {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(255,255,255,0.2));
    opacity: 1;
    color: var(--text-white);
}

.valores-card-icon {
    margin-bottom: var(--spacing-xl);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    padding: var(--spacing-md);
}

.valores-card-icon svg {
    transition: all var(--transition-fast);
}

.valores-card-icon .material-icons-outlined {
    font-size: 80px;
    color: var(--text-white);
    transition: all var(--transition-fast);
    opacity: 0.9;
    font-weight: 100 !important;
}

.valores-card h4 {
    color: var(--text-white);
    font-size: var(--font-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
    min-height: 60px;
}

.valores-card p {
    color: rgba(255,255,255,0.9);
    font-size: var(--font-base);
    line-height: 1.6;
    margin: 0;
}

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

.valores-cta-btn {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
    padding: var(--spacing-lg) var(--spacing-2xl);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--font-base);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    text-decoration: none;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.valores-cta-btn:hover {
    background: var(--text-white);
    color: #0A1133;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.especialista-section {
    color: var(--text-white);
    padding: var(--spacing-4xl) 0;
    position: relative;
    background: linear-gradient(to left,rgba(0,0,0,0),rgba(0,0,0,0.5) 80%),url(../images/bg_especialistas.jpeg) var(--primary-600);
    background-position: top;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

.especialista-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.especialista-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
}

.especialista-text {
    max-width: 500px;
}

.especialista-title {
    font-size: var(--font-3xl);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--spacing-xl);
    line-height: 0.9em;
}

.especialista-description {
    font-size: var(--font-lg);
    color: var(--text-white);
    line-height: 1.6;
    margin-bottom: 0px;
    opacity: 0.9;
}

.especialista-btn {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
    padding: var(--spacing-lg) var(--spacing-2xl);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: var(--font-base);
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: all var(--transition-fast);
    letter-spacing: 1px;
}

.especialista-btn:hover {
    background: var(--text-white);
    color: var(--primary-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}

.especialista-btn i {
    font-size: var(--font-lg);
    transition: transform var(--transition-fast);
}

.especialista-btn:hover i {
    transform: translateX(3px);
}

.especialista-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.especialista-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.especialista-features {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    margin-top: 20px;
}

.especialista-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.especialista-feature-icon {
    font-size: 32px;
    color: var(--text-white);
    opacity: 0.9;
}

.especialista-feature-text {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .product-card {
        min-width:250px;
    }

    .product-btn::after {
        display: none !important;
    }

    .oferecemos-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .oferecemos-cards,.escolher-cards,.valores-cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .oferecemos-text h3 {
        font-size: var(--font-2xl);
    }

    .valores-title {
        font-size: var(--font-2xl);
    }

    .valores-card {
        min-height: 280px;
        padding: var(--spacing-xl);
    }

    .valores-card-icon {
        height: 80px;
        margin-bottom: var(--spacing-lg);
    }

    .valores-card-icon .material-icons-outlined {
        font-size: 60px;
        font-weight: 100 !important;
    }

    .valores-cards {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .valores-card {
        display: flex;
        flex-direction: col;
        align-items: center;
        text-align: left;
        min-height: auto;
        padding: var(--spacing-lg);
    }

    .valores-card-icon {
        margin-bottom: 0;
        margin-right: var(--spacing-lg);
        height: 60px;
        min-width: 60px;
        flex-shrink: 0;
    }

    .valores-card-icon .material-icons-outlined {
        font-size: 50px;
    }

    .valores-card-content {
        flex: 1;
    }

    .especialista-features {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-lg);
    }

    .especialista-feature {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: var(--spacing-md);
        justify-content: center;
    }

    .especialista-feature-icon {
        font-size: 28px;
        flex-shrink: 0;
    }

    .valores-card h4 {
        margin-bottom: var(--spacing-sm);
        min-height: auto;
        font-size: 1.8rem;
    }

    .valores-card p {
        font-size: var(--font-sm);
        line-height: 1.5;
    }

    .especialista-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        text-align: center;
    }

    .especialista-text {
        max-width: 100%;
    }

    .especialista-title {
        font-size: var(--font-2xl);
    }

    .especialista-description {
        font-size: var(--font-base);
    }

    .especialista-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 576px) {
    .product-card {
        min-width:220px;
        MAX-WIDTH: 250PX;
    }

    .valores-subtitle {
        font-size: 1.2rem;
    }

    .oferecemos-cards {
        grid-template-columns: 1fr;
    }

    .valores-cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .valores-title {
        font-size: 2.5rem;
    }

    .valores-card {
        padding: var(--spacing-md);
        gap: var(--spacing-md);
    }

    .valores-card-icon {
    }

    .valores-card-icon .material-icons-outlined {
        font-size: 80px;
        font-weight: 100 !important;
    }

    .valores-card h4 {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-xs);
        text-align: center;
        line-height: 1.5rem;
    }

    .valores-card p {
        font-size: 1.2em;
        line-height: 1.4;
        text-align: center;
    }

    .especialista-section {
        padding: var(--spacing-2xl) 0;
    }

    .especialista-title {
        font-size: var(--font-xl);
    }

    .especialista-btn {
        padding: var(--spacing-md) var(--spacing-xl);
        font-size: var(--font-sm);
    }

    .especialista-features {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }

    .especialista-feature {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: var(--spacing-sm);
        justify-content: center;
    }

    .especialista-feature-text {
        font-size: 1rem;
    }

    .especialista-feature-icon {
        font-size: 24px;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .quem-somos-content {
        grid-template-columns:1fr;
        gap: var(--spacing-2xl);
        padding: var(--spacing-xl);
        text-align: center;
        font-size: 3rem;
    }

    .quem-somos-nav {
        display: none;
    }

    .quem-somos-title {
        font-size: var(--font-xl);
        margin-bottom: var(--spacing-2xl);
    }

    .quem-somos-text h3 {
        font-size: var(--font-xl);
    }

    .quem-somos-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .quem-somos-section {
        padding:var(--spacing-2xl) 0;
    }

    .quem-somos-content {
        padding: var(--spacing-lg);
    }

    .quem-somos-title {
        font-size: var(--font-lg);
    }

    .quem-somos-text h3 {
        font-size: 1.8rem;
    }

    .quem-somos-indicators {
        margin-top: var(--spacing-xl);
        gap: var(--spacing-md);
    }

    .quem-somos-indicator {
        width: 14px;
        height: 14px;
    }
}

.sl_products_carousel {
    transform: translateZ(0);
    backface-visibility: hidden;
    overflow: hidden;
    position: relative;
}

.products-container {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

.cloned-card {
    pointer-events: auto;
    flex-shrink: 0;
}

.sl_products_carousel.is-dragging .products-container {
    transition: none !important;
    cursor: grabbing;
}

.products-container {
    cursor: grab;
}

.products-container:active {
    cursor: grabbing;
}

@media (max-width: 768px) {
    .products-container {
        -webkit-overflow-scrolling:touch;
        scroll-behavior: smooth;
    }
}

.product-card {
    transition: transform 0.2s ease,box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-2px);
}

.sl_products_carousel.is-dragging {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.footer {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

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

.footer-section h4 {
    color: var(--text-white);
    font-size: var(--font-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.footer-section h4 i {
    font-size: 12px;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.footer-section:hover h4 i {
    transform: translateY(2px);
}

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

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-section ul li a {
    color: var(--text-white);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--primary-blue);
}

.footer-section p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-company {
    color: #fff;
    font-size: var(--font-sm);
    max-width: 74%;
    min-width: 250px;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-links a {
    color: var(--text-white);
    font-size: var(--font-lg);
    transition: color var(--transition-fast);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.social-links a:hover {
    color: var(--primary-blue);
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: var(--spacing-md);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cookie-icon {
    color: var(--primary-blue);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-icon i {
    font-size: 24px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin: 0;
    color: var(--primary-blue);
    font-size: var(--font-sm);
    line-height: 1.5;
}

.privacy-link {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.privacy-link:hover {
    color: var(--primary-blue-dark);
}

.cookie-accept-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: var(--font-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
    min-width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-accept-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(25,118,210,0.3);
}

.cookie-accept-btn:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

.cookie-accept-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding:var(--spacing-sm);
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-sm);
        text-align: center;
    }

    .cookie-text {
        min-width: auto;
        order: 2;
    }

    .cookie-icon {
        order: 1;
        align-self: center;
    }

    .cookie-accept-btn {
        order: 3;
        width: 100%;
        max-width: 200px;
        align-self: center;
    }
}

@media (max-width: 576px) {
    .cookie-banner {
        padding:var(--spacing-sm);
    }

    .cookie-text p {
        font-size: 12px;
    }

    .cookie-accept-btn {
        font-size: 12px;
        padding: 8px 16px;
        height: 36px;
    }
}

.cookie-banner:focus-within {
    outline-offset: 2px;
}

.cookie-banner {
    will-change: transform;
}

.cookie-text p {
    color: #1d4076;
}

.privacy-link {
    color: #1565c0;
}

.cookie-accept-btn:hover {
    background: #1565c0;
}

.cookie-accept-btn:focus-visible {
    outline: 2px solid #1565c0;
    outline-offset: 2px;
}

.cookie-banner,.cookie-accept-btn,.privacy-link {
    transition: all 0.3s ease;
}

.cookie-banner {
    background: #ffffff;
    border-top: 1px solid #dee2e6;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.footer-address,.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-address p,.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin: 0;
}

.footer-address i,.footer-contact-info i {
    width: 16px;
    color: #fff;
}

.footer-section.site-map {
    display: block;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
        gap: var(--spacing-lg);
    }

    .footer-section.site-map {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns:1fr;
        gap: var(--spacing-lg);
    }

    .footer-certifications {
        flex-direction: column;
        align-items: center;
    }

    .cert-item {
        width: 100%;
        max-width: 200px;
        flex-direction: row;
        text-align: left;
        gap: var(--spacing-sm);
    }

    .cert-item i {
        margin-bottom: 0;
    }
}

Ã¯Â»Â¿.breadcrumb-nav {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    float: right;
    margin-right: 31px;
}

nav.breadcrumb-nav a {
    color: var(--primary-600);
}

.breadcrumb {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding-left: 20px;
    /* color: #ffe9e9; */
}

.breadcrumb li:not(:last-child)::after {
    /* content: '>'; */
    margin: 0 0.5rem;
    color: #333c44;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.como-comprar-hero,.sobre-hero,.faq-hero,.contato-hero,.tracking-hero,.politica-hero {
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.como-comprar-hero {
    background: linear-gradient(to left,rgba(0,0,0,0),rgba(0,0,0,0.5) 80%),url(../images/bg_slider_01.jpeg) #1e3a8a;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

.sobre-hero {
    background: linear-gradient(to left,rgba(0,0,0,0),rgba(0,0,0,0.6) 80%),url(../images/bg_quem_somos.jpeg) #1e3a8a;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

.contato-hero {
    background: linear-gradient(to left,rgba(0,0,0,0),rgba(0,0,0,0.6) 80%),url(../images/img_contato.jpg) #1e3a8a;
    background-position: top center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

.faq-hero {
    background: linear-gradient(to left,rgba(0,0,0,0),rgba(0,0,0,0.6) 80%),url(../images/bg_quem_somos.jpeg) #1e3a8a;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

.contato-hero,.tracking-hero,.politica-hero {
}

.hero-title,.sobre-hero-title,.faq-hero-title,.contato-hero-title,.politica-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle,.sobre-hero-subtitle,.faq-hero-subtitle,.contato-hero-subtitle,.politica-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.sobre-hero-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 3rem;
    text-align: center;
}

h2.section-title-sobre {
    font-size: 2em;
    font-weight: 700;
    color: var(--bs-secondary-text-emphasis);
    margin-bottom: var(--spacing-3xl);
    display: flex;
    gap: var(--spacing-sm);
    letter-spacing: -1px;
}

.section-subtitle {
    color: var(--brand-dark);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

h2.section-title-medicamentos {
    font-size: var(--font-2xl);
    font-weight: 700;
    color: var(--primary-600);
    margin-bottom: var(--spacing-xl);
    line-height: 0.9em;
    letter-spacing: -1px;
    margin-top: 10px;
}

.btn-primary,.btn-whatsapp,.btn-secondary,.btn-contact,.btn-print,.btn-track {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg,#3b82f6,#1e40af);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59,130,246,0.3);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.search-card,.result-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.search-card {
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #3b82f6;
}

.faq-accordion {
    margin: 2rem 0;
}

.faq-item {
    background: #dee2e6;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.1rem;
    transition: background 0.3s ease;
}

.faq-question:hover {
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 0.25rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #e5e7eb;
}

.timeline-item.active::before {
    background: #3b82f6;
}

.timeline-item.completed::before {
    background: #10b981;
}

.steps-grid,.docs-grid,.info-grid,.faq-grid {
    display: grid;
    gap: 2rem;
}

.steps-grid {
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    max-width: 1200px;
    margin: 0 auto;
}

.step-item,.step-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.step-item:hover,.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg,#3b82f6,#1e40af);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
}

.step-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg,#f0f9ff,#e0f2fe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0ea5e9;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.step-item:hover .step-icon {
    background: linear-gradient(135deg,#0ea5e9,#0284c7);
    color: white;
    transform: scale(1.1);
}

.step-content h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-size: 1.3rem;
    padding-right: 4rem;
}

.step-content p {
    color: #4b5563;
    line-height: 1.6;
    padding-right: 1rem;
}

.nossa-historia {
    padding: 5rem 0;
    background: #fff;
}

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

.historia-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #4b5563;
}

.historia-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.quem-somos-image {
    max-width: 100%;
    height: auto;
    border-radius: 40px 5px 40px 5px;
    width: 450px;
    box-shadow: 0 8px 12px rgba(0,0,0,0.3);
}

.missao-visao-valores {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.mvv-description {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

.mvv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mvv-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg,#3b82f6,#1e40af);
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg,#3b82f6,#1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 8px 24px rgba(59,130,246,0.3);
    flex-shrink: 0;
}

.mvv-icon i {
    font-size: 2rem;
    color: white;
}

.mvv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
    font-weight: 700;
    flex-shrink: 0;
}

.mvv-card p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1rem;
    flex-grow: 1;
}

.mvv-card ul {
    text-align: left;
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    flex-grow: 1;
}

.mvv-card li {
    margin-bottom: 1rem;
    color: #4b5563;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.mvv-card li::before {
    content: 'ÃƒÂ¢Ã…â€œ"';
    color: #10b981;
    font-weight: bold;
    margin-right: 0.75rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.mvv-card strong {
    color: #1f2937;
    font-weight: 600;
}

.compromisso-excelencia {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.compromisso-items {
    margin: 2rem 0;
}

.compromisso-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #4b5563;
}

.compromisso-item i {
    color: var(--brand-dark);
    margin-right: 0.75rem;
}

.compromisso-cta {
    margin-top: 2rem;
}

@media (max-width: 1200px) {
    .mvv-grid {
        gap:2rem;
        padding: 0 2rem;
    }

    .mvv-card {
        padding: 2rem 1.5rem;
        min-height: 380px;
    }
}

@media (max-width: 992px) {
    .mvv-grid {
        grid-template-columns:1fr;
        gap: 2rem;
        max-width: 600px;
        padding: 0 1rem;
    }

    .mvv-card {
        min-height: auto;
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .breadcrumb-nav {
        display:none !important;
    }

    .hero-title,.sobre-hero-title,.faq-hero-title,.contato-hero-title,.politica-hero-title {
        font-size: 2rem;
    }

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

    .steps-grid,.docs-grid,.info-grid,.faq-grid {
        grid-template-columns: 1fr;
    }

    .historia-content,.compromisso-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .mvv-card {
        padding: 2rem 1.5rem;
    }

    .mvv-icon {
        width: 70px;
        height: 70px;
    }

    .mvv-icon i {
        font-size: 1.8rem;
    }
}

p,li {
}

a {
    color: #3b82f6;
    text-decoration: none;
}

a:hover {
}

.processo-steps {
    padding: 5rem 0;
    background: #f8f9fa;
}

.steps-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.steps-description {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.progress-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    transition: all 0.3s ease;
}

.progress-dot.active {
    background: #3b82f6;
}

.steps-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.timeline-line {
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e5e7eb;
    z-index: 1;
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3b82f6;
    transform-origin: left;
    animation: progressLine 2s ease-in-out;
}

@keyframes progressLine {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 200px;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #9ca3af;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.timeline-step:hover .timeline-icon {
    border-color: #3b82f6;
    color: #3b82f6;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(59,130,246,0.2);
}

.timeline-content h3 {
    font-size: 0.8rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.timeline-content p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.timeline-step {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.timeline-step:nth-child(2) {
    animation-delay: 0.1s;
}

.timeline-step:nth-child(3) {
    animation-delay: 0.2s;
}

.timeline-step:nth-child(4) {
    animation-delay: 0.3s;
}

.timeline-step:nth-child(5) {
    animation-delay: 0.4s;
}

.timeline-step:nth-child(6) {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-atendente {
    color: var(--text-white);
    padding: var(--spacing-4xl) 0;
    position: relative;
    background: linear-gradient(to left,rgba(0,0,0,0),rgba(0,0,0,0.5) 80%),url(../images/bg_especialistas.jpeg) var(--primary-600);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

.cta-atendente .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.cta-atendente-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
    justify-items: center;
    text-align: center;
}

.cta-atendente-text {
    max-width: 600px;
}

.cta-atendente-title {
    font-size: var(--font-3xl);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--spacing-xl);
    line-height: 0.9em;
}

.cta-atendente-description {
    font-size: var(--font-lg);
    color: var(--text-white);
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-atendente-btn {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
    padding: var(--spacing-lg) var(--spacing-2xl);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: var(--font-base);
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-atendente-btn:hover {
    background: var(--text-white);
    color: var(--primary-600);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

.cta-atendente-btn i {
    transition: transform 0.3s ease;
}

.cta-atendente-btn:hover i {
    transform: translateX(3px);
}

@media (max-width: 1024px) {
    .steps-timeline {
        flex-direction:column;
        align-items: center;
        gap: 3rem;
    }

    .timeline-line {
        display: none;
    }

    .timeline-step {
        max-width: 400px;
        flex-direction: row;
        text-align: left;
    }

    .timeline-icon {
        margin-right: 1.5rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .timeline-content {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .timeline-step {
        flex-direction:column;
        text-align: center;
        max-width: 300px;
    }

    .timeline-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

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

    .cta-atendente-description {
        font-size: 1rem;
    }

    .cta-atendente-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

.tratamentos-compromissos {
    padding: 5rem 0;
    background: #fff;
}

.tratamentos-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.tratamento-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.tratamento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.tratamento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.tratamento-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 8px 24px rgba(59,130,246,0.3);
    flex-shrink: 0;
}

.tratamento-icon i {
    font-size: 2rem;
    color: white;
}

.tratamento-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1.3;
}

.tratamento-card p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1rem;
    flex-grow: 1;
    margin: 0;
}

@media (max-width: 1200px) {
    .tratamentos-grid {
        gap:2rem;
        padding: 0 2rem;
    }

    .tratamento-card {
        padding: 2rem 1.5rem;
        min-height: 320px;
    }
}

@media (max-width: 992px) {
    .tratamentos-grid {
        grid-template-columns:1fr;
        gap: 2rem;
        max-width: 600px;
        padding: 0 1rem;
    }

    .tratamento-card {
        min-height: auto;
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .tratamento-card {
        padding:2rem 1.5rem;
    }

    .tratamento-icon {
        width: 70px;
        height: 70px;
    }

    .tratamento-icon i {
        font-size: 1.8rem;
    }

    .tratamento-card h3 {
        font-size: 1.2rem;
    }
}

.faq-search {
    max-width: 500px;
    margin: 2rem auto 0;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.search-container:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.search-container:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

#faqSearch {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #374151;
    outline: none;
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
    line-height: 1.5;
}

#faqSearch::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

#faqSearch:focus::placeholder {
    color: #d1d5db;
}

#searchBtn {
    background: #ffffff;
    border: none;
    border-left: 1px solid #e5e7eb;
    padding: 12px 16px;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
}

#searchBtn:hover {
    background: #f9fafb;
    color: #374151;
}

#searchBtn:active {
    background: #f3f4f6;
    transform: scale(0.98);
}

#searchBtn i {
    font-size: 16px;
    transition: transform 0.2s ease;
}

#searchBtn:hover i {
    transform: scale(1.05);
}

.search-container:focus-within #searchBtn {
    color: #3b82f6;
}

@media (max-width: 768px) {
    .faq-search {
        max-width:100%;
        margin: 1.5rem 1rem 0;
    }

    #faqSearch {
        padding: 10px 14px;
        font-size: 16px;
    }

    #searchBtn {
        padding: 10px 14px;
        min-width: 44px;
    }

    #searchBtn i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .search-container {
        border-radius:6px;
    }

    #faqSearch {
        padding: 8px 12px;
        font-size: 16px;
    }

    #searchBtn {
        padding: 8px 12px;
        min-width: 40px;
    }
}

#faqSearch:focus {
    outline: none;
}

#searchBtn:focus {
    outline: 2px solid #3b82f6;
    outline-offset: -2px;
}

.search-container {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.no-results-message {
    text-align: center;
    padding: 3rem 2rem;
    margin: 2rem 0;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    animation: fadeInUp 0.5s ease-out;
}

.no-results-content {
    max-width: 500px;
    margin: 0 auto;
}

.no-results-content i {
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    display: block;
}

.no-results-content h3 {
    color: #495057;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.no-results-content p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.no-results-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.no-results-content .btn-primary {
    background: #007bff;
    color: white;
    border: 2px solid #007bff;
}

.no-results-content .btn-primary:hover {
    background: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

.no-results-content .btn i {
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .no-results-message {
        padding:2rem 1rem;
        margin: 1rem 0;
    }

    .no-results-content h3 {
        font-size: 1.3rem;
    }

    .no-results-content p {
        font-size: 1rem;
    }

    .no-results-content .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

.contato-hero-new {
    background: linear-gradient(135deg,#1e3a8a 0%,#3730a3 50%,#1e40af 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contato-hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.formulario-principal {
}

.form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form-container {
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,rgba(59,130,246,0.1) 0%,rgba(147,51,234,0.1) 100%);
    pointer-events: none;
}

.medicamento-form {
    position: relative;
    z-index: 2;
}

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

.form-group label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,.form-group select,.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    color: #1f2937;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group input:focus,.form-group select:focus,.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.3),0 4px 20px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.form-group input::placeholder,.form-group textarea::placeholder {
    color: #9ca3af;
}

.checkbox-group {
    margin: 2rem 0;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    color: white;
    line-height: 1.5;
}

.checkbox-container input[type="checkbox"] {
    width: auto;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    transform: scale(1.2);
}

.checkbox-text {
    font-size: 0.9rem;
}

.checkbox-text a {
    color: #60a5fa;
    text-decoration: none;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

.btn-solicitar {
    width: 100%;
    background: linear-gradient(135deg,#10b981 0%,#059669 100%);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(16,185,129,0.3);
}

.btn-solicitar:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16,185,129,0.4);
    background: linear-gradient(135deg,#059669 0%,#047857 100%);
}

.info-adicional {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.info-icon {
}

.info-icon i {
}

.info-card h3 {
    color: #1f2937;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contato-alternativo {
    background: white;
    padding: 4rem 0;
}

.contato-alternativo h2 {
    text-align: center;
    color: #1f2937;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.contatos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contato-item {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contato-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contato-item.whatsapp:hover {
    border-color: #25d366;
}

.contato-item.telefone:hover {
    border-color: #3b82f6;
}

.contato-item.email:hover {
    border-color: #f59e0b;
}

.contato-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.whatsapp .contato-icon {
    background: linear-gradient(135deg,#25d366,#128c7e);
}

.telefone .contato-icon {
    background: linear-gradient(135deg,#3b82f6,#1e40af);
}

.email .contato-icon {
    background: linear-gradient(135deg,#f59e0b,#d97706);
}

.contato-icon i {
    font-size: 2rem;
    color: white;
}

.contato-info h3 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contato-info p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.btn-contato {
    display: inline-block;
    background: #1f2937;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contato:hover {
    background: #374151;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .form-wrapper {
        grid-template-columns:1fr;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .form-container {
        padding:2rem;
        margin: 0 1rem;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .contatos-grid {
        grid-template-columns: 1fr;
    }

    .info-adicional {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .contato-hero-new {
        padding:2rem 0;
    }

    .formulario-principal {
        padding: 2rem 0;
    }

    .form-container {
        margin: 0 0.5rem;
        padding: 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }
}

.no-results-message {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 2rem 0;
}

.no-results-content i {
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.no-results-content h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.no-results-content p {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37,211,102,0.3);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108,117,125,0.3);
}

@media (max-width: 768px) {
    .contact-options {
        flex-direction:column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

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

.contato-hero-new {
    background: linear-gradient(135deg,#1e3a8a 0%,#3730a3 50%,#1e40af 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contato-hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.formulario-principal {
}

.form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form-container {
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,rgba(59,130,246,0.1) 0%,rgba(147,51,234,0.1) 100%);
    pointer-events: none;
}

.medicamento-form {
    position: relative;
    z-index: 2;
}

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

.form-group label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,.form-group select,.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    color: #1f2937;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group input:focus,.form-group select:focus,.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.3),0 4px 20px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.form-group input::placeholder,.form-group textarea::placeholder {
    color: #9ca3af;
}

.checkbox-group {
    margin: 2rem 0;
}

.checkbox-wrapper {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    color: white;
    line-height: 1.5;
}

.checkbox-container input[type="checkbox"] {
    width: auto;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    transform: scale(1.2);
}

.checkbox-text {
    font-size: 0.9rem;
}

.checkbox-text a {
    color: #60a5fa;
    text-decoration: none;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

.upload-group {
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px dashed rgba(255,255,255,0.3);
    margin: 1.5rem 0;
}

.upload-container {
    width: 100%;
}

.upload-area {
    border: 2px dashed rgba(255,255,255,0.4);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.05);
}

.upload-area:hover,.upload-area.drag-over {
    border-color: #60a5fa;
    background: rgba(96,165,250,0.1);
    transform: translateY(-2px);
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.upload-icon {
    font-size: 3rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}

.upload-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.upload-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.upload-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.btn-browse {
    background: linear-gradient(135deg,#3b82f6,#1e40af);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-browse:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59,130,246,0.3);
}

.upload-info {
    margin-top: 1rem;
    text-align: center;
}

.progress-container {
    margin-top: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg,#10b981,#059669);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    color: white;
    font-size: 0.9rem;
}

.arquivo-info {
    margin-top: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 1rem;
}

.arquivo-detalhes {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.arquivo-icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
}

.arquivo-texto {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.arquivo-nome {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.arquivo-tamanho {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
}

.arquivo-status {
    color: #10b981;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.arquivo-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-preview,.btn-remover {
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-preview:hover {
    background: rgba(59,130,246,0.3);
    border-color: #3b82f6;
}

.btn-remover:hover {
    background: rgba(239,68,68,0.3);
    border-color: #ef4444;
}

.btn-solicitar {
    width: 100%;
    background: linear-gradient(135deg,#10b981 0%,#059669 100%);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(16,185,129,0.3);
}

.btn-solicitar:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16,185,129,0.4);
    background: linear-gradient(135deg,#059669 0%,#047857 100%);
}

.btn-solicitar:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.info-adicional {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.info-icon {
}

.info-icon i {
}

.info-card h3 {
    color: #1f2937;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contato-alternativo {
    background: white;
    padding: 4rem 0;
}

.contato-alternativo h2 {
    text-align: center;
    color: #1f2937;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.contatos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contato-item {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contato-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contato-item.whatsapp:hover {
    border-color: #25d366;
}

.contato-item.telefone:hover {
    border-color: #3b82f6;
}

.contato-item.email:hover {
    border-color: #f59e0b;
}

.contato-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.whatsapp .contato-icon {
    background: linear-gradient(135deg,#25d366,#128c7e);
}

.telefone .contato-icon {
    background: linear-gradient(135deg,#3b82f6,#1e40af);
}

.email .contato-icon {
    background: linear-gradient(135deg,#f59e0b,#d97706);
}

.contato-icon i {
    font-size: 2rem;
    color: white;
}

.contato-info h3 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contato-info p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.btn-contato {
    display: inline-block;
    background: #1f2937;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contato:hover {
    background: #374151;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .form-wrapper {
        grid-template-columns:1fr;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .form-container {
        padding:2rem;
        margin: 0 1rem;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .contatos-grid {
        grid-template-columns: 1fr;
    }

    .info-adicional {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .contato-hero-new {
        padding:2rem 0;
    }

    .formulario-principal {
        padding: 2rem 0;
    }

    .form-container {
        margin: 0 0.5rem;
        padding: 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }
}

.no-results-message {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 2rem 0;
}

.no-results-content i {
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.no-results-content h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.no-results-content p {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37,211,102,0.3);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108,117,125,0.3);
}

@media (max-width: 768px) {
    .contact-options {
        flex-direction:column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

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

.contato-hero-new {
    background: linear-gradient(135deg,#1e3a8a 0%,#3730a3 50%,#1e40af 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contato-hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.formulario-principal {
}

.form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form-container {
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,rgba(59,130,246,0.1) 0%,rgba(147,51,234,0.1) 100%);
    pointer-events: none;
}

.medicamento-form {
    position: relative;
    z-index: 2;
}

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

.form-group label {
    display: block;
    color: white;
    /* font-weight: 600; */
    margin-bottom: -0.5rem;
    font-size: 1rem;
}

.form-group input,.form-group select,.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    color: #1f2937;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group input:focus,.form-group select:focus,.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.3),0 4px 20px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.form-group input::placeholder,.form-group textarea::placeholder {
    color: #9ca3af;
}

.checkbox-group {
    margin: 2rem 0;
}

.checkbox-wrapper {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    color: white;
    line-height: 1.5;
}

.checkbox-container input[type="checkbox"] {
    width: auto;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    transform: scale(1.2);
}

.checkbox-text {
    font-size: 0.9rem;
}

.checkbox-text a {
    color: #60a5fa;
    text-decoration: none;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

.upload-group {
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px dashed rgba(255,255,255,0.3);
    margin: 1.5rem 0;
}

.upload-container {
    width: 100%;
}

.upload-area {
    border: 2px dashed rgba(255,255,255,0.4);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.05);
}

.upload-area:hover,.upload-area.drag-over {
    border-color: #60a5fa;
    background: rgba(96,165,250,0.1);
    transform: translateY(-2px);
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.upload-icon {
    font-size: 3rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}

.upload-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.upload-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.upload-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.btn-browse {
    background: linear-gradient(135deg,#3b82f6,#1e40af);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-browse:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59,130,246,0.3);
}

.upload-info {
    margin-top: 1rem;
    text-align: center;
}

.progress-container {
    margin-top: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg,#10b981,#059669);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    color: white;
    font-size: 0.9rem;
}

.arquivo-info {
    margin-top: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 1rem;
}

.arquivo-detalhes {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.arquivo-icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
}

.arquivo-texto {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.arquivo-nome {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.arquivo-tamanho {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
}

.arquivo-status {
    color: #10b981;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.arquivo-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-preview,.btn-remover {
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-preview:hover {
    background: rgba(59,130,246,0.3);
    border-color: #3b82f6;
}

.btn-remover:hover {
    background: rgba(239,68,68,0.3);
    border-color: #ef4444;
}

.btn-solicitar {
    width: 100%;
    background: linear-gradient(135deg,#10b981 0%,#059669 100%);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(16,185,129,0.3);
}

.btn-solicitar:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16,185,129,0.4);
    background: linear-gradient(135deg,#059669 0%,#047857 100%);
}

.btn-solicitar:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.info-adicional {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.info-icon {
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--bs-secondary);
}

.info-card h3 {
    color: #1f2937;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contato-alternativo {
    background: white;
    padding: 4rem 0;
}

.contato-alternativo h2 {
    text-align: center;
    color: #1f2937;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.contatos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contato-item {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contato-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contato-item.whatsapp:hover {
    border-color: #25d366;
}

.contato-item.telefone:hover {
    border-color: #3b82f6;
}

.contato-item.email:hover {
    border-color: #f59e0b;
}

.contato-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.whatsapp .contato-icon {
    background: linear-gradient(135deg,#25d366,#128c7e);
}

.telefone .contato-icon {
    background: linear-gradient(135deg,#3b82f6,#1e40af);
}

.email .contato-icon {
    background: linear-gradient(135deg,#f59e0b,#d97706);
}

.contato-icon i {
    font-size: 2rem;
    color: white;
}

.contato-info h3 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contato-info p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.btn-contato {
    display: inline-block;
    background: #1f2937;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contato:hover {
    background: #374151;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .form-wrapper {
        grid-template-columns:1fr;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .form-container {
        padding:2rem;
        margin: 0 1rem;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .contatos-grid {
        grid-template-columns: 1fr;
    }

    .info-adicional {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .contato-hero-new {
        padding:2rem 0;
    }

    .formulario-principal {
        padding: 2rem 0;
    }

    .form-container {
        margin: 0 0.5rem;
        padding: 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .upload-content {
        gap: 0.5rem;
    }

    .upload-icon {
        font-size: 2rem;
    }
}

.contato-hero-new {
    background: linear-gradient(135deg,#1e3a8a 0%,#3b82f6 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contato-hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/doctor-patient-consultation.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.contato-hero-new .container {
    position: relative;
    z-index: 2;
}

.contato-hero-new h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contato-hero-new p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.formulario-principal {
    padding: 4rem 0;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-container {
}

.medicamento-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    /* font-weight: 600; */
    color: #333333;
    font-size: 0.7rem;
}

.form-group input,.form-group select,.form-group textarea {
    padding: 9px 10px;
    /* border: 2px solid #e1e5e9; */
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,.form-group select:focus,.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    margin: 1rem 0;
}

.checkbox-wrapper {
    display: block;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    line-height: 1.5;
    position: relative;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-container:hover .checkmark {
    border-color: #3b82f6;
    background: #f8f9ff;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: #3b82f6;
    border-color: #3b82f6;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: 'ÃƒÂ¢Ã…â€œ"';
    color: white;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}

.checkbox-text {
    font-size: 0.9rem;
    color: #666;
    flex: 1;
    user-select: none;
}

.checkbox-text a {
    color: #3b82f6;
    text-decoration: none;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

.btn-solicitar {
    background: linear-gradient(135deg,#3b82f6 0%,#1e3a8a 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.btn-solicitar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59,130,246,0.3);
}

.btn-solicitar:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.info-adicional {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.info-icon {
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contato-alternativo {
    padding: 4rem 0;
    background: white;
}

.contato-alternativo h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
}

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

.contato-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contato-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contato-item.whatsapp {
    border-color: #25d366;
}

.contato-item.telefone {
    border-color: #3b82f6;
}

.contato-item.email {
    border-color: #ea4335;
}

.contato-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.contato-item.whatsapp .contato-icon {
    background: #25d366;
}

.contato-item.telefone .contato-icon {
    background: #3b82f6;
}

.contato-item.email .contato-icon {
    background: #ea4335;
}

.contato-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.contato-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.btn-contato {
    display: inline-block;
    padding: 10px 20px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-contato:hover {
    background: #555;
    transform: translateY(-2px);
}

.upload-group {
    margin: 20px 0;
}

.upload-container {
    position: relative;
}

.upload-area {
    border: 2px dashed #2196f3;
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg,#f8f9ff 0%,#e3f2fd 100%);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-area:hover {
    border-color: #1976d2;
    background: linear-gradient(135deg,#e3f2fd 0%,#bbdefb 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33,150,243,0.15);
}

.upload-area.drag-over {
    border-color: #1976d2;
    background: linear-gradient(135deg,#e3f2fd 0%,#bbdefb 100%);
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(33,150,243,0.25);
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.upload-icon {
    position: relative;
}

.upload-icon i {
    font-size: 64px;
    color: #2196f3;
    transition: all 0.3s ease;
}

.upload-area:hover .upload-icon i {
    transform: scale(1.1);
    color: #1976d2;
}

.upload-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.upload-text {
    font-size: 18px;
    font-weight: 600;
    color: #1976d2;
    margin: 0;
}

.upload-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.btn-browse {
    background: linear-gradient(135deg,#2196f3 0%,#1976d2 100%);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(33,150,243,0.3);
}

.btn-browse:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33,150,243,0.4);
}

.btn-browse i {
    font-size: 16px;
}

.upload-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 10px;
}

.progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    padding: 20px;
    border-radius: 0 0 16px 16px;
    backdrop-filter: blur(10px);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg,#4caf50 0%,#8bc34a 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #333;
}

#progress-percentage {
    font-weight: 600;
    color: #4caf50;
}

#progress-status {
    color: #666;
}

.arquivo-info {
    margin-top: 20px;
    animation: slideDown 0.3s ease-out;
}

.arquivo-detalhes {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.arquivo-icon {
    flex-shrink: 0;
}

.arquivo-icon i {
    font-size: 32px;
}

.arquivo-texto {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.arquivo-nome {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.arquivo-tamanho {
    font-size: 14px;
    color: #666;
}

.arquivo-status {
    font-size: 12px;
    color: #4caf50;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.arquivo-status i {
    font-size: 14px;
}

.arquivo-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.btn-preview,.btn-remover {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-preview {
    background: #2196f3;
    color: white;
}

.btn-preview:hover {
    background: #1976d2;
    transform: scale(1.05);
}

.btn-remover {
    background: #f44336;
    color: white;
}

.btn-remover:hover {
    background: #d32f2f;
    transform: scale(1.05);
}

.mensagem-prescricao {
    margin: 15px 0;
    animation: slideDown 0.3s ease-out;
}

.alert-info {
    background: linear-gradient(135deg,#e3f2fd 0%,#bbdefb 100%);
    border: 1px solid #2196f3;
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1565c0;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(33,150,243,0.15);
    transition: all 0.3s ease;
}

.alert-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33,150,243,0.25);
}

.alert-info i {
    font-size: 18px;
    color: #1976d2;
}

.alert-info span {
    font-size: 14px;
    line-height: 1.4;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .contato-hero-new h1 {
        font-size:2rem;
    }

    .contato-hero-new p {
        font-size: 1rem;
    }

    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-container {
        padding: 1.5rem;
    }

    .contatos-grid {
        grid-template-columns: 1fr;
    }

    .upload-area {
        padding: 30px 15px;
        min-height: 180px;
    }

    .upload-icon i {
        font-size: 48px;
    }

    .upload-text {
        font-size: 16px;
    }

    .upload-subtitle {
        font-size: 12px;
    }

    .btn-browse {
        padding: 10px 20px;
        font-size: 13px;
    }

    .arquivo-detalhes {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .arquivo-actions {
        justify-content: center;
    }

    .progress-container {
        padding: 15px;
    }

    .alert-info {
        padding: 12px 16px;
        font-size: 13px;
    }

    .alert-info i {
        font-size: 16px;
    }
}

#checkbox-prescricao .checkbox-container {
    background: #f8f9ff;
    border: 1px solid #e3f2fd;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    transition: all 0.3s ease;
}

#checkbox-prescricao .checkbox-container:hover {
    background: #e3f2fd;
    border-color: #bbdefb;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(33,150,243,0.1);
}

#checkbox-prescricao .checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid #2196f3;
    border-radius: 6px;
    background: white;
}

#checkbox-prescricao .checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: #2196f3;
    border-color: #2196f3;
}

#checkbox-prescricao .checkbox-text {
    font-weight: 500;
    color: #1976d2;
    font-size: 0.95rem;
}

#checkbox-prescricao {
    display: block !important;
}

#checkbox-prescricao .checkbox-wrapper {
    display: block !important;
    width: 100% !important;
}

#checkbox-prescricao .checkbox-container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

#checkbox-prescricao .checkmark {
    order: 1 !important;
    flex-shrink: 0 !important;
    margin-right: 12px !important;
}

#checkbox-prescricao .checkbox-text {
    order: 2 !important;
    flex: 1 !important;
    margin-left: 0 !important;
    text-align: left !important;
    white-space: normal !important;
    word-wrap: break-word !important;
}

#enviar_prescricao {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.medicamento-form .form-group {
    margin-bottom: 1rem;
}

.medicamento-form .form-group label {
    margin-bottom: 0.10rem;
    font-size: 0.9rem;
}

.medicamento-form .form-group input,.medicamento-form .form-group select,.medicamento-form .form-group textarea {
    padding: 0.75rem;
    font-size: 0.95rem;
}

.medicamento-form .checkbox-group {
    margin: 1rem 0;
}

.medicamento-form .checkbox-text {
    font-size: 0.85rem;
}

.form-container-minimal {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto;
}

.medicamento-form-minimal {
    position: relative;
}

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

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

.form-group-minimal label {
    display: block;
    color: var(--primary-600);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group-minimal input,.form-group-minimal select,.form-group-minimal textarea {
    width: 100%;
    padding: 0.75rem 0;
    border: none;
    border-bottom: 2px solid #e5e7eb;
    font-size: 1rem;
    background: transparent;
    color: #1f2937;
    transition: all 0.3s ease;
    outline: none;
}

.form-group-minimal input:focus,.form-group-minimal select:focus,.form-group-minimal textarea:focus {
    border-bottom-color: #3b82f6;
    background: rgba(59,130,246,0.02);
}

.form-group-minimal input::placeholder,.form-group-minimal textarea::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.form-group-minimal select {
    cursor: pointer;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    padding: 0.75rem;
    margin-top: 0.5rem;
}

.form-group-minimal select:focus {
    border-color: #3b82f6;
    background: white;
}

.form-group-minimal textarea {
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    padding: 0.75rem;
    margin-top: 0.5rem;
    resize: vertical;
    min-height: 80px;
}

.form-group-minimal textarea:focus {
    border-color: #3b82f6;
    background: white;
}

.checkbox-group-minimal {
    margin: 1.5rem 0;
}

.checkbox-container-minimal {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    color: #6b7280;
    line-height: 1.5;
}

.checkbox-container-minimal input[type="checkbox"] {
    width: auto;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    transform: scale(1.1);
}

.checkbox-text {
    font-size: 0.85rem;
    color: #6b7280;
}

.checkbox-text a {
    color: #3b82f6;
    text-decoration: none;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

.upload-group-minimal {
    margin: 1.5rem 0;
}

.upload-group-minimal label {
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns:1fr;
        gap: 1rem;
    }

    .form-container-minimal {
        padding: 2rem 1.5rem;
    }
}

.checkbox-container-minimal {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #6b7280;
    line-height: 1.5;
    gap: 0.75rem;
}

.checkbox-container-minimal input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: #3b82f6;
}

.checkbox-text {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkbox-text a {
    color: #3b82f6;
    text-decoration: none;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

.contatos-clean {
    position: relative;
    padding: 2rem 0;
}

.contatos-icons {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 10;
}

.contato-icon-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.contato-icon-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.whatsapp-icon {
    /* background: #25d366; */
    color: white;
}

.telefone-icon {
    background: #1e3a8a;
    color: white;
}

.email-icon {
    background: #1e3a8a;
    color: white;
}

.contatos-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-right: 2rem;
}

.contato-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contato-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.whatsapp-card {
    border-color: #25d366;
}

.telefone-card {
    border-color: #1e3a8a;
}

.email-card {
    border-color: #1e3a8a;
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.whatsapp-card .card-icon {
    background: #25d366;
}

.telefone-card .card-icon {
    background: #1e3a8a;
}

.email-card .card-icon {
    background: #1e3a8a;
}

.contato-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contato-card p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.btn-contato-clean {
    display: inline-block;
    background: #374151;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.btn-contato-clean:hover {
    background: #1f2937;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .contatos-clean {
        padding:1rem 0;
    }

    .contatos-icons {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 2rem;
    }

    .contatos-cards {
        margin-right: 0;
    }

    .contato-card {
        padding: 1.5rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

.contatos-ultra-clean {
    text-align: left;
}

.contato-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 2rem;
    text-align: left;
}

.contato-info-list {
    margin-bottom: 2rem;
    text-align: left;
    margin-top: 2rem;
}

.contato-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    justify-content: flex-start;
    text-align: left;
}

.contato-info-item:hover {
    transform: translateX(5px);
}

.info-icon {
    width: 32px;
    height: 32px;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.info-text {
    font-size: 1rem;
    color: #374151;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
    flex: 1;
}

.whatsapp-card-destaque {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-card-destaque:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.2);
}

.card-icon-whatsapp {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.whatsapp-card-destaque h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.whatsapp-card-destaque p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.btn-whatsapp {
    display: inline-block;
    background: #374151;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background: #1f2937;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .col-12-mobile {
        flex:0 0 100%;
        max-width: 100%;
    }

    .contatos-ultra-clean {
        padding: 1rem 0;
        text-align: left;
    }

    .contato-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
        text-align: left;
    }

    .contato-info-item {
        margin-bottom: 1rem;
        text-align: left;
    }

    .info-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .info-text {
        font-size: 0.9rem;
        text-align: left;
    }

    .whatsapp-card-destaque {
        padding: 1.5rem;
    }

    .card-icon-whatsapp {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

.product-header-sections {
    position: relative;
    z-index: 0;
    width: 100%;
    margin-bottom: 40px;
}

.background-bars {
    position: relative;
    z-index: 0;
    width: 100%;
}

.product-header-bar-yellow {
    background: var(--gradient-primary);
    height: 90px;
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 9px;
}

.product-header-bar-gray {
    background: var(--bs-gray-200);
    height: 120px;
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 9px;
}

.bar-separator {
    height: 10px;
    width: 100%;
}

.product-image-overlay-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 34%;
    z-index: 3;
    height: 90px;
}

@media (max-width: 768px) {
    .product-header-sections {
        position:relative;
    }

    .background-bars {
        position: relative;
    }
}

.product-image-overlay {
    text-align: center;
    padding: 20px;
    top: -100px;
}

.product-description-below-bar {
    padding: 30px 0;
    margin-top: 0;
    width: 100%;
    position: relative;
    z-index: 0;
}

.product-description-content h3 {
    font-size: 1.2rem;
    color: #23235b;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-description-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    /* text-align: justify; */
}


.product-main-title {
    font-size: 1.9rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin: 0 0 15px 0 !important;
    line-height: 1.1 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.principio-ativo-section {
    margin-top: 20px;
}
@media (min-width: 1024px) {
    section.product-details {
        margin-top: 60px;
    }
}

.principio-label {
    font-size: 1.1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.principio-underline {
    width: 80px;
    height: 3px;
    background: #000;
    margin: 8px 0;
    border-radius: 2px;
}

.principio-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #23235b;
    text-transform: uppercase;
    display: block;
    margin-top: 5px;
}

.product-image-overlay {
    text-align: center;
    position: relative;
    z-index: 3;
}

.product-image-overlay .main-image-container {
    max-width: 251px;
    margin: 0 auto;
    position: relative;
}

.product-image-overlay .main-image-container img {
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    transition: transform 0.3s ease;
}

.product-image-overlay .main-image-container img:hover {
    transform: translateY(-5px);
}

.thumbnail-images {
    margin-top: 20px;
}

.thumbnail {
    cursor: pointer;
    padding: 3px;
    transition: all 0.3s ease;
}

.thumbnail img {
    border-radius: 0;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: transparent;
}

.thumbnail.active img {
    border-color: #23235b;
    box-shadow: none;
}

.thumbnail:hover img {
    border-color: #666;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .product-header-bar-yellow,.product-header-bar-gray {
        height:100px;
    }

    .product-main-title {
        font-size: 2rem !important;
        text-align: center;
    }

    .principio-ativo-section {
        text-align: center;
    }

    .product-header-sections {
        display: flex;
        flex-direction: column;
    }

    .product-image-overlay-container {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: auto;
        order: -1;
        margin-bottom: 20px;
        background: #fff;
        padding: 20px 0;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .product-image-overlay {
        padding: 0;
        top: auto;
    }

    .product-image-overlay .main-image-container {
        max-width: 250px;
    }

    .background-bars {
        order: 1;
    }

    .product-description-below-bar {
        order: 3;
    }

    .product-description-below-bar .row {
        display: flex;
        flex-direction: column;
    }

    .product-description-below-bar .col-md-8 {
        order: 2;
    }

    .product-description-below-bar .col-md-4 {
        order: 1;
    }

    .product-specifications {
        padding-left: 0 !important;
        margin-top: 20px !important;
    }

    .product-specifications .spec-item {
        margin-bottom: 10px !important;
    }

    .product-specifications .spec-header {
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
    }

    .product-specifications .spec-content {
        padding: 10px 12px !important;
    }

    .product-specifications .spec-icon {
        font-size: 0.8rem !important;
        margin-right: 8px !important;
    }

    .product-specifications .spec-icon {
        font-size: 0.8rem !important;
        margin-right: 8px !important;
    }
}

@media (max-width: 576px) {
    .product-header-bar-yellow,.product-header-bar-gray {
        height:80px;
    }

    .product-main-title {
        font-size: 1.4rem !important;
    }

    .principio-value {
        font-size: 1.1rem;
    }

    .product-image-overlay .main-image-container {
        max-width: 200px;
    }

    .product-image-overlay-container {
        padding: 15px 0;
        margin-bottom: 15px;
    }

    .thumbnail-images {
        margin-top: 15px;
    }
}

/* Enhanced Products Section */
.destacados-section {
    padding: var(--spacing-3xl, 64px) 0;
    background: rgba(248, 250, 252, 0.9);
    backdrop-filter: blur(10px);
    padding-bottom: 20px;
}

.sl_products_carousel {
    transform: translateZ(0);
    backface-visibility: hidden;
    overflow: hidden;
    position: relative;
}

.products-container {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

.cloned-card {
    pointer-events: auto;
    flex-shrink: 0;
}

.sl_products_carousel.is-dragging .products-container {
    transition: none !important;
    cursor: grabbing;
}

.products-container {
    cursor: grab;
}

.products-container:active {
    cursor: grabbing;
}

@media (max-width: 768px) {
    .products-container {
        -webkit-overflow-scrolling:touch;
        scroll-behavior: smooth;
    }
}

.product-card {
    transition: transform 0.2s ease,box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-2px);
}

.sl_products_carousel.is-dragging {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.sl_products_carousel {
    position: relative;
    overflow: hidden;
    margin-top: var(--spacing-2xl, 48px);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.sl_products_carousel.loaded {
    opacity: 1;
}

/* Loading spinner */
.sl_products_carousel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-600, #1d4076);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1000;
}

.sl_products_carousel.loaded::before {
    display: none;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Container dos produtos com transiÃƒÂ§ÃƒÂµes suaves */
.products-container {
    display: flex;
    gap: var(--spacing-lg, 24px);
    will-change: transform;
    transition: transform 500ms ease-out;
}

/* Quando estÃƒÂ¡ sendo arrastado */
.sl_products_carousel.is-dragging .products-container {
    transition: none;
}

.sl_products_carousel.is-dragging .product-card {
    pointer-events: none;
    user-select: none;
}

/* Cards de produto aprimorados */
.product-card {
    background: var(--bg-white, #ffffff);
    border-radius: var(--radius-md, 8px);
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 10px var(--shadow-light, rgba(0, 0, 0, 0.1));
    transition: all var(--transition-fast, 0.2s ease);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    min-width: 250px;
    width: 250px;
}

/* Efeitos hover apenas em desktop */
@media (min-width: 769px) {
    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .product-card:hover .product-image {
        transform: scale(1.05);
    }
}

/* Link da imagem do produto */
.product-image-link {
    display: block;
    margin: 0 auto var(--spacing-md, 16px);
    cursor: pointer;
    text-align: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius-sm, 4px);
}

/* Imagem do produto com transiÃƒÂ§ÃƒÂ£o */
.product-image {
    width: 170px;
    height: 170px;
    object-fit: contain;
    border-radius: var(--radius-sm, 4px);
    display: block;
    margin: 0 auto;
    transition: transform var(--transition-fast, 0.2s ease);
}

/* Link do tÃƒÂ­tulo */
.product-title-link {
    display: block;
    text-decoration: none;
    transition: all var(--transition-fast, 0.2s ease);
    cursor: pointer;
}

.product-title-link:hover .product-title {
    color: var(--primary-600, #1d4076);
}

/* TÃƒÂ­tulo do produto */
.product-title {
    font-size: var(--font-sm, 0.875rem);
    font-weight: 500;
    color: var(--text-primary, #1a1a1a);
    margin-bottom: var(--spacing-sm, 8px);
    line-height: 1.4;
    height: 40px;
    max-height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    transition: color var(--transition-fast, 0.2s ease);
}

/* Fabricante */
.product-manufacturer {
    font-size: var(--font-xs, 0.75rem);
    color: var(--text-secondary, #666666);
    margin-bottom: var(--spacing-md, 16px);
    text-align: center;
    font-style: italic;
    height: 20px;
    max-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* BotÃƒÂ£o do produto aprimorado */
.product-btn {
    background: transparent;
    border: 2px solid var(--primary-600, #1d4076);
    color: var(--primary-600, #1d4076);
    padding: var(--spacing-sm, 8px) var(--spacing-lg, 24px);
    border-radius: var(--radius-full, 9999px);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.7rem;
    width: 100%;
    cursor: pointer;
    transition: all var(--transition-fast, 0.2s ease);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs, 4px);
    text-decoration: none;
    line-height: 12px;
    position: relative;
    overflow: hidden;
}

.product-btn::before {
    /* content: ''; */
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-600, #1d4076);
    transition: left var(--transition-fast, 0.2s ease);
    z-index: -1;
}



.product-btn:hover {
    color: var(--text-white, #ffffff);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(29, 64, 118, 0.3);
}

.product-btn:hover::before {
    left: 0;
}

.product-btn:hover::after {
    transform: translateX(3px);
}

/* NavegaÃƒÂ§ÃƒÂ£o do carrossel */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: var(--text-white, #ffffff);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-fast, 0.2s ease);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.carousel-nav:hover {
    background: var(--primary-600, #1d4076);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(29, 64, 118, 0.3);
}

.carousel-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

.carousel-nav:disabled:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carousel-prev {
    left: var(--spacing-sm, 8px);
}

.carousel-next {
    right: var(--spacing-sm, 8px);
}

/* Estados visuais para navegaÃƒÂ§ÃƒÂ£o */
.carousel-nav.at-start, .carousel-nav.at-end {
    opacity: 0.6;
}

/* Ocultar setas de navegaÃƒÂ§ÃƒÂ£o em dispositivos mÃƒÂ³veis e tablets */
@media (max-width: 768px) {
    .carousel-nav {
        display: none !important;
    }

    /* Melhorar experiÃƒÂªncia touch */
    .sl_products_carousel {
        cursor: grab;
        touch-action: pan-y pinch-zoom;
    }

    .sl_products_carousel.is-dragging {
        cursor: grabbing;
    }
}

/* Indicador visual de que ÃƒÂ© possÃƒÂ­vel arrastar em mobile */
@media (max-width: 768px) {
    .sl_products_carousel::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background: linear-gradient(90deg, transparent, var(--primary-600, #1d4076), transparent);
        border-radius: 2px;
        opacity: 0.5;
    }
}

/* Responsividade aprimorada */
@media (max-width: 576px) {
    .product-card {
        min-width: calc(50vw - 30px);
        /* 2 produtos no celular */
        width: calc(50vw - 30px);
        margin: 0 5px;
    }

    .products-container {
        gap: 15px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .product-card {
        min-width: calc(33.333vw - 20px);
        /* 3 produtos no tablet */
        width: calc(33.333vw - 20px);
    }
}

@media (min-width: 769px) {
    .product-card {
        min-width: calc(16.666vw - 20px);
        /* 6 produtos no desktop */
        width: calc(16.666vw - 20px);
        max-width: 250px;
    }
}

/* AnimaÃƒÂ§ÃƒÂµes de entrada */
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-card {
    animation: slideInFromRight 0.6s ease-out;
}

.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card:nth-child(4) {
    animation-delay: 0.4s;
}

.product-card:nth-child(5) {
    animation-delay: 0.5s;
}

.product-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Melhorias de acessibilidade */
.carousel-nav:focus {
    outline: 2px solid var(--primary-600, #1d4076);
    outline-offset: 2px;
}

.product-btn:focus {
    outline: 2px solid var(--primary-600, #1d4076);
    outline-offset: 2px;
}

/* ReduÃƒÂ§ÃƒÂ£o de movimento para usuÃƒÂ¡rios que preferem */
@media (prefers-reduced-motion: reduce) {
    .products-container {
        transition: none;
    }

    .product-card {
        animation: none;
        transition: none;
    }

    .product-btn::before {
        transition: none;
    }

    .carousel-nav {
        transition: none;
    }
}

/* Mensagem quando nÃƒÂ£o hÃƒÂ¡ produtos */
.no-products-message {
    text-align: center;
    padding: var(--spacing-3xl, 64px) var(--spacing-lg, 24px);
    color: var(--text-secondary, #666666);
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.no-products-message p {
    margin: 0;
    font-size: var(--font-lg, 1.125rem);
    line-height: 1.6;
}

.no-products-message p:first-child {
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
    margin-bottom: var(--spacing-sm, 8px);
}

.no-products-message p:last-child {
    font-size: var(--font-md, 1rem);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-content {
        text-align:center;
    }

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

    .footer-section h4 {
        justify-content: center;
    }

    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-section p {
        text-align: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-address,.footer-contact-info {
        align-items: center;
    }

    .footer-address p,.footer-contact-info p {
        justify-content: center;
    }
}  .product-specifications-vg-below .specs-vg-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 15px;
                margin-top: 25px;
            }

            /* Estilo dos cards de especificaÃ§Ã£o */
            .product-specifications-vg-below .spec-vg-item {
                background: #ffffff;
                border-radius: 8px;
                overflow: hidden;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
                border: 1px solid #e0e0e0;
                transition: transform 0.2s ease, box-shadow 0.2s ease;
            }

            .product-specifications-vg-below .spec-vg-item:hover {
                transform: translateY(-2px);
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            }

            .product-specifications-vg-below .spec-vg-header {
                /* background: #e9ecef; */
                color: #23235b;
                padding: 12px 15px;
                font-size: 0.85rem;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                display: flex;
                align-items: center;
                gap: 8px;
            }

            .product-specifications-vg-below .spec-icon {
                font-size: 1rem;
                width: 16px;
                text-align: center;
            }

            .product-specifications-vg-below .spec-content-vg {
                background: #ffffff;
                padding: 15px;
                font-size: 0.9rem;
                color: #333333;
                font-weight: 500;
                line-height: 1.4;
                min-height: 50px;
                display: flex;
                align-items: center;
            }

            .product-specifications-vg-below .spec-content-vg a {
                color: #23235b;
                text-decoration: none;
                font-weight: 600;
            }

            .product-specifications-vg-below .spec-content-vg a:hover {
                color: #1a1a4a;
                text-decoration: underline;
            }

            /* Ajustes para mobile - voltar ao layout vertical */
            @media (max-width: 768px) {
                .product-specifications-vg-below .specs-vg-grid {
                    grid-template-columns: 1fr;
                    gap: 12px;
                    margin-top: 20px;
                }

                .product-specifications-vg-below .spec-vg-item {
                    margin-bottom: 0;
                }

                .product-specifications-vg-below .spec-vg-header {
                    padding: 10px 12px;
                    font-size: 0.8rem;
                }

                .product-specifications-vg-below .spec-content-vg {
                    padding: 12px;
                    font-size: 0.85rem;
                    min-height: 45px;
                }
            }

            /* Reorganizar layout no mobile - tÃ­tulo e princÃ­pio ativo acima da imagem */
            @media (max-width: 768px) {
                .product-header-sections {
                    display: flex;
                    flex-direction: column;
                }
                
                /* Mover as barras de tÃ­tulo e princÃ­pio ativo para cima */
                .background-bars {
                    order: 1;
                    margin-bottom: 20px;
                }
                
                /* Mover a imagem para baixo */
                .product-image-overlay-container {
                    order: 2;
                    position: relative !important;
                    margin-top: 20px;
                }
                
                /* Ajustar espaÃ§amento das barras no mobile */
                .product-header-bar-yellow,
                .product-header-bar-gray {
                    padding: 15px 0;
                }
                
                /* Centralizar conteÃºdo nas barras no mobile */
                .product-header-bar-yellow .row,
                .product-header-bar-gray .row {
                    justify-content: center;
                    text-align: center;
                }
                
                /* Ajustar tamanho do tÃ­tulo no mobile */
                .product-main-title {
                    font-size: 1.5rem !important;
                    margin-bottom: 0;
                }
                
                /* Ajustar princÃ­pio ativo no mobile */
                .principio-ativo-section {
                    text-align: center;
                }
                
                .principio-label {
                    font-size: 1rem !important;
                }
                
                .principio-value {
                    font-size: 1.1rem !important;
                }
                
                .principio-underline {
                    margin: 8px auto !important;
                }
            }
            
            /* Ajustes adicionais para telas muito pequenas */
            @media (max-width: 576px) {
                .product-main-title {
                    font-size: 1.3rem !important;
                }
                
                .principio-label {
                    font-size: 0.9rem !important;
                }
                
                .principio-value {
                    font-size: 1rem !important;
                }
            }.quick-quote-form {
    margin-top: 20px;
}
h1.h1-hd {
    font-size: inherit;
    color: inherit;
    font-family: inherit;
}
.quote-form-container {
    /* background: linear-gradient(135deg, #0e1927 0%, #2e5a91 100%); */
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(15, 15, 50, 0.3);
    position: sticky;
    top: 20px;
    background: #e9ecef;
}

.quote-form-header {
    text-align: center;
    margin-bottom: 20px;
}

.quote-form-title {
    color: #1d4076;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quote-form-divider {
    width: 50px;
    height: 2px;
    background: #1e3a8a;
    margin: 0 auto 12px auto;
}

.quote-form-subtitle {
    color: #333333;
    font-size: 0.85rem;
    margin: 0;
    font-weight: 400;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-input,
.form-textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 10px 12px;
    color: #ffffff;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-textarea {
    resize: vertical;
    min-height: 60px;
}

.privacy-notice {
    margin: 12px 0;
}

.privacy-notice p {
    color: #333333;
    font-size: 0.75rem;
    line-height: 1.3;
    margin: 0;
}

.privacy-notice a {
    color: #333333;
    text-decoration: underline;
    font-weight: 500;
}

.privacy-notice a:hover {
    color: #f0f0f0;
}

.recaptcha-container {
    /* margin: 12px 0; */
    /* display: flex; */
    /* justify-content: center; */
}

.quote-submit-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 12px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.quote-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #218838 0%, #1ea085 100%);
}

.quote-submit-btn:active {
    transform: translateY(0);
}

.quote-submit-btn i {
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .quote-form-container {
        padding: 18px;
        margin-top: 25px;
    }
    
    .quote-form-title {
        font-size: 1.2rem;
    }
    
    .quote-form {
        gap: 12px;
    }
    
    .form-input,
    .form-textarea {
        padding: 9px 11px;
        font-size: 0.8rem;
    }
    
    .quote-submit-btn {
        padding: 11px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .quote-form-container {
        padding: 15px;
    }
    
    .quote-form-title {
        font-size: 1.1rem;
    }
    
    .quote-form-subtitle {
        font-size: 0.8rem;
    }
    
    .form-textarea {
        min-height: 55px;
    }
}
/* BotÃ£o WhatsApp Flutuante - CSS Modular */

/* BotÃ£o WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    outline: none;
    overflow: hidden;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #2ee86f 0%, #15a085 100%);
}

.whatsapp-float:hover::before {
    opacity: 1;
}

.whatsapp-float:active {
    transform: translateY(-2px) scale(1.05);
    transition: all 0.1s ease;
}

/* Ãcone do WhatsApp */
.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover .whatsapp-icon {
    transform: rotate(10deg) scale(1.1);
}

/* Tooltip */
.whatsapp-float::after {
    content: 'Fale conosco no WhatsApp';
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-5px);
}

/* AnimaÃ§Ã£o de pulso */
.whatsapp-float {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-float:hover {
    animation: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }

    .whatsapp-float::after {
        display: none;
    }
}

/* Efeito de ondulaÃ§Ã£o ao clicar */
.whatsapp-float .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* VariaÃ§Ãµes de posicionamento */
.whatsapp-float.left {
    right: auto;
    left: 30px;
}

.whatsapp-float.left::after {
    right: auto;
    left: 70px;
    transform: translateY(-50%);
}

.whatsapp-float.left:hover::after {
    transform: translateY(-50%) translateX(5px);
}

/* VariaÃ§Ãµes de tamanho */
.whatsapp-float.small {
    width: 50px;
    height: 50px;
    font-size: 22px;
}

.whatsapp-float.small .whatsapp-icon {
    width: 26px;
    height: 26px;
}

.whatsapp-float.large {
    width: 70px;
    height: 70px;
    font-size: 32px;
}

.whatsapp-float.large .whatsapp-icon {
    width: 38px;
    height: 38px;
}

/* Tema escuro */
.whatsapp-float.dark {
    background: linear-gradient(135deg, #1f4037 0%, #99f2c8 100%);
}

.whatsapp-float.dark:hover {
    background: linear-gradient(135deg, #2d5a47 0%, #a8f5d0 100%);
}