/* Reset e Configurações Gerais */
:root {
    --primary-green: #41523f;
    --dark-green: #2a3529;
    --light-green: #6b7d68;
    --accent-green: #5a6d57;
    --background-dark: #0f120e;
    --background-light: #1a1d19;
    --text-light: #f0f4ef;
    --text-muted: #b8c2b6;
    --white: #ffffff;
    --black: #000000;
    --shadow: rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--background-dark);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia Padrão para Títulos */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-light);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-light);
}

h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
}

h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
}

h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* Destaque com a cor primary-green */
.highlight-green {
    color: var(--primary-green) !important;
    font-weight: 700;
}

.highlight {
    color: var(--light-green);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--light-green);
    opacity: 0.3;
}

/* Seções - Títulos Padronizados com palavras destacadas */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-transform: none;
    letter-spacing: -0.02em;
}

.section-title .highlight-green {
    color: var(--primary-green);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Cards - Títulos Padronizados */
.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
    transition: color 0.3s ease;
}

.card-title .highlight-green {
    color: var(--primary-green);
}

.card:hover .card-title {
    color: var(--light-green);
}

.card:hover .card-title .highlight-green {
    color: var(--primary-green);
}

/* Projetos - Títulos Padronizados */
.project-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
    transition: color 0.3s ease;
}

.project-title .highlight-green {
    color: var(--primary-green);
}

.project-card:hover .project-title {
    color: var(--light-green);
}

.project-card:hover .project-title .highlight-green {
    color: var(--primary-green);
}

/* Expertise - Títulos Padronizados */
.expertise-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
    transition: all 0.3s ease;
}

.expertise-item h4 .highlight-green {
    color: var(--primary-green);
}

.expertise-item:hover h4 {
    color: var(--light-green);
    text-shadow: 0 0 10px rgba(107, 125, 104, 0.3);
}

.expertise-item:hover h4 .highlight-green {
    color: var(--primary-green);
}

/* Profile Badge - Título Padronizado */
.profile-badge p {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.profile-badge p .highlight-green {
    color: var(--primary-green);
}

/* Footer - Títulos Padronizados */
.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-title .highlight-green {
    color: var(--primary-green);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    border-radius: 2px;
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    animation: fadeInUp 1s ease;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-title .highlight-green {
    color: var(--primary-green);
}

.hero-title .highlight {
    color: var(--light-green);
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--light-green);
    opacity: 0.3;
}

/* Warning Box Title */
.warning-content h3 {
    color: var(--light-green);
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.warning-content h3 .highlight-green {
    color: var(--primary-green);
}

/* Accordion Header */
.accordion-header span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
}

.accordion-header span .highlight-green {
    color: var(--primary-green);
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    gap: 10px;
}

.logo i {
    color: var(--light-green);
    font-size: 2rem;
}

.logo span .highlight-green {
    color: var(--primary-green);
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--light-green);
}

.btn-secondary:hover {
    background-color: var(--light-green);
    color: var(--background-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-green);
}

.btn-outline:hover {
    background-color: var(--accent-green);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(15, 18, 14, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(65, 82, 63, 0.3);
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navegação */
.nav {
    position: relative;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    /* font-size: 0.85rem; */
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-light);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--light-green);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(15, 18, 14, 0.8), rgba(15, 18, 14, 0.9)), 
                url('../assets/img/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(65, 82, 63, 0.1), rgba(15, 18, 14, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light-green);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

/* Seções */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    border: 1px solid rgba(65, 82, 63, 0.2);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--light-green);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--light-green);
    margin-bottom: 20px;
}

/* Sobre Mim - Seção atualizada */
.about-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

.about-text {
    font-size: 1.1rem;
}

