/* =============================================
   HBP Santos - CSS Fiel ao Site Original
   Tema: BeTheme (SPB) - WordPress
   Cores: Verde #00a34f, Amarelo #f4be11, 
          Footer #005529, Fundo #fff
   Fonte: Montserrat
============================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #00a34f;
    --green-dark: #007c3c;
    --green-footer: #005529;
    --yellow: #f4be11;
    --dark: #111111;
    --text: #111111;
    --text-light: #a8a8a8;
    --text-sub: #5f5f5f;
    --white: #ffffff;
    --bg-light: #f2f2f2;
    --bg-input: rgba(237, 246, 238, 1);
    --border: #ebebeb;
    --font: 'Montserrat', Helvetica, Arial, sans-serif;
    --shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    background-color: var(--white);
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    color: var(--green);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--green-dark);
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    color: var(--dark);
    font-weight: 400;
}

h1 { font-size: 48px; line-height: 50px; }
h2 { font-size: 50px; line-height: 60px; }
h3 { font-size: 32px; line-height: 42px; }
h4 { font-size: 22px; line-height: 32px; }
h5 { font-size: 18px; line-height: 30px; }
h6 { font-size: 16px; line-height: 28px; }

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ---- BUTTONS ---- */
.btn-green {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--green);
    color: var(--white);
    font-family: var(--font);
    font-size: 17px;
    font-weight: 600;
    line-height: 50px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-green:hover {
    background-color: var(--green-dark);
    color: var(--white);
}

/* ============================================
   HEADER / TOP BAR
============================================ */
#Header {
    position: relative;
    z-index: 100;
}

#Top_bar {
    background-color: var(--white);
    width: 100%;
    z-index: 701;
    transition: var(--transition);
}

#Top_bar.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--white);
    opacity: 0.97;
    box-shadow: var(--shadow);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

#Top_bar .top_bar_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo */
.logo {
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    height: 80px;
    line-height: 80px;
    padding: 10px 0;
}

.logo img.logo-main {
    max-height: 80px;
    width: auto;
    transition: var(--transition);
}

.is-sticky .logo a {
    height: 50px;
    line-height: 50px;
    padding: 5px 0;
}

.is-sticky .logo img.logo-main {
    max-height: 35px;
}

/* Navigation */
#menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.menu-main {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0;
}

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

.menu-main > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 40px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: 0;
    transition: var(--transition);
    white-space: nowrap;
}

.menu-main > li > a i {
    font-size: 8px;
    margin-left: 2px;
    transition: var(--transition);
}

.menu-main > li:hover > a,
.menu-main > li.active > a {
    color: var(--green);
}

.menu-main > li:hover > a i {
    transform: rotate(180deg);
}

.is-sticky .menu-main > li > a {
    padding: 15px 10px;
    line-height: 30px;
}

/* Submenu */
.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background-color: var(--bg-light);
    list-style: none;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.has-submenu:hover > .sub-menu {
    display: block;
}

.sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-sub);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.sub-menu li a:hover {
    color: var(--dark);
    background-color: rgba(0,0,0,0.03);
}

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

/* Action Button (Tour 360) */
.top_bar_right {
    flex-shrink: 0;
    margin-left: 15px;
}

.action_button {
    display: inline-block;
    padding: 8px 18px;
    background-color: var(--dark);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    border-radius: 3px;
    transition: var(--transition);
    white-space: nowrap;
}

.action_button:hover {
    background-color: var(--green);
    color: var(--white);
}

.action_button i {
    margin-left: 4px;
    font-size: 10px;
}

/* Mobile Menu Toggle */
.responsive-menu-toggle {
    display: none;
    font-size: 22px;
    color: var(--green);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

/* ============================================
   HERO SLIDER
============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    background-color: #313131;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

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

.slide-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    padding: 0 60px;
    color: var(--white);
}

.slide-content-left {
    margin-right: auto;
}

.slide-content-right {
    margin-left: auto;
}

.slide-title {
    font-size: 80px;
    line-height: 90px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.highlight-yellow {
    color: var(--yellow);
}

.slide-subtitle {
    font-size: 24px;
    line-height: 32px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 30px;
    max-width: 500px;
}

.slide-content .btn-green {
    font-size: 17px;
    line-height: 50px;
    padding: 0 35px;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.slider-prev, .slider-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.slider-prev:hover, .slider-next:hover {
    background: var(--green);
}

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

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active, .dot:hover {
    background: var(--green);
}

/* ============================================
   QUICK LINKS
============================================ */
.quick-links {
    background: var(--white);
    padding: 0;
    position: relative;
    z-index: 5;
    margin-top: -60px;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--white);
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.quick-link-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px 25px;
    text-decoration: none;
    color: var(--dark);
    border-right: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.quick-link-item:last-child {
    border-right: none;
}

.quick-link-item:hover {
    background: var(--green);
    color: var(--white);
}

.quick-link-item:hover .quick-link-icon {
    color: var(--white);
}

.quick-link-item:hover .quick-link-label,
.quick-link-item:hover .quick-link-action {
    color: var(--white);
}

.quick-link-icon {
    font-size: 36px;
    color: var(--green);
    flex-shrink: 0;
    transition: var(--transition);
}

.quick-link-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.quick-link-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3;
    color: var(--dark);
}

