/* =============================================================================
   VIVEIRO VILLA GARDEN - ESTILOS PRINCIPAIS
   Desenvolvido por: Jay C Designer
   Website: jaycdesigner.com.br
   Copyright © 2025 Jay C Designer
   
   RESET & BASE STYLES
============================================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #000000;
    overflow-x: hidden;
    width: 100%;
}

/* Previne scrollbars horizontais indesejadas globalmente */
* {
    max-width: 100%;
    box-sizing: border-box;
}

/* Elementos específicos que não devem ter overflow */
.nav-list,
.nav-link,
.species-content,
.species-features,
.contact-actions,
.btn {
    overflow: visible !important;
}

/* Previne overflow horizontal apenas quando necessário */
.container,
.navbar,
.hero,
.services,
.about,
.species,
.contact,
.footer {
    overflow-x: hidden;
}

/* Previne scrollbars indesejadas em elementos específicos */
.nav-list,
.nav-link,
.species-content,
.species-features,
.contact-actions {
    overflow: visible;
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* =============================================================================
   VARIABLES
============================================================================= */

:root {
    --primary-color: #8cb73f;
    --secondary-color: #36520d;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f8f9fa;
    --gray: #6c757d;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --container-max-width: 1200px;
    
    /* Variáveis para controle do header */
    --header-height: 80px;
    --header-padding: 10px;
    --logo-height: 60px;
    --safe-padding: 20px;
}

/* =============================================================================
   UTILITY CLASSES
============================================================================= */

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Classe utilitária para garantir que o conteúdo fique sempre abaixo do header */
.safe-top-spacing {
    padding-top: calc(var(--header-height) + var(--safe-padding)) !important;
}

/* Garante que todas as seções principais tenham espaçamento seguro */
section:not(.hero) {
    position: relative;
    z-index: 1;
}

/* Proteção automática para âncoras/links de navegação */
section[id]:not(.hero)::before {
    content: "";
    display: block;
    height: calc(var(--header-height) + var(--safe-padding));
    margin-top: calc(-1 * (var(--header-height) + var(--safe-padding)));
    visibility: hidden;
    pointer-events: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    font-weight: 400;
}

/* =============================================================================
   LOADER
============================================================================= */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
    overflow: hidden;
}

.loader-content {
    text-align: center;
    padding: 20px;
}

.loader-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    overflow: visible;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(140, 183, 63, 0.5));
    }
    50% { 
        transform: scale(1.15);
        filter: drop-shadow(0 0 20px rgba(140, 183, 63, 0.8));
    }
}

