/* Madeireira Silpinus - Empresa Styles - Paleta Verde Moderna */

:root {
    /* Paleta Verde e Natural - Sincronizada */
    --primary-color: #2E5D31;      /* Verde escuro floresta */
    --secondary-color: #4A7C59;    /* Verde médio */
    --accent-color: #C8A882;       /* Bege dourado */
    --accent-green: #6B8E23;       /* Verde oliva */
    --background-color: #F8FAF5;   /* Verde muito claro */
    --background-alt: #FFFFFF;     /* Branco puro */
    --neutral-light: #8FBC8F;      /* Verde acinzentado claro */
    --neutral-dark: #5F7A61;       /* Verde acinzentado escuro */
    --text-dark: #1C3A1F;          /* Verde muito escuro para texto */
    --white: #FFFFFF;
    --success: #228B22;            /* Verde sucesso */
    --warning: #DAA520;            /* Dourado */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--warning));
    --gradient-nature: linear-gradient(135deg, var(--accent-green), var(--secondary-color));
    --shadow-light: 0 5px 20px rgba(46, 93, 49, 0.1);
    --shadow-medium: 0 8px 25px rgba(46, 93, 49, 0.15);
    --shadow-dark: 0 15px 35px rgba(46, 93, 49, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Arial', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-color);
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Moderno */
header {
    background: var(--gradient-primary);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Logo Redesenhado */
.logo {
    display: flex;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-nature);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(107, 142, 35, 0.4);
}

.logo-icon::before {
    content: '🌲';
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.logo-text {
    font-family: 'Georgia', serif;
}

.logo-text h1 {
    font-size: 1.6rem;
    margin: 0;
    letter-spacing: 1px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.logo-text p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    font-weight: 400;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

nav a.active {
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
}

/* Page Hero Redesenhado */
.page-hero {
    background: linear-gradient(135deg, 
        rgba(46, 93, 49, 0.95) 0%, 
        rgba(74, 124, 89, 0.9) 50%, 
        rgba(107, 142, 35, 0.95) 100%), 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23F8FAF5"/><stop offset="50%" style="stop-color:%23E8F5E8"/><stop offset="100%" style="stop-color:%23D4F1D4"/></linearGradient></defs><rect fill="url(%23bg)" width="1200" height="400"/><path fill="%234A7C59" d="M0,200 Q300,150 600,200 T1200,200 V400 H0 Z" opacity="0.3"/><circle fill="%236B8E23" cx="800" cy="100" r="100" opacity="0.2"/><circle fill="%23C8A882" cx="300" cy="250" r="60" opacity="0.3"/></svg>');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center top, 
        rgba(255,255,255,0.1) 0%, 
        rgba(46, 93, 49, 0.2) 70%, 
        rgba(28, 58, 31, 0.4) 100%
    );
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    margin-bottom: 0.8rem;
    font-weight: 800;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, var(--white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.2);
}

/* Company Main Section */
.company-main {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--background-alt) 0%, var(--background-color) 100%);
    position: relative;
}

.company-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(107, 142, 35, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(74, 124, 89, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.company-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.company-text h2 {
    color: var(--primary-color);
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
    position: relative;
    font-weight: 800;
}

.company-text h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 5px;
    background: var(--gradient-nature);
    border-radius: 3px;
}

.company-text p {
    color: var(--text-dark);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    font-weight: 400;
}

.company-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 30px;
    border-left: 5px solid var(--accent-green);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    min-width: 280px;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-left-color: var(--accent-color);
}

.highlight-item i {
    color: var(--accent-green);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.highlight-item:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.highlight-item span {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.company-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    transition: transform 0.3s ease;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(200,168,130,0.1) 0%, transparent 50%);
}

.image-placeholder:hover {
    transform: scale(1.03);
}

.image-placeholder i {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: var(--accent-color);
    z-index: 2;
    position: relative;
}

.image-placeholder h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    z-index: 2;
    position: relative;
}

.image-placeholder p {
    opacity: 0.9;
    font-size: 1.1rem;
    line-height: 1.6;
    z-index: 2;
    position: relative;
}

