/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de cores verdes */
    --cal-poly-green: #004b23;
    --office-green: #006400;
    --office-green-2: #007200;
    --office-green-3: #008000;
    --kelly-green: #38b000;
    --sgbus-green: #70e000;
    --spring-bud: #9ef01a;
    --lime: #ccff33;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #004b23 0%, #006400 25%, #007200 50%, #008000 75%, #38b000 100%);
    --gradient-secondary: linear-gradient(45deg, #38b000 0%, #70e000 50%, #9ef01a 100%);
    --gradient-accent: linear-gradient(90deg, #9ef01a 0%, #ccff33 100%);
    
    /* Cores neutras */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --black: #000000;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 75, 35, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 75, 35, 0.15);
    --shadow-lg: 0 8px 25px rgba(0, 75, 35, 0.2);
    --shadow-xl: 0 15px 35px rgba(0, 75, 35, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    background: var(--light-gray);
    padding-top: 80px; /* Compensar header fixo do Bootstrap */
}

/* Bootstrap navbar adjustments - REMOVIDO para usar Tailwind */
/* Estilos comentados para evitar conflito com o menu Tailwind
.navbar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
... outros estilos navbar comentados ...
*/

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

/* Header e Navegação - REMOVIDO para usar Tailwind */
/* Estilos comentados para evitar conflito com o menu Tailwind
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(0, 75, 35, 0.1);
}
... outros estilos de navegação comentados ...
*/

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    padding-top: 180px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
    opacity: 0.7;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 500px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--cal-poly-green);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
    background: var(--lime);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--cal-poly-green);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.btn-login {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.hero-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 10s linear infinite;
}

.hero-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hero-card i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.hero-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Animações */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}



/* Seções gerais */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    opacity: 0.03;
    transform: rotate(15deg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    animation: slideInLeft 0.8s ease-out;
}

.about-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.8rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border-left: 5px solid var(--office-green);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--kelly-green);
}

.feature:hover::before {
    opacity: 0.05;
}

