/* ===== VARIÁVEIS CSS ===== */
:root {
    --primary-color: #1b5e3f;
    --secondary-color: #2d8659;
    --light-green: #4ecdc4;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --gray-dark: #333333;
    --text-color: #333333;
    --text-light: #666666;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* ===== RESET E ESTILOS GLOBAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== MENU FIXO ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: slideDown 0.5s ease;
}

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

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.navbar-logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-logo i {
    font-size: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: block;
    padding: 8px 15px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 5px;
}

.nav-link:hover {
    background-color: var(--gray-light);
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== SEÇÃO HERO ===== */
body {
    padding-top: 70px;
}

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 94, 63, 0.6);
    z-index: 5;
}

.hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
    z-index: 6;
}

.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite reverse;
    z-index: 6;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    animation: fadeInUp 1s ease;
}

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

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 10;
    display: none;
}

.hero-illustration {
    font-size: 200px;
    color: rgba(255, 255, 255, 0.2);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--light-green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #41b8b0;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== SEÇÕES ===== */
.section {
    padding: 80px 20px;
}

.section-light {
    background-color: var(--gray-light);
}

.section-impact {
    background-color: #f0f8f5;
}

.section-process {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.section-social {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.section-sponsorship {
    background-color: #f9f9f9;
}

.section-contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-social .section-title,
.section-contact .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 16px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.section-social .section-subtitle,
.section-contact .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== CARDS DE PROBLEMAS ===== */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.problem-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: slideInUp 0.6s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.problem-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== SEÇÃO IMPACTO ===== */
.impact-content {
    max-width: 900px;
    margin: 0 auto;
}

.impact-text {
    font-size: 18px;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 50px;
    line-height: 1.8;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat p {
    color: var(--text-light);
}

/* ===== SEÇÃO SOLUÇÃO ===== */
.solution-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

.solution-intro p {
    margin-bottom: 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.benefit-card ul {
    list-style: none;
    padding: 0;
}

.benefit-card li {
    padding: 10px 0;
    color: var(--text-light);
    font-size: 15px;
    border-bottom: 1px solid var(--gray-medium);
    position: relative;
    padding-left: 25px;
}

.benefit-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.benefit-card li:last-child {
    border-bottom: none;
}

/* ===== PROCESSO ===== */
.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.process-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.process-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.process-step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.process-arrow {
    font-size: 36px;
    color: var(--primary-color);
    flex: 0 0 auto;
}

@media (max-width: 768px) {
    .process-arrow {
        transform: rotate(90deg);
    }
}

/* ===== TOTEM ===== */
.totem-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.totem-visual {
    width: 200px;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
    position: relative;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease;
}

.totem-screen {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 30px 10px;
    text-align: center;
    font-size: 32px;
}

.totem-top {
    text-align: center;
    font-size: 36px;
    opacity: 0.9;
}

.totem-compartments {
    display: flex;
    gap: 10px;
    justify-content: space-around;
}

.compartment-battery,
.compartment-device {
    width: 50%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    font-size: 20px;
}

.totem-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.totem-specs,
.totem-functions {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.totem-specs h3,
.totem-functions h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
}

.totem-specs ul,
.totem-functions ul {
    list-style: none;
}

.totem-specs li,
.totem-functions li {
    padding: 10px 0;
    color: var(--text-light);
    font-size: 15px;
    border-bottom: 1px solid var(--gray-medium);
}

.totem-specs li:last-child,
.totem-functions li:last-child {
    border-bottom: none;
}

.totem-functions li:before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
}

.materials-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.material {
    background: var(--gray-light);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.material i {
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
}

.totem-collection {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.totem-collection h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
}

/* ===== IMPACTO SOCIAL ===== */
.impact-description {
    text-align: center;
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.social-impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.social-impact-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.social-impact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.social-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.social-impact-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.social-impact-card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
}

/* ===== LISTA DE ESPERA ===== */
.waitlist-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.waitlist-intro {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.8;
    color: var(--text-color);
}

.waitlist-highlight {
    background: #fff3cd;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
    font-size: 16px;
    color: var(--primary-color);
}

.waitlist-highlight p {
    margin: 0;
}

.waitlist-reasons {
    text-align: left;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin: 30px 0;
}

.waitlist-reasons h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
}

.waitlist-reasons > p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.reasons-list {
    list-style: none;
    margin-bottom: 25px;
}

.reasons-list li {
    padding: 15px 0;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 1px solid var(--gray-medium);
}

.reasons-list li:before {
    color: var(--primary-color);
    margin-right: 10px;
}

.reasons-list li:last-child {
    border-bottom: none;
}

.emphasis {
    background: #e8f5e9;
    padding: 15px;
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 20px;
}

.emphasis i {
    margin-right: 10px;
}

.btn-large {
    margin-top: 30px;
}

/* ===== PATROCÍNIO ===== */
.sponsorship-model {
    text-align: center;
}

.model-intro {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
    color: var(--text-color);
}

.sponsorship-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.benefit {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.benefit:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.benefit h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.benefit p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.sponsorship-note {
    background: #e3f2fd;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin-top: 40px;
    border-radius: 8px;
    color: var(--primary-color);
}

.sponsorship-note p {
    margin: 0;
}

/* ===== FAQ ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

/* ===== CONTATO ===== */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 50px auto;
    max-width: 800px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.contact-cta {
    text-align: center;
    font-size: 16px;
    margin-top: 40px;
    line-height: 1.8;
    opacity: 0.95;
}

/* ===== GALERIA DE IMAGENS ===== */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* ===== IMAGEM TOTEM ESPECIFICAÇÕES ===== */
.totem-spec-image {
    width: 100%;
    height: auto;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: block;
    margin: 0 auto;
}

/* ===== RODAPÉ ===== */
.footer {
    background: linear-gradient(135deg, #0a3a1f 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 60px 20px 20px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-size: 14px;
}

.footer-section ul a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== RESPONSIVIDADE ===== */
/* Galeria responsiva em mobile */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery img {
        height: 250px;
    }
    
    .totem-spec-image {
        max-width: 100%;
    }
}

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

    .hamburger {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .nav-item {
        border-bottom: 1px solid var(--gray-medium);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 15px 0;
    }

    .hero {
        min-height: 70vh;
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .section-title {
        font-size: 32px;
    }

    .section {
        padding: 60px 20px;
    }

    .problems-grid,
    .benefits-grid,
    .sponsorship-benefits,
    .social-impact-grid {
        grid-template-columns: 1fr;
    }

    .process-flow {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .totem-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section ul a {
        justify-content: center;
    }
}

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

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    .totem-visual {
        width: 160px;
        height: 280px;
    }
}

/* ===== ANIMAÇÕES ADICIONAIS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

/* Scroll reveal animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
}