.quick-link-action {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
    margin-top: 4px;
    text-transform: uppercase;
}

/* ============================================
   SECTION HEADERS
============================================ */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 50px;
    line-height: 60px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SAÚDE COM MODERNIDADE
============================================ */
.section-modernidade {
    padding: 80px 0 60px;
    background: var(--white);
}

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

.modernidade-content p {
    font-size: 16px;
    line-height: 28px;
    color: var(--text);
}

.modernidade-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--bg-light);
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 48px;
    color: var(--green);
    margin-bottom: 15px;
    display: block;
}

.feature-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

/* ============================================
   ONCOLOGIA
============================================ */
.section-oncologia {
    padding: 80px 0;
    background: var(--bg-light);
}

.oncologia-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.oncologia-image {
    border-radius: 8px;
    overflow: hidden;
}

.oncologia-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.oncologia-content .section-tag {
    text-align: left;
}

.oncologia-content h2 {
    font-size: 50px;
    line-height: 55px;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: left;
}

.oncologia-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.oncologia-content p {
    font-size: 16px;
    line-height: 28px;
    color: var(--text);
    margin-bottom: 25px;
}

/* ============================================
   SERVIÇO DE LUTO
============================================ */
.section-luto {
    padding: 80px 0;
    background: var(--white);
}

.luto-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.luto-content .section-tag {
    text-align: left;
}

.luto-content h2 {
    font-size: 50px;
    line-height: 55px;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: left;
}

.luto-content p {
    font-size: 16px;
    line-height: 28px;
    color: var(--text);
    margin-bottom: 25px;
}

.luto-image {
    border-radius: 8px;
    overflow: hidden;
}

.luto-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* ============================================
   NOTÍCIAS
============================================ */
.section-noticias {
    padding: 80px 0;
    background: var(--bg-light);
}

.noticias-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.noticia-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.noticia-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.noticia-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #ddd;
}

.noticia-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.noticia-card:hover .noticia-image img {
    transform: scale(1.05);
}

.noticia-content {
    padding: 20px 25px;
}

.noticia-date {
    font-size: 13px;
    color: var(--text-light);
    display: block;
    margin-bottom: 8px;
}

.noticia-content h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.noticia-content h3 a {
    color: var(--dark);
}

.noticia-content h3 a:hover {
    color: var(--green);
}

.noticia-content p {
    font-size: 14px;
    line-height: 22px;
    color: var(--text-sub);
    margin-bottom: 15px;
}

.leia-mais {
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.leia-mais:hover {
    color: var(--green-dark);
    gap: 8px;
}

.leia-mais i {
    font-size: 12px;
    transition: var(--transition);
}

/* ============================================
   PARCEIROS
============================================ */
.section-parceiros {
    padding: 60px 0 80px;
    background: var(--white);
}

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

.parceiros-track {
    display: flex;
    gap: 20px;
    animation: scrollParceiros 30s linear infinite;
}

.parceiro-item {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.parceiro-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.parceiro-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.parceiro-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.parceiro-placeholder i {
    font-size: 36px;
    color: var(--text-light);
    transition: var(--transition);
}

.parceiro-item:hover .parceiro-placeholder {
    background: var(--green);
}

.parceiro-item:hover .parceiro-placeholder i {
    color: var(--white);
}

@keyframes scrollParceiros {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   FOOTER
============================================ */
#Footer {
    background-color: var(--green-footer);
    color: #cccccc;
}

.footer-widgets {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    line-height: 24px;
    color: #cccccc;
    margin-bottom: 5px;
}

.footer-col p strong {
    color: var(--white);
}

.footer-col a {
    color: var(--green);
}

.footer-col a:hover {
    color: var(--green-dark);
}

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

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

.footer-links li a {
    font-size: 14px;
    color: #cccccc;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #cccccc;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--yellow);
    transform: translateY(-2px);
}

/* ============================================
   FLOATING BUTTONS
============================================ */
.float-tour {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 999;
    background: var(--green);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.float-tour:hover {
    background: var(--green-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.float-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
}

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

/* ============================================
   MOBILE MENU OVERLAY
============================================ */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}

.mobile-menu-overlay.active {
    display: block;
}

#menu.mobile-open {
    display: block !important;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 999;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

#menu.mobile-open .menu-main {
    flex-direction: column;
    padding: 60px 0 30px;
}

#menu.mobile-open .menu-main > li {
    width: 100%;
    border-bottom: 1px solid var(--border);
}

#menu.mobile-open .menu-main > li > a {
    padding: 12px 25px;
    justify-content: space-between;
}