/* Company Values Section */
.company-values {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--background-alt) 100%);
    position: relative;
}

.company-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 80% 30%, rgba(107, 142, 35, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(74, 124, 89, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.company-values h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.company-values h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-nature);
    border-radius: 3px;
}

.company-values .subtitle {
    text-align: center;
    color: var(--neutral-dark);
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-dark);
    border-color: var(--accent-green);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-top: 0.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.value-item:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.value-item p {
    color: var(--neutral-dark);
    line-height: 1.7;
    font-size: 1rem;
}

/* Excellence Section */
.excellence-section {
    padding: 5rem 0;
    background-color: var(--background-alt);
    position: relative;
}

.excellence-content {
    text-align: center;
    margin-bottom: 4rem;
}

.excellence-text h2 {
    color: var(--primary-color);
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
}

.excellence-text h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-nature);
    border-radius: 3px;
}

.excellence-text p {
    color: var(--neutral-dark);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-list {
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    margin-bottom: 2.5rem;
    transition: all 0.4s ease;
    border-left: 5px solid var(--accent-green);
}

.service-item:hover {
    transform: translateX(15px);
    box-shadow: var(--shadow-medium);
    border-left-color: var(--accent-color);
}

.service-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-green);
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.service-item:hover .service-number {
    color: var(--accent-color);
    transform: scale(1.1);
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.service-content p {
    color: var(--neutral-dark);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Commitments Section */
.commitments-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--background-alt) 100%);
    position: relative;
}

.commitments-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(107, 142, 35, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(74, 124, 89, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.commitments-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    margin-bottom: 4rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.commitments-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-nature);
    border-radius: 3px;
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.commitment-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-nature);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.commitment-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent-green);
    box-shadow: var(--shadow-dark);
}

.commitment-card:hover::before {
    transform: scaleX(1);
}

.commitment-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-nature);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.commitment-card:hover .commitment-icon {
    transform: rotateY(360deg);
    background: var(--gradient-accent);
}

.commitment-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.commitment-card p {
    color: var(--neutral-dark);
    line-height: 1.7;
    font-size: 1rem;
}

/* Timeline Section */
.timeline-section {
    padding: 5rem 0;
    background-color: var(--background-alt);
    position: relative;
}

.timeline-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    margin-bottom: 4rem;
    font-weight: 800;
    position: relative;
}

.timeline-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-nature);
    border-radius: 3px;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 100%;
    background: var(--gradient-nature);
    border-radius: 3px;
    box-shadow: var(--shadow-light);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: var(--shadow-medium);
    flex-shrink: 0;
    z-index: 2;
    position: relative;
    border: 4px solid var(--white);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-year {
    transform: scale(1.1);
    box-shadow: var(--shadow-dark);
}

.timeline-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    margin: 0 2rem;
    flex: 1;
    max-width: 350px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-green);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.timeline-content p {
    color: var(--neutral-dark);
    line-height: 1.7;
    font-size: 1rem;
}

/* Contact Info Simple */
.contact-info-simple {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-info-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(200,168,130,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(107,142,35,0.15) 0%, transparent 50%);
}

.contact-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-info-simple h2 {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}

.contact-info-simple p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.contact-method {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.contact-method.whatsapp {
    background: var(--success);
    border-color: rgba(34, 139, 34, 0.3);
}

.contact-method.whatsapp:hover {
    background: #1e7e34;
}

.contact-method.primary {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: rgba(200, 168, 130, 0.3);
}

.contact-method.primary:hover {
    background: #b8932d;
    color: var(--white);
}

.schedule-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.schedule-info:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.schedule-info i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.schedule-info h4 {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.schedule-info p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info .logo {
    margin-bottom: 1.5rem;
}

.footer-info p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1.05rem;
}

.footer-contact h4, .footer-services h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #cccccc;
    font-size: 1.05rem;
}

.footer-contact i {
    color: var(--accent-green);
    width: 20px;
}

.footer-services ul {
    list-style: none;
}

.footer-services li {
    color: #cccccc;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.footer-services li:hover {
    color: var(--accent-color);
}

.footer-services li::before {
    content: '🌲';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 0.95rem;
}