/* =============================================================================
   HEADER
============================================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
    overflow: visible;
}

.navbar {
    padding: var(--header-padding) 0;
    min-height: var(--header-height);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    gap: 80px !important;
}

.nav-brand {
    height: var(--logo-height);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1002;
    margin-right: 60px !important;
}

/* Estilos para links da logo */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.nav-menu-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-menu-logo-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.logo-desktop {
    height: var(--logo-height);
    display: block;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.logo-mobile {
    height: 50px;
    display: none;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

/* Garantir visibilidade das logos */
@media (min-width: 769px) {
    .logo-desktop {
        display: block !important;
    }
    .logo-mobile {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .logo-desktop {
        display: none !important;
    }
    .logo-mobile {
        display: block !important;
    }
}

.nav-list {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 16px;
    white-space: nowrap;
    overflow: visible;
    max-width: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-toggle {
    /* Estilos básicos - o resto será definido no modern-mobile-menu.css */
    display: none;
    cursor: pointer;
    z-index: 1003;
    position: relative;
}

/* =============================================================================
   HERO SECTION
============================================================================= */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="leaf" patternUnits="userSpaceOnUse" width="100" height="100"><path d="M20,80 Q50,20 80,80 Q50,60 20,80" fill="%238cb73f" fill-opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23leaf)"/></svg>');
    z-index: -1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: calc(var(--header-height) + var(--safe-padding) * 3);
    position: relative;
    z-index: 10;
}

/* Desktop: manter layout 2 colunas apenas para desktop */
@media (min-width: 901px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--secondary-color);
    position: relative;
    z-index: 10;
}

.hero-title-bold {
    font-weight: 700;
    color: var(--secondary-color);
}

.hero-title-light {
    font-weight: 400;
    color: var(--primary-color);
    font-size: 0.9em;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
    position: relative;
    padding: 20px;
}

.floating-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(140, 183, 63, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--gray);
    font-size: 14px;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    display: block;
    margin-top: 8px;
    font-size: 16px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* =============================================================================
   ABOUT SECTION
============================================================================= */

.about {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--gray-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.about-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.about-info p {
    color: var(--gray);
    line-height: 1.6;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    color: var(--white);
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.5s ease;
}

.stat-item:hover {
    transform: perspective(1000px) rotateY(10deg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================================================
   SERVICES SECTION
============================================================================= */

.services {
    padding: 100px 0;
    background: var(--gray-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    padding: 15px;
    background: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scale(1.1);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(69deg) brightness(104%) contrast(97%);
    transition: var(--transition);
}

.service-card:hover .service-icon img {
    filter: brightness(0) saturate(100%) invert(100%);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card ul {
    text-align: left;
}

.service-card li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--gray);
    font-size: 14px;
}

.service-card li i {
    color: var(--primary-color);
    font-size: 12px;
}

/* =============================================================================
   SPECIES SECTION
============================================================================= */

.species {
    padding: 100px 0;
    background: var(--white);
}

.species-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.species-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.species-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.species-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.species-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.species-card:hover .species-image img {
    transform: scale(1.1);
}

.species-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.species-card:hover .species-overlay {
    opacity: 0.9;
}

.species-overlay i {
    font-size: 3rem;
    color: var(--white);
    transform: scale(0);
    transition: transform 0.3s ease 0.1s;
}

.species-card:hover .species-overlay i {
    transform: scale(1);
}

.species-content {
    padding: 30px;
    overflow: visible;
}

.species-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.species-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.species-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    overflow: visible;
}

.species-features span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: var(--gray-light);
    border-radius: 20px;
    font-size: 12px;
    color: var(--secondary-color);
    font-weight: 500;
}

.species-features i {
    color: var(--primary-color);
}

.species-info {
    margin-top: 40px;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    color: var(--white);
    align-items: center;
}

.info-card i {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-content p {
    font-weight: 400;
    opacity: 0.9;
}

/* Species Responsive */
@media (max-width: 768px) {
    .species {
        padding: 60px 0;
    }
    
    .species-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .species-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .species-image {
        height: 200px;
    }
    
    .species-content {
        padding: 25px;
    }
    
    .species-features {
        gap: 8px;
    }
    
    .species-features span {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .info-card i {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .species {
        padding: 40px 0;
    }
    
    .species-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .species-image {
        height: 180px;
    }
    
    .species-content {
        padding: 20px;
    }
    
    .species-content h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .species-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-content h4 {
        font-size: 1.1rem;
    }
    
    .info-content p {
        font-size: 14px;
    }
}

/* =============================================================================
   CATALOG SECTION
============================================================================= */

.catalog {
    padding: 100px 0;
    background: #f8f9fa;
}

.catalog-controls {
    margin: 60px 0 40px 0;
}

.search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto 40px auto;
}

.search-box input {
    width: 100%;
    padding: 20px 60px 20px 25px;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 1.1rem;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.search-box input:focus {
    outline: none;
    border-color: #8cb73f;
    box-shadow: 0 0 0 4px rgba(140, 183, 63, 0.1);
}

.search-box i {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #8cb73f;
    font-size: 1.2rem;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #fff;
    border: 2px solid #e9ecef;
    color: #666;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover,
.filter-btn.active {
    background: #8cb73f;
    border-color: #8cb73f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(140, 183, 63, 0.3);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
    max-width: 100%;
    overflow: visible;
    isolation: isolate;
    z-index: 1;
}

.species-item {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(140, 183, 63, 0.2);
    position: relative;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    will-change: transform, box-shadow;
    isolation: isolate;
}

.species-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(140, 183, 63, 0.3);
    border-color: rgba(140, 183, 63, 0.5);
}

.species-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #8cb73f, #6a9830);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 10px 25px rgba(140, 183, 63, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.species-icon i {
    font-size: 2rem;
    color: #fff;
    transition: transform 0.3s ease;
}

.species-item:hover .species-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 35px rgba(140, 183, 63, 0.4);
}

.species-item:hover .species-icon i {
    transform: scale(1.1);
}

.species-item h3 {
    font-size: 1.5rem;
    color: #36520d;
    margin-bottom: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.species-item:hover h3 {
    color: #8cb73f;
    transform: translateY(-2px);
}

.species-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.species-item:hover p {
    color: #555;
}

.species-badge {
    display: inline-block;
    background: linear-gradient(45deg, #8cb73f, #6a9830);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    position: absolute;
    top: 20px;
    right: 20px;
    transition: all 0.3s ease;
}

.species-item:hover .species-badge {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(140, 183, 63, 0.4);
}

.catalog-load-more {
    text-align: center;
    margin: 60px 0;
}

.catalog-load-more .btn {
    margin-bottom: 20px;
}

.catalog-count {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.catalog-full-list {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    margin: 60px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
}

.species-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 100%;
    overflow: visible;
}

.species-column h4 {
    color: #36520d;
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid #8cb73f;
}

.species-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.species-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #666;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    padding-left: 20px;
}

.species-list li:hover {
    color: #8cb73f;
    transform: translateX(5px);
}

.species-list li::before {
    content: '•';
    color: #8cb73f;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.catalog-contact {
    margin-top: 80px;
}

.contact-card {
    background: linear-gradient(135deg, #8cb73f, #6a9830);
    color: #fff;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(140, 183, 63, 0.3);
}

.contact-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.contact-card p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    overflow: visible;
}

.contact-actions .btn {
    min-width: 160px;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-actions .btn-primary {
    background: #fff;
    color: #8cb73f;
    border: 2px solid #fff;
    font-weight: 600;
}

.contact-actions .btn-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.contact-actions .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-weight: 600;
}

.contact-actions .btn-secondary:hover {
    background: #fff;
    color: #8cb73f;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* =============================================================================
   CONTACT SECTION
============================================================================= */

.contact {
    padding: 100px 0;
    background: var(--gray-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.contact-details p {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--black);
    font-weight: 500;
}

.contact-details a {
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--secondary-color);
}

.contact-details span {
    font-size: 14px;
    color: var(--gray);
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white) !important;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.location-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(140, 183, 63, 0.3);
    color: var(--white) !important;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: var(--transition);
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(140, 183, 63, 0.1);
}

.form-group i {
    position: absolute;
    left: 18px;
    top: 18px;
    color: var(--gray);
    transition: var(--transition);
}

.form-group input:focus + i,
.form-group select:focus + i,
.form-group textarea:focus + i {
    color: var(--primary-color);
}

/* =============================================================================
   FOOTER
============================================================================= */

.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-credits {
    text-align: center;
}

.footer-credits p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 0;
}

.footer-credits a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-credits a:hover {
    color: var(--white);
    transform: translateY(-1px);
}

.footer-credits i {
    font-size: 12px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 50px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-logo {
        height: 50px;
        margin-bottom: 15px;
    }
    
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding-top: 15px;
    }
    
    .footer-social {
        justify-content: center;
        order: -1;
    }
    
    .footer-credits {
        order: 1;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 10px;
    }
    
    .footer-content {
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .footer-brand p {
        font-size: 14px;
    }
    
    .footer-links ul {
        gap: 8px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    .footer-contact-item {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
    
    .footer-credits p {
        font-size: 11px;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* =============================================================================
   FLOATING ELEMENTS
============================================================================= */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
    /* Remove a animação constante para evitar conflitos */
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20ba5a;
    /* Aplica a animação apenas no hover */
    animation: pulse-whatsapp 0.6s ease;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* =============================================================================
   RESPONSIVE DESIGN
============================================================================= */

/* Media query para telas muito grandes */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
        padding: 0 30px;
    }
    
    .navbar .container {
        max-width: 1400px;
    }
    
    .nav-list {
        gap: 35px;
    }
    
    .nav-link {
        font-size: 17px;
        padding: 12px 18px;
    }
    
    .logo-desktop {
        height: 70px;
    }
}

/* Media query para telas grandes */
@media (min-width: 1200px) and (max-width: 1439px) {
    .container {
        max-width: 1200px;
        padding: 0 25px;
    }
    
    .nav-list {
        gap: 30px;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 11px 16px;
    }
}

@media (max-width: 1024px) {
    :root {
        --header-height: 75px;
        --safe-padding: 18px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: calc(var(--header-height) + var(--safe-padding) * 2.5);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-title-light {
        font-size: 0.9em;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .catalog-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .species-columns {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 900px) and (min-width: 769px) {
    :root {
        --header-height: 70px;
        --safe-padding: 16px;
    }
    
    .hero .container {
        padding-top: calc(var(--header-height) + var(--safe-padding) * 2.5);
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 90px;
        --logo-height: 60px;
        --safe-padding: 15px;
    }
    
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .logo-desktop {
        display: none;
    }
    
    .logo-mobile {
        display: block;
        height: var(--logo-height);
        filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    }

    /* 
    =============================================================================
    MENU MOBILE ANTIGO - COMENTADO PARA EVITAR CONFLITOS
    O novo menu está em modern-mobile-menu.css
    =============================================================================
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--white);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        z-index: 999;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    Mobile Menu Overlay
    .nav-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(3px);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    Menu Header
    .nav-menu-header {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 25px 30px;
        background: linear-gradient(135deg, var(--primary-color), #a0c952);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    Esconde qualquer logo que possa aparecer no header do menu
    .nav-menu-header .nav-menu-logo,
    .nav-menu-header .logo-desktop,
    .nav-menu-header .logo-mobile {
        display: none !important;
    }
    
    .nav-menu-close {
        background: none;
        border: none;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.15);
        color: white;
        font-size: 16px;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu-close:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: scale(1.05);
    }
    */
    
    /* 
    =============================================================================
    RESTO DO MENU MOBILE ANTIGO - COMENTADO PARA EVITAR CONFLITOS
    O novo menu está em modern-mobile-menu.css
    =============================================================================
    
    .logo-mobile {
        display: block;
        height: var(--logo-height);
        filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    }
    
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        height: auto;
        gap: 0;
        padding: 25px 0;
        flex: 1;
        position: relative;
        z-index: 1;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-link {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 20px 30px;
        font-size: 1rem;
        font-weight: 500;
        color: var(--secondary-color);
        border-bottom: 1px solid rgba(240, 240, 240, 0.7);
        transition: all 0.3s ease;
        position: relative;
        text-decoration: none;
    }
    
    .nav-link i {
        font-size: 1.1rem;
        min-width: 22px;
        color: var(--primary-color);
        opacity: 0.8;
        transition: all 0.3s ease;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 3px;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-color), #a0c952);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(140, 183, 63, 0.05);
        color: var(--primary-color);
        padding-left: 40px;
    }
    
    .nav-link:hover i,
    .nav-link.active i {
        color: var(--primary-color);
        opacity: 1;
        transform: scale(1.1);
    }
    
    .nav-link:hover::before,
    .nav-link.active::before {
        transform: scaleY(1);
    }
    
    .nav-link::after {
        display: none;
    }
    
    Menu Footer
    .nav-menu-footer {
        padding: 30px;
        background: linear-gradient(135deg, #f8f9fa, #ffffff);
        border-top: 1px solid rgba(140, 183, 63, 0.1);
        position: relative;
        z-index: 1;
    }
    
    .nav-menu-social {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .social-btn {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 14px 20px;
        background: rgba(255, 255, 255, 0.9);
        color: var(--secondary-color);
        text-decoration: none;
        border-radius: 12px;
        font-weight: 500;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        border: 1px solid rgba(140, 183, 63, 0.1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .social-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border-color: rgba(140, 183, 63, 0.3);
    }
    
    .social-btn:first-child {
        border-left: 4px solid #25D366;
    }
    
    .social-btn:first-child:hover {
        background: rgba(37, 211, 102, 0.05);
        color: #25D366;
    }
    
    .social-btn:first-child i {
        color: #25D366;
    }
    
    .social-btn:nth-child(2) {
        border-left: 4px solid #E4405F;
    }
    
    .social-btn:nth-child(2):hover {
        background: rgba(228, 64, 95, 0.05);
        color: #E4405F;
    }
    
    .social-btn:nth-child(2) i {
        color: #E4405F;
    }
    
    .social-btn:last-child {
        border-left: 4px solid #1877F2;
    }
    
    .social-btn:last-child:hover {
        background: rgba(24, 119, 242, 0.05);
        color: #1877F2;
    }
    
    .social-btn:last-child i {
        color: #1877F2;
    }
    
    .social-btn i {
        font-size: 1.2rem;
        min-width: 22px;
    }
    
    .nav-menu-logo-footer {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
        margin: 20px 0;
        background: linear-gradient(135deg, var(--primary-color), #a0c952);
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(140, 183, 63, 0.2);
    }
    
    .nav-menu-logo-footer .nav-menu-logo {
        height: 55px;
        filter: brightness(0) invert(1);
    }
    
    .btn-contact {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 16px 25px;
        font-weight: 600;
        font-size: 1rem;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--primary-color), #a0c952);
        border: none;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(140, 183, 63, 0.3);
    }
    
    .btn-contact:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(140, 183, 63, 0.4);
        background: linear-gradient(135deg, #a0c952, var(--primary-color));
        color: white;
    }
    
    .btn-contact i {
        font-size: 1.1rem;
    }
    */
    
    /* Apenas mantemos estes estilos que ainda são necessários */
    .nav-brand {
        height: calc(var(--logo-height) + 10px);
        z-index: 1002;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero .container {
        padding-top: calc(var(--header-height) + var(--safe-padding) * 2);
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title-light {
        font-size: 0.9em;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .species-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .stat-item {
        flex: 1;
        margin: 0 5px;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .container {
        padding: 0 10px;
        max-width: calc(100vw - 20px);
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        bottom: 20px;
        left: 20px;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        padding: 15px 20px;
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }
    
    .species-item {
        padding: 25px;
    }
    
    .species-badge {
        position: static;
        margin-top: 15px;
    }
    
    .catalog-full-list {
        padding: 25px;
        margin: 40px 0;
    }
    
    .species-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-card {
        padding: 35px 25px;
    }
    
    .contact-card h3 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-card p {
        font-size: 1.1rem;
    }
    
    .contact-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 80px;
        --logo-height: 50px;
        --safe-padding: 12px;
    }
    
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    .hero .container {
        padding-top: calc(var(--header-height) + var(--safe-padding) * 2);
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title-light {
        font-size: 0.9em;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 260px;
    }
    
    .floating-img {
        max-width: 280px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        margin: 0;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-credits {
        order: 2;
    }
    
    .footer-social {
        order: 3;
    }
    
    .search-box input {
        padding: 16px 45px 16px 18px;
    }
    
    .species-item {
        padding: 20px;
    }
    
    .species-icon {
        width: 70px;
        height: 70px;
    }
    
    .species-icon i {
        font-size: 1.8rem;
    }
    
    .catalog-full-list {
        padding: 20px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-card h3 {
        font-size: 1.6rem;
    }
    
    .contact-card p {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 8px;
        max-width: calc(100vw - 16px);
    }
    
    /* Garante que todos os elementos respeitem a largura da tela */
    * {
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    /* Controle específico para elementos que podem causar overflow */
    .nav-menu,
    .hero,
    .services,
    .about,
    .species,
    .contact,
    .footer {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
}

/* =============================================================================
   DARK MODE SUPPORT
============================================================================= */

@media (prefers-color-scheme: dark) {
    :root {
        --white: #1a1a1a;
        --black: #ffffff;
        --gray-light: #2d2d2d;
        --gray: #b0b0b0;
    }
}

/* =============================================================================
   PRINT STYLES
============================================================================= */

@media print {
    .header,
    .whatsapp-float,
    .back-to-top,
    .loader {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero,
    .about,
    .services,
    .species,
    .contact {
        padding: 20pt 0;
        page-break-inside: avoid;
    }
}

/* =============================================================================
   PARTNERS SECTION
============================================================================= */

.partners {
    padding: 80px 0;
    background: var(--gray-light);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.partner-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    width: 100%;
    max-width: 220px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.partner-logo {
    max-width: 100%;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: var(--transition);
}

.partner-item:hover .partner-logo {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Partners Responsive */
@media (max-width: 768px) {
    .partners {
        padding: 60px 0;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 20px;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .partner-item {
        padding: 20px;
        height: 120px;
        max-width: 100%;
        width: 100%;
        overflow-x: hidden;
    }
    
    .partner-logo {
        max-height: 70px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .partner-item {
        padding: 15px;
        height: 100px;
        max-width: 100%;
        width: 100%;
        overflow-x: hidden;
        min-width: auto;
    }
    
    .partner-logo {
        max-height: 60px;
    }
}

/* =============================================================================
   ACCESSIBILITY
============================================================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* =============================================================================
   PERFORMANCE OPTIMIZATIONS
============================================================================= */

.hero-bg,
.species-image img,
.service-icon img {
    will-change: transform;
}

.btn,
.service-card,
.species-card,
.contact-item,
.about-item {
    will-change: transform;
}

/* =============================================================================
   CUSTOM SCROLLBAR
============================================================================= */

/* Scrollbar personalizada apenas para scroll vertical */
::-webkit-scrollbar {
    width: 8px;
    height: 0px; /* Remove scrollbar horizontal */
}

::-webkit-scrollbar-track {
    background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Regras específicas para prevenir scrollbars horizontais */
.nav-list::-webkit-scrollbar,
.nav-link::-webkit-scrollbar,
.species-content::-webkit-scrollbar,
.species-features::-webkit-scrollbar,
.contact-actions::-webkit-scrollbar,
.catalog-grid::-webkit-scrollbar,
.species-columns::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    display: none;
}

/* Firefox */
.nav-list,
.nav-link,
.species-content,
.species-features,
.contact-actions,
.catalog-grid,
.species-columns {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
