:root {
    --primary-color: #26a69a;
    --primary-light: #e0f7fa;
    --primary-dark: #004d40;
    --text-color: #004d40;
    --footer-bg: #26a69a;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-gray: #b2dfdb;
    --shadow-light: rgba(38,166,154,0.07);
    --shadow-medium: rgba(38,166,154,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.header {
    background-color: var(--primary-light);
    padding: 0.75rem 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-left: 0;
    width: 100%;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-link {
    flex-shrink: 0;
    z-index: 1001;
}

.logo-link img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: flex-start;
    margin-left: 40px;
}

.nav-item {
    position: relative;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    border-radius: 6px;
    font-size: 0.9rem;
}

.nav-item:hover {
    color: var(--primary-dark);
    background-color: rgba(38,166,154,0.1);
}

.nav-item.has-dropdown::after {
    content: "▼";
    font-size: 0.7em;
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
    color: var(--primary-color);
}

.nav-item.has-dropdown.active::after {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 280px;
    box-shadow: 0 8px 32px rgba(38,166,154,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s ease;
    z-index: 2000;
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    padding: 0.5rem;
    backdrop-filter: blur(10px);
}

.nav-item:hover .dropdown,
.nav-item.active .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.dropdown-item:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    transform: translateX(4px);
}

.dropdown-item.has-submenu::after {
    content: "▶";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7em;
    color: var(--primary-color);
}

.dropdown .submenu {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-15px);
    transition: all 0.3s ease;
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 200px;
    z-index: 3000;
    background: var(--white);
    box-shadow: 0 8px 32px rgba(38,166,154,0.2);
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    padding: 0.5rem;
    backdrop-filter: blur(10px);
}

.dropdown-item.has-submenu:hover > .submenu,
.dropdown-item.has-submenu.active > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 4000;
}

.dropdown > .submenu {
    left: 0;
    top: 100%;
    min-width: 220px;
    transform: translateY(-15px);
}

.header-search {
    display: flex;
    align-items: center;
    border-radius: 19px;
    box-shadow: none;
    padding: 0;
    max-width: 220px;
    width: auto;
    position: relative;
    overflow: visible;
    background: transparent;
    transition: background 0.2s;
}

.header-search.expanded {
    background: #fff;
}

.header-search input[type="text"] {
    height: 38px;
    border: none;
    background: transparent;
    padding: 0 14px;
    font-size: 1rem;
    outline: none;
    color: #222;
    width: 0;
    min-width: 0;
    opacity: 0;
    pointer-events: none;
    border-radius: 19px 0 0 19px;
    position: relative;
    z-index: 1;
}

/* width, opacity e pointer-events serão controlados por GSAP */

.header-search button {
    background: #26A699;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 0;
    box-shadow: none;
    transition: background 0.18s, border-radius 0.3s;
    outline: none;
    padding: 0;
    z-index: 2;
    position: relative;
    left: 0;
}

.header-search.expanded button {
    border-radius: 0 19px 19px 0;
    background: #26A699;
    width: 44px;
    height: 38px;
    margin-left: 0;
}

.header-search button:hover, .header-search button:focus {
    background: #1e857a;
}

.header-search button svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

.hero-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 16px;
    box-shadow: 0 8px 32px var(--shadow-medium);
    margin-bottom: 2rem;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
}

.hero-banner::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" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-banner-text {
    position: relative;
    z-index: 1;
}

.hero-banner-text h1 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-banner-text p {
    color: var(--primary-light);
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.9;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cards-container .card:first-child {
    border-width: 3px;
    border-style: solid;
    border-color: var(--border-gray);
}

.card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow-light);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 3px solid var(--border-gray);
    position: relative;
}

.card:hover {
    box-shadow: 0 12px 40px var(--shadow-medium);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: var(--primary-light);
    transition: transform 0.3s ease;
}

.card:hover .card-img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h2 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.card-content p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    opacity: 0.8;
    line-height: 1.6;
    flex-grow: 1;
}

.card-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.read-more-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
    text-decoration: none;
}

.read-more-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: none;
    text-decoration: none;
}

footer {
    background-color: var(--footer-bg);
    color: var(--white);
    padding: 2.2rem 0 0 0;
    margin-top: 3rem;
    width: 100%;
    margin: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding: 0 1.2rem 0 1.2rem;
}

.footer-details {
    padding: 0.9rem 0.9rem;
    margin: 0;
}

.footer-section {
    padding: 0.9rem 0.9rem;
    margin: 0;
}