/* Animações e Efeitos */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.value-item, .commitment-card, .service-item {
    animation: fadeInUp 0.6s ease-out;
}

.value-item:nth-child(1) { animation-delay: 0.1s; }
.value-item:nth-child(2) { animation-delay: 0.2s; }
.value-item:nth-child(3) { animation-delay: 0.3s; }
.value-item:nth-child(4) { animation-delay: 0.4s; }
.value-item:nth-child(5) { animation-delay: 0.5s; }
.value-item:nth-child(6) { animation-delay: 0.6s; }

.company-text {
    animation: slideInFromLeft 0.8s ease-out;
}

.company-image {
    animation: slideInFromRight 0.8s ease-out;
}

/* Hover Effects Avançados */
.commitment-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(107, 142, 35, 0.05) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.commitment-card:hover::after {
    transform: translateX(100%);
}

.value-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(200, 168, 130, 0.05) 50%, transparent 60%);
    transform: translateY(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.value-item:hover::after {
    transform: translateY(100%);
}

/* Estados de Loading */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(107, 142, 35, 0.2), 
        transparent
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Focus States para Acessibilidade */
.contact-method:focus,
nav a:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 6px rgba(107, 142, 35, 0.2);
}

/* Micro-interações */
.logo:active {
    transform: scale(0.98);
}

.contact-method:active {
    transform: translateY(-3px) scale(0.98);
}

/* Performance Optimizations */
.value-item,
.commitment-card,
.service-item,
.timeline-item,
.company-image,
.page-hero {
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-content {
        flex-direction: column;
        gap: 2rem;
    }

    .company-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .image-placeholder {
        height: 300px;
    }

    .service-item {
        gap: 2rem;
        padding: 2.5rem;
    }

    .service-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .company-highlights {
        flex-direction: column;
    }

    .values-grid, .commitments-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .schedule-info {
        flex-direction: column;
        text-align: center;
    }

    .timeline::before {
        left: 40px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 100px;
    }

    .timeline-item:nth-child(even) {
        flex-direction: row !important;
    }

    .timeline-year {
        position: absolute;
        left: 0;
        width: 80px;
        height: 80px;
    }

    .timeline-content {
        margin: 0;
        max-width: none;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .service-number {
        font-size: 2.5rem;
    }

    .contact-methods {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    nav ul {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .page-hero, .company-main, .company-values, .excellence-section, 
    .commitments-section, .timeline-section, .contact-info-simple {
        padding: 3rem 0;
    }

    .value-item, .commitment-card, .service-item {
        padding: 2rem;
    }

    .logo-text h1 {
        font-size: 1.3rem;
    }

    .highlight-item {
        min-width: auto;
        flex-direction: column;
        text-align: center;
    }

    .timeline-year {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        padding-left: 80px;
    }
}

/* Tipografia Responsiva */
@media (max-width: 1200px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
}

/* Accessibility e Preferências */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    .value-item, .commitment-card, .service-item {
        border: 2px solid var(--text-dark);
    }
    
    .contact-method {
        border: 3px solid var(--white);
    }
    
    :root {
        --shadow-light: 0 5px 20px rgba(0,0,0,0.3);
        --shadow-medium: 0 8px 25px rgba(0,0,0,0.4);
        --shadow-dark: 0 15px 35px rgba(0,0,0,0.5);
    }
}

/* Print Styles */
@media print {
    header, 
    footer, 
    .contact-methods,
    .schedule-info {
        display: none;
    }
    
    body {
        background: white;
        color: black;
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .container {
        max-width: none;
        margin: 0;
        padding: 0;
    }
    
    .value-item,
    .commitment-card,
    .service-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1pt solid #ccc;
        margin-bottom: 1rem;
        page-break-inside: avoid;
    }
    
    .page-hero {
        background: none;
        color: black;
        padding: 2rem 0;
    }
    
    .page-hero h1 {
        color: black;
        text-shadow: none;
        -webkit-text-fill-color: initial;
        background: none;
    }
    
    .timeline::before {
        background: #ccc;
    }
    
    .timeline-year {
        background: #f0f0f0;
        color: black;
        border-color: #ccc;
    }
}