.expertise-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.expertise-item {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
    align-items: flex-start;
    padding: 1.25rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.expertise-item:nth-child(2) {
    animation-delay: 0.5s;
}

.expertise-item:nth-child(3) {
    animation-delay: 1s;
}

.expertise-item:nth-child(4) {
    animation-delay: 1.5s;
}

.expertise-item:hover {
    animation-play-state: paused;
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.expertise-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.7s ease;
}

.expertise-item:hover::before {
    left: 100%;
}

.expertise-item i {
    font-size: 1.5rem;
    color: var(--light-green);
    background: rgba(107, 125, 104, 0.1);
    padding: 0.75rem;
    border-radius: 10px;
    min-width: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.expertise-item:hover i {
    transform: scale(1.1) rotate(5deg);
    color: var(--light-green);
    background: rgba(107, 125, 104, 0.15);
    box-shadow: 0 5px 15px rgba(107, 125, 104, 0.2);
}

.expertise-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.expertise-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Cores específicas para cada ícone no hover */
.expertise-item:nth-child(1):hover i {
    transform: scale(1.1) rotate(-5deg);
    color: #2196F3;
    background: rgba(33, 150, 243, 0.15);
}

.expertise-item:nth-child(2):hover i {
    transform: scale(1.1) rotate(10deg);
    color: #FF9800;
    background: rgba(255, 152, 0, 0.15);
}

.expertise-item:nth-child(3):hover i {
    transform: scale(1.1) rotate(-10deg);
    color: #FF5722;
    background: rgba(255, 87, 34, 0.15);
}

.expertise-item:nth-child(4):hover i {
    transform: scale(1.1) rotate(15deg);
    color: #9C27B0;
    background: rgba(156, 39, 176, 0.15);
}

/* Container da imagem de perfil */
.about-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.profile-image-container {
    width: 100%;
    max-width: 300px;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.profile-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    border: 3px solid var(--accent-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    background-color: var(--dark-green);
    display: block;
}

.profile-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.profile-image.avatar-fallback {
    object-fit: contain;
    padding: 20px;
    background-color: var(--primary-green);
}

/* Badge */
.profile-badge {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    padding: 20px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    width: 100%;
    max-width: 300px;
    border: 2px solid var(--accent-green);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    margin-top: 10px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.profile-badge i {
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 10px;
    display: block;
}

.profile-badge::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: var(--light-green);
    border-radius: 2px;
    opacity: 0.7;
}

/* Projetos */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    max-width: 350px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    background-color: var(--background-light);
    transition: var(--transition);
    border: 1px solid rgba(65, 82, 63, 0.2);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--light-green);
}

.project-card .project-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
}

.project-card .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--background-dark);
    color: var(--light-green);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 2;
}

.project-content {
    padding: 30px;
}

.project-description {
    margin-bottom: 20px;
    min-height: 80px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.project-tech span {
    background-color: rgba(65, 82, 63, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--light-green);
}

/* Répteis do Brasil */
.filter-controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    background-color: transparent;
    border: 2px solid var(--accent-green);
    color: var(--text-light);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--accent-green);
    color: var(--background-dark);
}

.reptiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.reptile-card {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(65, 82, 63, 0.2);
}

.reptile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.reptile-image {
    height: 180px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-light);
}

.reptile-content {
    padding: 20px;
}

.reptile-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--white);
}

.reptile-content h3 .highlight-green {
    color: var(--primary-green);
}

.reptile-scientific {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.reptile-type {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 10px;
}

.reptile-type.serpente {
    background-color: rgba(139, 0, 0, 0.2);
    color: #ff6b6b;
}

.reptile-type.lagarto {
    background-color: rgba(65, 82, 63, 0.3);
    color: var(--light-green);
}

.reptile-type.venenosa {
    background-color: rgba(255, 0, 0, 0.1);
    color: #ff4444;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

/* Educação & Resgate */
.accordion-container {
    max-width: 800px;
    margin: 0 auto 60px;
}

.accordion {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(65, 82, 63, 0.3);
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background-color: var(--background-light);
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: rgba(65, 82, 63, 0.1);
}

.accordion-header i {
    transition: var(--transition);
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(65, 82, 63, 0.05);
}

.accordion-content p {
    padding: 20px;
    margin: 0;
}

.warning-box {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(178, 34, 34, 0.05));
    border-left: 4px solid #8b0000;
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.warning-icon {
    font-size: 2rem;
    color: #ff4444;
    flex-shrink: 0;
}

.warning-content ul {
    list-style: none;
    padding-left: 0;
}

.warning-content li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--text-muted);
}

.warning-content li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
}