#menu.mobile-open .sub-menu {
    position: static;
    box-shadow: none;
    display: none;
    background: #f9f9f9;
}

#menu.mobile-open .has-submenu.open > .sub-menu {
    display: block;
}

#menu.mobile-open .sub-menu li a {
    padding: 10px 25px 10px 40px;
}

.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
    z-index: 1000;
    background: none;
    border: none;
    display: none;
}

/* ============================================
   PLACEHOLDER IMAGES (quando sem imagem real)
============================================ */
.slide {
    background-color: #313131;
}

.slide:nth-child(1) {
    background: linear-gradient(135deg, #264b2d 0%, #005529 50%, #00a34f 100%);
}

.slide:nth-child(2) {
    background: linear-gradient(135deg, #1a3a20 0%, #264b2d 50%, #005529 100%);
}

.slide:nth-child(3) {
    background: linear-gradient(135deg, #005529 0%, #00a34f 50%, #007c3c 100%);
}

.noticia-image {
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
}

.oncologia-image img,
.luto-image img {
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
}

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

/* Tablet Landscape */
@media only screen and (max-width: 1239px) {
    .menu-main > li > a {
        padding: 30px 8px;
        font-size: 12px;
    }

    .action_button {
        font-size: 12px;
        padding: 6px 12px;
    }

    .responsive-menu-toggle {
        display: block;
    }

    #menu {
        display: none;
    }

    .top_bar_right {
        display: none;
    }

    .hero-slider {
        height: 500px;
    }

    .slide-title {
        font-size: 60px;
        line-height: 65px;
    }

    .slide-subtitle {
        font-size: 20px;
        line-height: 28px;
    }

    .quick-links {
        margin-top: -40px;
    }

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

    .quick-link-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .section-header h2 {
        font-size: 40px;
        line-height: 48px;
    }

    .oncologia-wrapper,
    .luto-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .oncologia-content h2,
    .luto-content h2 {
        font-size: 40px;
        line-height: 45px;
    }

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

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

/* Tablet Portrait */
@media only screen and (max-width: 767px) {
    body {
        font-size: 14px;
        line-height: 24px;
    }

    .container {
        padding: 0 20px;
    }

    .hero-slider {
        height: 450px;
    }

    .slide-title {
        font-size: 42px;
        line-height: 46px;
    }

    .slide-subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .slide-content {
        padding: 0 30px;
    }

    .slide-content .btn-green {
        font-size: 14px;
        line-height: 40px;
        padding: 0 25px;
    }

    .quick-links {
        margin-top: -30px;
    }

    .quick-links-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-modernidade,
    .section-oncologia,
    .section-luto,
    .section-noticias,
    .section-parceiros {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .modernidade-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .oncologia-content h2,
    .luto-content h2 {
        font-size: 30px;
        line-height: 36px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .float-tour {
        right: 10px;
        bottom: 70px;
        font-size: 12px;
        padding: 8px 15px;
    }

    .float-whatsapp {
        right: 10px;
        bottom: 15px;
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
}

/* Mobile */
@media only screen and (max-width: 479px) {
    .hero-slider {
        height: 400px;
    }

    .slide-title {
        font-size: 32px;
        line-height: 36px;
    }

    .slide-subtitle {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }

    .slide-content {
        padding: 0 20px;
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 26px;
        line-height: 32px;
    }

    .modernidade-features {
        grid-template-columns: 1fr 1fr;
    }

    .feature-card i {
        font-size: 36px;
    }

    .oncologia-image img,
    .luto-image img {
        height: 250px;
    }

    .parceiro-item {
        width: 100px;
        height: 100px;
    }

    .parceiro-placeholder {
        width: 70px;
        height: 70px;
    }

    .parceiro-placeholder i {
        font-size: 24px;
    }
}

/* ============================================
   PRINT
============================================ */
@media print {
    #Header,
    .hero-slider,
    .quick-links,
    .float-tour,
    .float-whatsapp,
    .slider-nav,
    .slider-dots {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .section-oncologia,
    .section-noticias {
        background: #fff;
    }
}
