/* ============================================
   METAP RECICLAGEM - ESTILOS GLOBAIS
   Design: Minimalismo Sustentável
   ============================================ */

/* Cores da Marca */
:root {
    --metap-dark: #1F3A4A;
    --metap-red: #E63946;
    --metap-green: #06A77D;
    --metap-light: #F8F9FA;
    --text-dark: #1F3A4A;
    --text-light: #666666;
    --border-color: #E8EAED;
    --white: #FFFFFF;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--metap-light) 100%);
}

.hero-content {
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

.logo-circle {
    width: 96px;
    height: 96px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--metap-red), var(--metap-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.2);
}

.leaf-icon {
    font-size: 3rem;
}

.main-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--metap-dark);
}

.main-title .highlight {
    color: var(--metap-red);
}

.tagline {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.divider-line {
    width: 3rem;
    height: 4px;
    background-color: var(--metap-green);
}

.divider-dot {
    width: 8px;
    height: 8px;
    background-color: var(--metap-red);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.1rem;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: 4rem 0;
    background-color: var(--metap-light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--metap-dark);
    margin-bottom: 1rem;
}

.section-header.white h2 {
    color: var(--white);
}

.underline {
    width: 80px;
    height: 4px;
    background-color: var(--metap-red);
    margin: 0 auto;
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.highlight-box {
    background-color: var(--white);
    border-left: 4px solid var(--metap-green);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.highlight-box p {
    margin-bottom: 0.5rem;
}

.highlight-box p:first-child {
    font-weight: 600;
    color: var(--metap-dark);
}

.highlight-box p:last-child {
    color: var(--text-light);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    .about-content p {
        font-size: 1rem;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    padding: 4rem 0;
    background-color: var(--white);
}

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

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.service-icon.red {
    background-color: var(--metap-red);
    color: var(--white);
}

.service-icon.green {
    background-color: var(--metap-green);
    color: var(--white);
}

.service-icon.dark {
    background-color: var(--metap-dark);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--metap-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: 4rem 0;
    background-color: var(--metap-dark);
    color: var(--white);
}

.section-header.white {
    text-align: center;
    margin-bottom: 3rem;
}

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

.contact-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.contact-card a {
    color: var(--metap-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--metap-green);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: #0F1F2A;
    color: rgba(255, 255, 255, 0.6);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer a {
    color: var(--metap-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ============================================
   ANIMAÇÕES
   ============================================ */

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

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }
}