/* Footer */
.footer {
    background-color: var(--background-light);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(65, 82, 63, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-text {
    margin-top: 15px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.footer-links i {
    color: var(--light-green);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(65, 82, 63, 0.2);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--light-green);
    color: var(--background-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(65, 82, 63, 0.3);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Responsividade */
@media (max-width: 992px) {
    h1, .hero-title {
        font-size: 2.8rem;
    }
    
    h2, .section-title {
        font-size: 2.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .profile-image {
        height: 250px;
    }
    
    .profile-badge {
        padding: 15px 25px;
        max-width: 250px;
    }
    
    .profile-badge i {
        font-size: 1.8rem;
    }
    
    .profile-badge p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--background-dark);
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }
    
    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list li {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 15px;
        border-bottom: 1px solid rgba(65, 82, 63, 0.2);
    }
    
    h1, .hero-title {
        font-size: 2.2rem;
    }
    
    h2, .section-title {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-controls {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
    
    .expertise-item {
        padding: 1rem;
    }
    
    .expertise-item i {
        font-size: 1.25rem;
        padding: 0.6rem;
        min-width: 45px;
        min-height: 45px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 70px 0;
    }
    
    h1, .hero-title {
        font-size: 1.8rem;
    }
    
    h2, .section-title {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .warning-box {
        flex-direction: column;
    }
    
    .about-image {
        max-width: 250px;
    }
    
    .profile-image {
        height: 220px;
    }
    
    .profile-badge {
        padding: 12px 20px;
        max-width: 220px;
    }
    
    .profile-badge i {
        font-size: 1.6rem;
    }
    
    .profile-badge p {
        font-size: 0.95rem;
    }
}

/* ========================================
   SEÇÃO DE CURSOS - BioFauna Tech
   ======================================== */

.courses-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--background-dark) 0%, #131813 100%);
    position: relative;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

/* Card Principal */
.course-card {
    background: rgba(26, 29, 25, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 30px 30px;
    border: 1px solid rgba(65, 82, 63, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(65, 82, 63, 0.08), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 20px;
    pointer-events: none;
}

.course-card:hover::before {
    opacity: 1;
}

.course-card:hover {
    transform: translateY(-10px);
    border-color: rgba(65, 82, 63, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Cores específicas para cada card no hover */
.course-card:nth-child(1):hover {
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.08);
}

.course-card:nth-child(2):hover {
    border-color: rgba(46, 204, 113, 0.4);
    box-shadow: 0 20px 60px rgba(46, 204, 113, 0.08);
}

.course-card:nth-child(3):hover {
    border-color: rgba(241, 196, 15, 0.4);
    box-shadow: 0 20px 60px rgba(241, 196, 15, 0.08);
}

/* Ícone e número */
.course-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.course-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    min-height: 65px;
    background: linear-gradient(135deg, rgba(65, 82, 63, 0.25), rgba(65, 82, 63, 0.05));
    border-radius: 16px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(65, 82, 63, 0.15);
    flex-shrink: 0;
}

.course-icon i {
    font-size: 2rem !important;
    color: var(--light-green) !important;
    transition: all 0.4s ease;
    display: block !important;
}

.course-card:hover .course-icon {
    background: linear-gradient(135deg, rgba(65, 82, 63, 0.35), rgba(65, 82, 63, 0.1));
    transform: scale(1.05) rotate(-5deg);
    border-color: rgba(65, 82, 63, 0.3);
}

.course-card:hover .course-icon i {
    transform: scale(1.1);
}

/* Cores específicas para ícones no hover */
.course-card:nth-child(1):hover .course-icon i {
    color: #FF6B35 !important;
}

.course-card:nth-child(2):hover .course-icon i {
    color: #2ECC71 !important;
}

.course-card:nth-child(3):hover .course-icon i {
    color: #F1C40F !important;
}

.course-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.06);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    transition: all 0.4s ease;
}

.course-card:hover .course-number {
    color: rgba(255, 255, 255, 0.12);
    transform: translateX(-5px);
}

/* Conteúdo */
.course-content {
    flex: 1;
}

.course-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.course-card:hover .course-title {
    color: var(--light-green);
}

/* Tags */
.course-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.tag {
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(65, 82, 63, 0.15);
    color: var(--text-muted);
    border: 1px solid rgba(65, 82, 63, 0.1);
    transition: all 0.3s ease;
}

.course-card:hover .tag {
    background: rgba(65, 82, 63, 0.25);
    color: var(--text-light);
    border-color: rgba(65, 82, 63, 0.2);
}

/* Descrição */
.course-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 22px;
    transition: color 0.3s ease;
}

.course-card:hover .course-description {
    color: #c8d4c6;
}

/* Footer com informações */
.course-footer {
    display: flex;
    gap: 25px;
    padding-top: 18px;
    border-top: 1px solid rgba(65, 82, 63, 0.1);
    transition: border-color 0.3s ease;
    flex-wrap: wrap;
}

.course-card:hover .course-footer {
    border-top-color: rgba(65, 82, 63, 0.2);
}

.course-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.course-info i {
    color: var(--light-green);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.course-card:hover .course-info {
    color: var(--text-light);
}

.course-card:hover .course-info i {
    color: var(--primary-green);
}

/* Animações de entrada */
.course-card {
    opacity: 0;
    animation: fadeInUpCourse 0.8s ease forwards;
}

.course-card:nth-child(1) {
    animation-delay: 0.1s;
}

.course-card:nth-child(2) {
    animation-delay: 0.25s;
}

.course-card:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeInUpCourse {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 992px) {
    .courses-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .courses-section {
        padding: 70px 0;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .course-card {
        padding: 28px 25px 25px;
    }
    
    .course-icon {
        width: 55px !important;
        height: 55px !important;
        min-width: 55px !important;
        min-height: 55px !important;
    }
    
    .course-icon i {
        font-size: 1.6rem !important;
    }
    
    .course-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .course-card {
        padding: 22px 20px 20px;
    }
    
    .course-icon-wrapper {
        margin-bottom: 18px;
    }
    
    .course-icon {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        min-height: 48px !important;
    }
    
    .course-icon i {
        font-size: 1.3rem !important;
    }
    
    .course-number {
        font-size: 0.75rem;
    }
    
    .course-footer {
        flex-direction: column;
        gap: 8px;
    }
}

/* ========================================
   BOTÃO WHATSAPP FLUTUANTE
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Ícone do WhatsApp */
.whatsapp-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    flex-shrink: 0;
    order: 2;
}

.whatsapp-icon i {
    font-size: 2rem;
    color: #ffffff;
    transition: transform 0.3s ease;
}

/* Efeito de pulsação */
.whatsapp-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.2);
    animation: pulse-whatsapp 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Tooltip - aparece do lado direito (à esquerda do botão) */
.whatsapp-tooltip {
    background: rgba(26, 29, 25, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-light);
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    border: 1px solid rgba(37, 211, 102, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    position: relative;
    margin-right: 12px;
    order: 1;
}

/* Seta do tooltip (aponta para o botão) */
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: rgba(26, 29, 25, 0.95);
    border-right: 1px solid rgba(37, 211, 102, 0.15);
    border-top: 1px solid rgba(37, 211, 102, 0.15);
}

/* Hover - mostra o tooltip do lado direito */
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Hover no botão */
.whatsapp-float:hover .whatsapp-icon {
    transform: scale(1.08);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:hover .whatsapp-icon i {
    transform: scale(1.1);
}

/* Botão em estado normal (sem hover) - mantém o tooltip escondido */
.whatsapp-float:not(:hover) .whatsapp-tooltip {
    opacity: 0;
    transform: translateX(10px) scale(0.95);
    pointer-events: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 18px;
        right: 18px;
    }
    
    .whatsapp-icon {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-icon i {
        font-size: 1.8rem;
    }
    
    .whatsapp-tooltip {
        font-size: 0.8rem;
        padding: 8px 14px;
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 14px;
        right: 14px;
    }
    
    .whatsapp-icon {
        width: 46px;
        height: 46px;
    }
    
    .whatsapp-icon i {
        font-size: 1.6rem;
    }
    
    .whatsapp-tooltip {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-right: 8px;
        white-space: normal;
        max-width: 160px;
    }
}


/* ========================================
   SEÇÃO DE BLOG / ARTIGOS
   ======================================== */

.blog-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f120e 0%, #131813 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Card do Artigo */
.blog-card {
    background: rgba(26, 29, 25, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(65, 82, 63, 0.15);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(65, 82, 63, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Imagem do Artigo */
.blog-image {
    height: 120px;
    background: linear-gradient(135deg, rgba(65, 82, 63, 0.25), rgba(42, 53, 41, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
    transition: all 0.4s ease;
}

.blog-card:hover .blog-image {
    background: linear-gradient(135deg, rgba(65, 82, 63, 0.35), rgba(42, 53, 41, 0.5));
}

.blog-emoji {
    font-size: 3rem;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-emoji {
    transform: scale(1.15) rotate(-5deg);
}

/* Badge do Artigo */
.blog-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--primary-green);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.blog-card:nth-child(1) .blog-badge { background: #FF6B35; }
.blog-card:nth-child(2) .blog-badge { background: #2ECC71; }
.blog-card:nth-child(3) .blog-badge { background: #E74C3C; }
.blog-card:nth-child(4) .blog-badge { background: #3498DB; }
.blog-card:nth-child(5) .blog-badge { background: #F1C40F; color: #1a1d19; }
.blog-card:nth-child(6) .blog-badge { background: #9B59B6; }

/* Conteúdo do Artigo */
.blog-content {
    padding: 25px 28px 28px;
}

/* Meta (data e tempo) */
.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-meta i {
    color: var(--light-green);
    margin-right: 5px;
    font-size: 0.75rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
}

/* Título */
.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.blog-card:hover .blog-title {
    color: var(--light-green);
}

/* Resumo */
.blog-excerpt {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-excerpt {
    color: #c8d4c6;
}

/* Tags */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.blog-tag {
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background: rgba(65, 82, 63, 0.15);
    color: var(--text-muted);
    border: 1px solid rgba(65, 82, 63, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover .blog-tag {
    background: rgba(65, 82, 63, 0.25);
    color: var(--text-light);
    border-color: rgba(65, 82, 63, 0.15);
}

/* Botão do Artigo */
.blog-btn {
    width: 100%;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-btn i {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-btn {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.blog-card:hover .blog-btn i {
    transform: translateX(5px);
}

/* Animações de entrada */
.blog-card {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.blog-card:nth-child(1) { animation-delay: 0.05s; }
.blog-card:nth-child(2) { animation-delay: 0.15s; }
.blog-card:nth-child(3) { animation-delay: 0.25s; }
.blog-card:nth-child(4) { animation-delay: 0.35s; }
.blog-card:nth-child(5) { animation-delay: 0.45s; }
.blog-card:nth-child(6) { animation-delay: 0.55s; }

/* ========================================
   MODAL DOS ARTIGOS - RESPONSIVO
   ======================================== */

/* Ajuste para mobile: imagens ficam acima do texto */
@media (max-width: 768px) {
    .modal-content .serpente-item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .modal-content .serpente-item .serpente-image {
        width: 120px !important;
        height: 120px !important;
        margin-bottom: 15px !important;
    }
    
    .modal-content .serpente-item .serpente-text {
        text-align: center !important;
        width: 100% !important;
    }
    
    .modal-content .serpente-item .serpente-text h4 {
        font-size: 1.1rem !important;
    }
    
    .modal-content .serpente-item .serpente-text p {
        font-size: 0.95rem !important;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .modal-content .serpente-item .serpente-image {
        width: 100px !important;
        height: 100px !important;
    }
}

/* Responsividade do Blog */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 70px 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .blog-image {
        height: 100px;
    }
    
    .blog-emoji {
        font-size: 2.5rem;
    }
    
    .blog-content {
        padding: 20px 22px 22px;
    }
    
    .blog-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 50px 0;
    }
    
    .blog-image {
        height: 80px;
    }
    
    .blog-emoji {
        font-size: 2rem;
    }
    
    .blog-badge {
        font-size: 0.6rem;
        padding: 3px 10px;
    }
    
    .blog-content {
        padding: 16px 18px 18px;
    }
    
    .blog-meta {
        font-size: 0.7rem;
        gap: 12px;
    }
}


/* ========================================
   CORREÇÃO PARA IPHONE - HERO E BLOG
   ======================================== */

/* Remove o background-attachment: fixed no mobile */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll !important;
        background-position: center !important;
        min-height: 500px !important;
        height: auto !important;
    }
}

/* Garante que o modal funcione no iOS */
@media (max-width: 768px) {
    .modal-overlay {
        -webkit-overflow-scrolling: touch !important;
    }
    
    .modal-content {
        -webkit-overflow-scrolling: touch !important;
        padding: 25px !important;
        max-height: 85vh !important;
    }
}

/* ========================================
   OTIMIZAÇÕES DE PERFORMANCE
   ======================================== */

/* Acelera as animações */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Remove o atraso do scroll suave em dispositivos lentos */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Acelera o carregamento do hero */
.hero {
    will-change: transform, opacity;
    transform: translateZ(0);
}

/* Acelera os cards */
.card, .project-card, .course-card, .blog-card, .reptile-card {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Acelera imagens */
img {
    content-visibility: auto;
    contain: paint;
}

/* ========================================
   CORREÇÃO PARA IPHONE - CLICK EM BOTÕES
   ======================================== */

/* Força o cursor pointer em todos os botões no iOS */
button, 
.btn, 
.blog-btn,
.modal-close,
.view-details {
    cursor: pointer !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* Garante que os cliques funcionem no iOS */
.modal-content {
    -webkit-overflow-scrolling: touch !important;
    overflow-y: auto !important;
}

/* Remove o comportamento padrão do iOS que pode bloquear cliques */
* {
    -webkit-touch-callout: none !important;
}

/* Força o z-index correto para o modal */
#articleModal {
    z-index: 99999 !important;
    -webkit-overflow-scrolling: touch !important;
}

/* Garante que os botões do blog sejam clicáveis no iOS */
.blog-btn {
    position: relative !important;
    z-index: 1 !important;
    -webkit-user-select: none !important;
    user-select: none !important;
}



/* ========================================
   SEÇÃO: FUTURO - BioFauna Tech
   Estilo mantendo o padrão do site
   ======================================== */

.future-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--background-dark) 0%, #131813 100%);
    position: relative;
}

/* --- Cabeçalho da Seção --- */
.future-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.future-section .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(65, 82, 63, 0.15);
    color: var(--light-green);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(65, 82, 63, 0.1);
}

.future-section .section-kicker i {
    color: var(--primary-green);
    font-size: 0.9rem;
}

.future-section .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.future-section .section-title .highlight-green {
    color: var(--primary-green);
}

.future-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    border-radius: 2px;
}

.future-section .section-subtitle {
    font-size: 1.15rem;
    max-width: 750px;
    margin: 20px auto 0;
    color: var(--text-muted);
    line-height: 1.8;
}

/* --- Introdução --- */
.future-intro {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: rgba(26, 29, 25, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 35px 40px;
    border-radius: 20px;
    border: 1px solid rgba(65, 82, 63, 0.15);
    margin-bottom: 60px;
    transition: all 0.4s ease;
}

.future-intro:hover {
    border-color: rgba(65, 82, 63, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.future-intro-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(65, 82, 63, 0.25), rgba(65, 82, 63, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--light-green);
    border: 1px solid rgba(65, 82, 63, 0.1);
    transition: all 0.4s ease;
}

.future-intro:hover .future-intro-icon {
    transform: scale(1.05) rotate(-5deg);
    background: linear-gradient(135deg, rgba(65, 82, 63, 0.35), rgba(65, 82, 63, 0.1));
    border-color: rgba(65, 82, 63, 0.2);
}

.future-intro-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.future-intro-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.future-intro:hover .future-intro-content p {
    color: #c8d4c6;
}

/* --- Fluxo de Etapas --- */
.future-flow {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin: 50px 0 60px;
    padding: 20px 25px;
    background: rgba(26, 29, 25, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(65, 82, 63, 0.1);
    flex-wrap: wrap;
}

.future-step {
    flex: 1 1 140px;
    min-width: 120px;
    max-width: 200px;
    text-align: center;
    padding: 25px 15px 20px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.future-step:hover {
    background: rgba(65, 82, 63, 0.1);
    transform: translateY(-5px);
}

.future-step-number {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--light-green);
    background: rgba(65, 82, 63, 0.15);
    display: inline-block;
    padding: 3px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
    letter-spacing: 1.5px;
    font-family: 'Montserrat', sans-serif;
}

.future-step-icon {
    font-size: 2.2rem;
    color: var(--light-green);
    margin-bottom: 12px;
    display: block;
    transition: all 0.4s ease;
}

.future-step:hover .future-step-icon {
    transform: scale(1.15) rotate(-5deg);
    color: var(--primary-green);
}

/* Cores específicas para cada ícone no hover */
.future-step:nth-child(1):hover .future-step-icon { color: #FF6B35; }
.future-step:nth-child(2):hover .future-step-icon { color: #2ECC71; }
.future-step:nth-child(3):hover .future-step-icon { color: #E74C3C; }
.future-step:nth-child(4):hover .future-step-icon { color: #3498DB; }
.future-step:nth-child(5):hover .future-step-icon { color: #F1C40F; }

.future-step h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.future-step p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 0;
    max-width: 160px;
    margin-left: auto;
    margin-right: auto;
    transition: color 0.3s ease;
}

.future-step:hover p {
    color: var(--text-light);
}

.future-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(65, 82, 63, 0.3);
    font-size: 1rem;
    flex-shrink: 0;
    padding: 0 5px;
    transition: color 0.3s ease;
    min-width: 30px;
}

.future-flow:hover .future-arrow {
    color: rgba(65, 82, 63, 0.5);
}

/* --- Status (Onde estamos) --- */
.future-status {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(65, 82, 63, 0.12), rgba(26, 29, 25, 0.8));
    padding: 35px 40px;
    border-radius: 20px;
    border: 1px solid rgba(65, 82, 63, 0.15);
    margin: 50px 0 40px;
    transition: all 0.4s ease;
}

.future-status:hover {
    border-color: rgba(65, 82, 63, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.future-status-icon {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    background: rgba(65, 82, 63, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--light-green);
    border: 1px solid rgba(65, 82, 63, 0.1);
    transition: all 0.4s ease;
}

.future-status:hover .future-status-icon {
    transform: scale(1.05) rotate(5deg);
    background: rgba(65, 82, 63, 0.3);
    border-color: rgba(65, 82, 63, 0.2);
}

.future-status-content {
    flex: 1;
}

.future-status-label {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.future-status-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.future-status-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.future-status:hover .future-status-content p {
    color: #c8d4c6;
}

.future-status-content p:last-child {
    margin-bottom: 0;
}

/* --- Pilares --- */
.future-pillars {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 40px 0 50px;
}

.future-pillar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(26, 29, 25, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(65, 82, 63, 0.12);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-light);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: default;
}

.future-pillar i {
    color: var(--light-green);
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.future-pillar:hover {
    transform: translateY(-3px);
    border-color: rgba(65, 82, 63, 0.3);
    background: rgba(65, 82, 63, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.future-pillar:hover i {
    transform: scale(1.15);
    color: var(--primary-green);
}

/* Cores específicas para cada pilar no hover */
.future-pillar:nth-child(1):hover i { color: #FF6B35; }
.future-pillar:nth-child(2):hover i { color: #2ECC71; }
.future-pillar:nth-child(3):hover i { color: #F1C40F; }
.future-pillar:nth-child(4):hover i { color: #3498DB; }
.future-pillar:nth-child(5):hover i { color: #9B59B6; }

/* --- Citação --- */
.future-quote {
    text-align: center;
    padding: 50px 40px 45px;
    background: rgba(26, 29, 25, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(65, 82, 63, 0.1);
    margin-top: 30px;
    position: relative;
    transition: all 0.4s ease;
}

.future-quote:hover {
    border-color: rgba(65, 82, 63, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.future-quote i {
    font-size: 2.5rem;
    color: rgba(65, 82, 63, 0.3);
    margin-bottom: 20px;
    display: block;
    transition: color 0.4s ease;
}

.future-quote:hover i {
    color: rgba(65, 82, 63, 0.5);
}

.future-quote p {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-style: italic;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

.future-quote:hover p {
    color: var(--light-green);
}

/* --- Animações de entrada --- */
.future-intro,
.future-status,
.future-quote {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.future-intro { animation-delay: 0.1s; }
.future-status { animation-delay: 0.2s; }
.future-quote { animation-delay: 0.3s; }

.future-step {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.future-step:nth-child(1) { animation-delay: 0.05s; }
.future-step:nth-child(2) { animation-delay: 0.12s; }
.future-step:nth-child(3) { animation-delay: 0.19s; }
.future-step:nth-child(4) { animation-delay: 0.26s; }
.future-step:nth-child(5) { animation-delay: 0.33s; }

.future-arrow {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.future-arrow:nth-child(6) { animation-delay: 0.08s; }
.future-arrow:nth-child(8) { animation-delay: 0.15s; }
.future-arrow:nth-child(10) { animation-delay: 0.22s; }
.future-arrow:nth-child(12) { animation-delay: 0.29s; }

.future-pillar {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.future-pillar:nth-child(1) { animation-delay: 0.05s; }
.future-pillar:nth-child(2) { animation-delay: 0.12s; }
.future-pillar:nth-child(3) { animation-delay: 0.19s; }
.future-pillar:nth-child(4) { animation-delay: 0.26s; }
.future-pillar:nth-child(5) { animation-delay: 0.33s; }

/* ========================================
   RESPONSIVIDADE - SEÇÃO FUTURO
   ======================================== */

@media (max-width: 992px) {
    .future-section .section-title {
        font-size: 2.3rem;
    }
    
    .future-section .section-subtitle {
        font-size: 1.05rem;
    }
    
    .future-flow {
        padding: 15px 20px;
        gap: 0;
    }
    
    .future-step {
        flex: 1 1 120px;
        min-width: 100px;
        padding: 20px 10px 15px;
    }
    
    .future-step p {
        max-width: 130px;
        font-size: 0.8rem;
    }
    
    .future-quote p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .future-section {
        padding: 70px 0;
    }
    
    .future-section .section-title {
        font-size: 2rem;
    }
    
    .future-section .section-subtitle {
        font-size: 1rem;
    }
    
    /* Fluxo vertical */
    .future-flow {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 0;
    }
    
    .future-step {
        width: 100%;
        max-width: 280px;
        padding: 18px 15px;
    }
    
    .future-step p {
        max-width: 100%;
    }
    
    .future-arrow {
        transform: rotate(90deg);
        padding: 3px 0;
        min-width: auto;
    }
    
    .future-arrow i {
        font-size: 0.9rem;
    }
    
    /* Introdução e Status em coluna */
    .future-intro,
    .future-status {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 25px;
        gap: 20px;
    }
    
    .future-intro-content h3,
    .future-status-content h3 {
        font-size: 1.4rem;
    }
    
    .future-intro-content p,
    .future-status-content p {
        font-size: 1rem;
        text-align: center;
    }
    
    .future-status-content p {
        text-align: center;
    }
    
    /* Pilares */
    .future-pillars {
        gap: 10px;
    }
    
    .future-pillar {
        font-size: 0.85rem;
        padding: 8px 18px;
    }
    
    /* Citação */
    .future-quote {
        padding: 35px 25px 30px;
    }
    
    .future-quote p {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .future-section {
        padding: 50px 0;
    }
    
    .future-section .section-title {
        font-size: 1.7rem;
    }
    
    .future-section .section-kicker {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
    
    .future-intro,
    .future-status {
        padding: 22px 18px;
        gap: 15px;
    }
    
    .future-intro-icon,
    .future-status-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .future-intro-content h3,
    .future-status-content h3 {
        font-size: 1.2rem;
    }
    
    .future-intro-content p,
    .future-status-content p {
        font-size: 0.95rem;
    }
    
    .future-flow {
        padding: 12px 10px;
    }
    
    .future-step {
        padding: 15px 10px;
        max-width: 240px;
    }
    
    .future-step-icon {
        font-size: 1.8rem;
    }
    
    .future-step h3 {
        font-size: 0.95rem;
    }
    
    .future-step p {
        font-size: 0.8rem;
    }
    
    .future-step-number {
        font-size: 0.6rem;
        padding: 2px 10px;
    }
    
    .future-pillars {
        gap: 8px;
    }
    
    .future-pillar {
        font-size: 0.8rem;
        padding: 6px 14px;
        gap: 8px;
    }
    
    .future-pillar i {
        font-size: 0.95rem;
    }
    
    .future-quote {
        padding: 28px 18px 24px;
    }
    
    .future-quote i {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .future-quote p {
        font-size: 1rem;
    }
}

/* Versão mais clean - ajustes finos */

/* Remove o efeito de vidro (backdrop) para um visual mais sóbrio */
.future-intro,
.future-status,
.future-quote {
    background: rgba(26, 29, 25, 0.7);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.future-step {
    background: transparent;
    padding: 20px 15px;
}

.future-step:hover {
    background: rgba(65, 82, 63, 0.05);
    transform: translateY(-3px);
}

.future-flow {
    background: rgba(26, 29, 25, 0.4);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 15px 20px;
}

.future-pillar {
    background: rgba(26, 29, 25, 0.6);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 8px 20px;
}

.future-pillar:hover {
    background: rgba(65, 82, 63, 0.15);
}

/* Remove sombras pesadas */
.future-intro:hover,
.future-status:hover,
.future-quote:hover {
    box-shadow: none;
    border-color: rgba(65, 82, 63, 0.2);
}

/* Espaçamento mais equilibrado */
.future-section .section-title::after {
    width: 60px;
    height: 3px;
}

.future-section .section-kicker {
    background: rgba(65, 82, 63, 0.08);
    padding: 6px 18px;
}

/* Subtítulo mais clean */
.future-section .section-subtitle {
    font-weight: 300;
    letter-spacing: 0.02em;
}