.footer-section h2 {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.2s ease;
    opacity: 0.9;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--primary-light);
    opacity: 1;
    transform: translateX(4px);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background-color: rgba(255,255,255,0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.tag:hover {
    background-color: #198976;
    color: var(--white);
    transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.nav-item:focus,
.dropdown-item:focus,
.read-more-btn:focus,
.header-search input:focus,
.header-search button:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

@media (hover: none) and (pointer: coarse) {
    .nav-item,
    .dropdown-item,
    .read-more-btn,
    .mobile-menu-toggle {
        min-height: 44px;
        min-width: 44px;
    }
}

.card-img {
    background: linear-gradient(90deg, var(--primary-light) 25%, rgba(255,255,255,0.5) 50%, var(--primary-light) 75%);
    background-size: 200% 100%;
}

@media (display-mode: standalone) {
    .header {
        padding-top: calc(0.75rem + env(safe-area-inset-top));
    }
}

.icon-link-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    gap: 0.5em;
}

.icon-link-btn i {
    margin-left: 0.5em;
    margin-right: 0;
}

.icon-link-btn .fa-link {
    color: var(--primary-color);
    opacity: 1;
    transition: color 0.2s;
}
.icon-link-btn:hover .fa-link {
    color: var(--primary-dark);
}

.footer-copyright {
    width: 100%;
    background: #102b26;
    color: #e0f7f4;
    text-align: center;
    padding: 1rem 0 0.7rem 0;
    font-size: 0.92rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    opacity: 0.95;
    letter-spacing: 0.01em;
    box-sizing: border-box;
    margin-top: 2.5rem;
}

@media (min-width: 1200px) {
  .content {
    max-width: 1400px;
    padding: 2.5rem 2rem;
  }
  .hero-banner {
    min-height: 320px;
    padding: 3.5rem 2rem;
    font-size: 1.2rem;
  }
  .cards-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
  .card-content {
    padding: 2.2rem 2rem;
  }
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding: 0 2.5rem;
  }
  .footer-section h2 {
    font-size: 1.25rem;
  }
  .footer-section a, .tag {
    font-size: 1.05rem;
  }
}

@media (min-width: 1600px) {
  .content {
    max-width: 1800px;
    padding: 3.5rem 4rem;
  }
  .hero-banner {
    min-height: 400px;
    font-size: 1.3rem;
  }
  .cards-container {
    gap: 3.5rem;
  }
  .footer-content {
    gap: 4rem;
    padding: 0 4rem;
  }
}

/* ===== MENU HAMBÚRGUER ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    display: block;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== TOUCH E SCROLL MOBILE ===== */
html, body {
    touch-action: manipulation;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    user-select: auto;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
}

/* Permitir scroll suave em mobile */
@media (max-width: 768px) {
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    body {
        touch-action: manipulation;
        overflow-x: hidden;
        overflow-y: auto;
    }
    
    * {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
    }
    
    /* Permitir scroll em elementos específicos */
    .nav-menu, .dropdown, .submenu {
        -webkit-overflow-scrolling: touch;
        overflow-y: auto;
    }
    
    /* Melhorar experiência de touch */
    a, button, .clickable {
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(38,166,154,0.2);
        cursor: pointer;
    }
    
    /* Permitir scroll em containers */
    .cards-container, .footer-content, .hero-banner {
        -webkit-overflow-scrolling: touch;
        overflow-y: auto;
    }
    
    /* Remover zoom em input em iOS */
    input, textarea, select {
        font-size: 16px;
        -webkit-appearance: none;
        appearance: none;
        border-radius: 0;
    }
}

/* ===== RESPONSIVIDADE COMPLETA ===== */

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
  .nav {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .nav-menu {
    gap: 0.5rem;
  }
  
  .nav-item {
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
  }
  
  .cards-container {
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .card {
    max-width: 100%;
  }
  
  .hero-banner {
    padding: 2rem 1rem;
  }
  
  .hero-banner-text h1 {
    font-size: 2.2rem;
  }
}

/* Tablets pequenos (600px - 768px) */
@media (max-width: 768px) {
  .header {
    padding: 1rem;
    position: relative;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
  }
  
  .logo-link {
    flex-shrink: 0;
    max-width: 150px;
  }
  
  .logo-link img {
    max-width: 100%;
    height: auto;
  }
  
  .header-search {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  
  .search-toggle {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(38,166,154,0.3);
  }
  
  .search-toggle:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(38,166,154,0.4);
  }
  
  .search-toggle svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
  }
  
  .mobile-menu-toggle {
    display: none !important;
  }
  
  
  .nav-menu {
    display: none !important;
  }
  
  
  
  .hero-banner {
    padding: 1.5rem 1rem;
    margin: 1rem;
  }
  
  .hero-banner-text h1 {
    font-size: 1.8rem;
  }
  
  .hero-banner-text p {
    font-size: 1rem;
  }
  
  .cards-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .card {
    max-width: 100%;
  }
  
  .card-content {
    padding: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .header-search {
    max-width: 100%;
    margin-top: 1rem;
  }
}

/* Menu mobile específico */
@media (max-width: 768px) {
  .nav-item.has-dropdown .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    min-width: 100%;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    border: 1px solid var(--border-gray);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
  }
  
  .nav-item.has-dropdown.active .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-item.has-dropdown .dropdown-item {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border-gray);
    display: block;
    width: 100%;
  }
  
  .nav-item.has-dropdown .dropdown-item:last-child {
    border-bottom: none;
  }
  
  .nav-item.has-dropdown .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(38,166,154,0.1);
    margin: 0.5rem 0 0 1rem;
    border-radius: 6px;
    padding: 0.5rem;
  }
  
  .nav-item.has-dropdown .dropdown-item.has-submenu::after {
    content: "▶";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7em;
    color: var(--primary-color);
  }
}