.feature i {
    font-size: 2.5rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 60px;
    position: relative;
    z-index: 2;
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature h4 {
    font-size: 1.3rem;
    color: var(--cal-poly-green);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature p {
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

.about-image {
    display: flex;
    justify-content: center;
    animation: slideInRight 0.8s ease-out;
}

.image-placeholder {
    width: 100%;
    height: 450px;
    background: var(--gradient-primary);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 15s linear infinite;
}

.image-placeholder i {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.image-placeholder p {
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: var(--light-gray);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.03;
    transform: rotate(-15deg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border-top: 5px solid var(--office-green);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-top-color: var(--kelly-green);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.service-icon i {
    font-size: 2.2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--cal-poly-green);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
}

.service-card ul {
    list-style: none;
    text-align: left;
    position: relative;
    z-index: 2;
}

.service-card li {
    padding: 0.7rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    line-height: 1.5;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.7rem;
    color: var(--office-green);
    font-weight: bold;
    font-size: 1.1rem;
    width: 20px;
    height: 20px;
    background: var(--spring-bud);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    opacity: 0.03;
    transform: rotate(15deg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    animation: slideInLeft 0.8s ease-out;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border-left: 5px solid var(--office-green);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--kelly-green);
}

.contact-item:hover::before {
    opacity: 0.05;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.contact-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.contact-details {
    position: relative;
    z-index: 2;
}

.contact-details h4 {
    font-size: 1.4rem;
    color: var(--cal-poly-green);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-details p {
    color: var(--gray);
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-form {
    animation: slideInRight 0.8s ease-out;
}

.form {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--office-green);
    position: relative;
    overflow: hidden;
}

.form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.02;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(0, 75, 35, 0.2);
    border-radius: 15px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(248, 249, 250, 0.8);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--office-green);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 100, 0, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form .btn-primary {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

/* Footer */
.footer {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="b" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.05"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="100" cy="100" r="80" fill="url(%23b)"/><circle cx="900" cy="200" r="120" fill="url(%23b)"/><circle cx="300" cy="800" r="100" fill="url(%23b)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-section {
    animation: fadeInUp 0.6s ease forwards;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.footer-logo .logo {
    border-color: var(--white);
}

.footer-section h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-section p {
    margin-bottom: 0.8rem;
    opacity: 0.9;
    line-height: 1.6;
    font-size: 1.05rem;
}

.footer-section i {
    margin-right: 0.8rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.9;
    position: relative;
    z-index: 2;
    font-size: 1rem;
}

/* Animações adicionais */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-container {
        gap: 3rem;
    }
    
    .about-content,
    .contact-content {
        gap: 3rem;
    }
}

/* Media queries para dispositivos móveis - Menu dropdown minimalista */
@media screen and (max-width: 1024px) {
    .header {
        height: 70px;
        min-height: 70px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        width: 100%;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        padding: 0 20px;
        min-height: 60px;
        position: relative;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-logo {
        margin: 0;
    }
    
    .logo {
        height: 40px;
        width: 40px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    /* Regra removida - conflitava com menu desktop */
    
/* ===== HEADER E NAVEGAÇÃO PRINCIPAL ===== */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-main {
    background: #fff;
    padding: 1rem 0;
}

.site-branding {
    display: flex;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo .logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5530;
}

/* Navegação Principal */
.primary-navigation-wrap {
    background: #2c5530;
    border-top: 1px solid #1e3a21;
}

.primary-navigation-container {
    position: relative;
}

.primary-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    padding: 1rem;
    cursor: pointer;
    align-items: center;
    gap: 0.5rem;
}

.menu-icon {
    font-size: 1.2rem;
}

.primary-navigation {
    display: block;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-navigation .menu-item {
    position: relative;
}

.main-navigation .menu-item a {
    display: block;
    padding: 1rem 1.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.main-navigation .menu-item a:hover {
    background: #1e3a21;
    border-bottom-color: #7fb069;
}

.main-navigation .menu-item a i {
    margin-right: 0.5rem;
}

/* Media queries antigas removidas - menu simples sempre visível */

/* Media query específica para telas muito pequenas (360x640 e similares) */
@media screen and (max-width: 480px) and (max-height: 800px) {
    .nav-menu.mobile-menu {
        padding: 4rem 0 1rem 0;
    }
    
    .nav-menu.mobile-menu .nav-link {
        padding: 10px 15px;
        margin: 0 15px;
        font-size: 0.9rem;
    }
    
    .nav-menu.mobile-menu .nav-item {
        margin: 0.3rem 0;
    }
}

/* Media query para dispositivos em orientação landscape */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .nav-menu.mobile-menu {
        padding: 3rem 0 1rem 0;
    }
    
    .nav-menu.mobile-menu .nav-link {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .nav-menu.mobile-menu .nav-item {
        margin: 0.2rem 0;
    }
}

/* Media queries específicas para resoluções comuns de smartphones */
/* iPhone SE, Galaxy S8, etc. (375x667) */
@media screen and (max-width: 375px) {
    .header {
        height: 65px;
        min-height: 65px;
    }
    
    .nav-container {
        padding: 0 50px 0 50px;
        justify-content: center;
    }
    
    .nav-logo {
        margin: 0 auto;
    }
    
    .nav-menu.mobile-menu {
        padding: 4rem 0 1rem 0;
    }
}

/* Dispositivos muito pequenos (320x568 e 360x640) */
@media screen and (max-width: 360px) {
    .header {
        height: 60px;
        min-height: 60px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .logo {
        height: 35px;
        width: 35px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    /* Hamburger antigo removido */
    
    .nav-menu.mobile-menu {
        width: 250px !important;
        padding: 3.5rem 0 1rem 0 !important;
    }
    
    .nav-menu.mobile-menu .nav-link {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    body {
        padding-top: 60px;
    }
}

/* Regras antigas do hamburger removidas */

/* Hamburger customizado removido - usando Bootstrap navbar-toggler */

/* Media Queries para Responsividade */
@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }
    
    .primary-menu-toggle {
        display: flex;
        margin-right: 0 !important;
    }
    
    .primary-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #2c5530;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
    
    .primary-navigation.active {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        align-items: stretch;
    }
    
    .main-navigation .menu-item a {
        padding: 1rem;
        border-bottom: 1px solid #1e3a21;
        border-radius: 15px;
        display: block;
        margin: 0 20px;
    }
    
    .main-navigation .menu-item:last-child a {
        border-bottom: none;
    }
    
    .nav-logo .logo {
        width: 50px;
        height: 50px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .header-main {
        padding: 0.8rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-top: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-card {
        padding: 2.5rem 2rem;
        margin: 0 auto;
        max-width: 300px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h3 {
        font-size: 2rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    .image-placeholder {
        height: 300px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .form {
        padding: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 70px;
    }
    
    .primary-menu-toggle {
        margin-right: 0 !important;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-card {
        padding: 2rem 1.5rem;
        margin: 0 auto;
        max-width: 280px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .about,
    .services,
    .contact {
        padding: 4rem 0;
    }
    
    .about-text h3 {
        font-size: 1.6rem;
    }
    
    .feature {
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .feature i {
        font-size: 2rem;
        min-width: 50px;
    }
    
    .contact-item {
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
    
    .form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
    
    .footer {
        padding: 3rem 0 1rem;
    }
}

/* Melhorias de performance e acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Modo escuro (opcional) - DESABILITADO para manter fundo branco */
/*
@media (prefers-color-scheme: dark) {
    :root {
        --light-gray: #1a1a1a;
        --white: #2d2d2d;
        --dark-gray: #e0e0e0;
        --gray: #b0b0b0;
    }
}
*/

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.feature,
.contact-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling para navegação */
html {
    scroll-behavior: smooth;
}

/* Hover effects */
.service-card:hover .service-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateX(10px);
    transition: transform 0.3s ease;
}