/* Telemóveis grandes (480px - 600px) */
@media (max-width: 600px) {
  .header {
    padding: 0.5rem;
  }
  
  .logo-link img {
    height: 40px;
  }
  
  .nav {
    padding: 0;
  }
  
  .nav-menu {
    gap: 0.3rem;
  }
  
  .nav-item {
    padding: 0.6rem;
    font-size: 0.85rem;
  }
  
  .hero-banner {
    padding: 1rem;
    margin: 0.5rem;
  }
  
  .hero-banner-text h1 {
    font-size: 1.5rem;
  }
  
  .hero-banner-text p {
    font-size: 0.9rem;
  }
  
  .cards-container {
    padding: 0 0.5rem;
    gap: 1rem;
  }
  
  .card-content {
    padding: 1rem;
  }
  
  .card-content h2 {
    font-size: 1.1rem;
  }
  
  .card-content p {
    font-size: 0.9rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .footer-section {
    padding: 0.5rem;
  }
  
  .footer-section h2 {
    font-size: 1rem;
  }
  
  .footer-section a, .tag {
    font-size: 0.85rem;
  }
  
  .header-search {
    max-width: 100%;
    margin-top: 0.5rem;
  }
  
  .header-search input[type="text"] {
    font-size: 0.9rem;
  }
}

/* Telemóveis pequenos (até 480px) */
@media (max-width: 480px) {
  .header {
    padding: 0.3rem;
  }
  
  .logo-link img {
    height: 35px;
  }
  
  .nav-item {
    padding: 0.5rem;
    font-size: 0.8rem;
  }
  
  .hero-banner {
    padding: 0.8rem;
    margin: 0.3rem;
  }
  
  .hero-banner-text h1 {
    font-size: 1.3rem;
  }
  
  .hero-banner-text p {
    font-size: 0.85rem;
  }
  
  .cards-container {
    padding: 0 0.3rem;
    gap: 0.8rem;
  }
  
  .card-content {
    padding: 0.8rem;
  }
  
  .card-content h2 {
    font-size: 1rem;
  }
  
  .card-content p {
    font-size: 0.85rem;
  }
  
  .read-more-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
  
  .footer-content {
    padding: 0 0.3rem;
    gap: 1rem;
  }
  
  .footer-section {
    padding: 0.3rem;
  }
  
  .footer-section h2 {
    font-size: 0.95rem;
  }
  
  .footer-section a, .tag {
    font-size: 0.8rem;
  }
  
  .tag {
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
  }
  
  .footer-copyright {
    font-size: 0.8rem;
    padding: 0.8rem 0 0.6rem 0;
  }
}

/* Telemóveis muito pequenos (até 360px) */
@media (max-width: 360px) {
  .header {
    padding: 0.75rem;
    min-height: 60px;
  }
  
  .nav {
    gap: 0.5rem;
  }
  
  .logo-link {
    max-width: 120px;
  }
  
  .logo-link img {
    max-width: 100%;
    height: auto;
  }
  
  .search-toggle {
    width: 36px;
    height: 36px;
  }
  
  .search-toggle svg {
    width: 16px;
    height: 16px;
  }
  
  
  .hero-banner-text h1 {
    font-size: 1.2rem;
  }
  
  .hero-banner-text p {
    font-size: 0.8rem;
  }
  
  .card-content h2 {
    font-size: 0.95rem;
  }
  
  .card-content p {
    font-size: 0.8rem;
  }
  
  .nav-item {
    font-size: 0.75rem;
    padding: 0.4rem;
  }
  
  .footer-section h2 {
    font-size: 0.9rem;
  }
  
  .footer-section a, .tag {
    font-size: 0.75rem;
  }
}

/* Orientação landscape em telemóveis */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-banner {
    padding: 1rem;
  }
  
  .hero-banner-text h1 {
    font-size: 1.5rem;
  }
  
  .nav {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .nav-menu {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-item {
    width: auto;
    flex: 1;
    min-width: 0;
  }
}

/* Melhorias de acessibilidade para touch */
@media (hover: none) and (pointer: coarse) {
  .nav-item, .dropdown-item, .read-more-btn, .cookie-button {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .dropdown-item {
    padding: 0.8rem 1rem;
  }
  
  .read-more-btn {
    padding: 0.8rem 1.5rem;
  }
}

/* Otimizações para dispositivos de alta densidade */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo-link img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}