/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --verde-escuro: #0d3b2e;
    --verde-medio: #1a5f3f;
    --verde-claro: #4caf50;
    --verde-light: #7ed957;
    --azul: #2196f3;
    --azul-escuro: #0c2e4e;
    --amarelo: #ffc107;
    --branco: #ffffff;
    --cinza-claro: #f8f9fa;
    --cinza-medio: #e9ecef;
    --texto-escuro: #1a1a1a;
    --texto-medio: #666666;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--texto-escuro);
    overflow-x: hidden;
}

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

/* Top Bar */
.top-bar {
    display: none;
}

/* Header */
.header {
    background: var(--branco);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1.2rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 80px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--texto-escuro);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--verde-light);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--verde-medio);
}

.btn-header {
    background: var(--verde-light);
    color: var(--branco);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(126, 217, 87, 0.3);
}

.btn-header:hover {
    background: var(--verde-medio);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(126, 217, 87, 0.4);
}

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

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--verde-escuro);
    border-radius: 3px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 800px;
    height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0d3b2e 0%, #1a5f3f 50%, #0c2e4e 100%);
    padding: 120px 0 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/about_1_1.jpg') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 59, 46, 0.9), rgba(12, 46, 78, 0.8));
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    animation: fadeInUp 1s ease;
    padding: 20px 0;
}

.hero-image {
    position: relative;
    animation: fadeInUp 1.2s ease;
}

.hero-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border: 8px solid rgba(255, 255, 255, 0.1);
}

.hero-image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero-image-badge i {
    font-size: 2.5rem;
    color: var(--verde-light);
}

.hero-image-badge div {
    display: flex;
    flex-direction: column;
}

.hero-image-badge strong {
    font-size: 1.8rem;
    color: var(--verde-escuro);
    line-height: 1;
}

.hero-image-badge span {
    font-size: 0.9rem;
    color: var(--texto-medio);
    font-weight: 500;
}

.hero-badge {
    display: inline-block;
    background: rgba(126, 217, 87, 0.2);
    color: var(--verde-light);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(126, 217, 87, 0.3);
}

.hero-title {
    font-size: 3.0rem;
    color: var(--branco);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

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

.btn {
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--verde-light);
    color: var(--branco);
    box-shadow: 0 8px 25px rgba(126, 217, 87, 0.4);
}

.btn-primary:hover {
    background: var(--verde-claro);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(126, 217, 87, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--branco);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: var(--branco);
    color: var(--verde-escuro);
    border-color: var(--branco);
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--branco);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Features Cards */
.features-cards {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    padding-bottom: 5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--branco);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.feature-card-highlight {
    background: linear-gradient(135deg, var(--verde-light), var(--verde-claro));
    color: var(--branco);
}

.feature-card-highlight .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--branco);
}

.feature-card-highlight h3,
.feature-card-highlight p {
    color: var(--branco);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(126, 217, 87, 0.1), rgba(76, 175, 80, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--verde-light);
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--verde-escuro);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--texto-medio);
    font-size: 0.9rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(126, 217, 87, 0.1);
    color: var(--verde-medio);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    color: var(--verde-escuro);
    font-weight: 700;
    line-height: 1.3;
}

/* Problem Solution */
.problem-solution {
    padding: 6rem 0;
    background: var(--cinza-claro);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-image {
    position: relative;
}

.solution-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.solution-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--branco);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    font-weight: 600;
    color: var(--verde-escuro);
}

.solution-badge i {
    color: var(--verde-light);
    font-size: 1.5rem;
}

.alert-box {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
    border-left: 4px solid var(--amarelo);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
}

.alert-box i {
    color: var(--amarelo);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-box p {
    margin: 0;
    color: var(--texto-escuro);
    font-weight: 500;
}

.lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--texto-medio);
    margin-bottom: 2rem;
}

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

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--verde-light), var(--verde-claro));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: var(--verde-escuro);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.benefit-content p {
    color: var(--texto-medio);
    margin: 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--verde-escuro), var(--azul-escuro));
    padding: 10rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 59, 46, 0.85), rgba(12, 46, 78, 0.85));
}

.page-header h1 {
    color: var(--branco);
    font-size: 3.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

/* About Section */
.about-section {
    padding: 6rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--texto-medio);
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* MVV Section */
.mvv-section {
    padding: 6rem 0;
    background: var(--cinza-claro);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.mvv-card {
    background: var(--branco);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.mvv-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--verde-light), var(--verde-claro));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.mvv-icon i {
    font-size: 2.5rem;
    color: var(--branco);
}

.mvv-card h3 {
    color: var(--verde-escuro);
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.mvv-card p {
    line-height: 1.8;
    color: var(--texto-medio);
}

/* Segments Section */
.segments-section {
    padding: 6rem 0;
}

.segments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.segment-card {
    background: linear-gradient(135deg, var(--verde-escuro), var(--verde-medio));
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    color: var(--branco);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.segment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--verde-light), var(--azul));
    opacity: 0;
    transition: opacity 0.3s;
}

.segment-card:hover::before {
    opacity: 1;
}

.segment-card i,
.segment-card h3 {
    position: relative;
    z-index: 2;
}

.segment-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.segment-card i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.segment-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

/* Differential Section */
.differential-section {
    padding: 6rem 0;
    background: var(--cinza-claro);
}

.differential-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.differential-item {
    background: var(--branco);
    padding: 2.5rem;
    border-radius: 25px;
    display: flex;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
}

.differential-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.differential-item i {
    font-size: 3rem;
    color: var(--verde-light);
    flex-shrink: 0;
}

.differential-item h3 {
    color: var(--verde-escuro);
    font-size: 1.3rem;
    font-weight: 600;
}

.result-box {
    background: linear-gradient(135deg, var(--verde-escuro), var(--azul-escuro));
    padding: 4rem 3rem;
    border-radius: 30px;
    text-align: center;
    margin-top: 4rem;
    color: var(--branco);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.result-box h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.result-box p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--branco);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--verde-light), var(--verde-claro));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

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

.service-card h3 {
    color: var(--verde-escuro);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    color: var(--texto-medio);
}

.service-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--verde-light);
    border-radius: 50%;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--verde-escuro), var(--azul-escuro));
    padding: 6rem 0;
    text-align: center;
    color: var(--branco);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 59, 46, 0.9), rgba(12, 46, 78, 0.9));
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section::before {
    display: none;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
    line-height: 1.4;
}

.cta-section .btn {
    font-size: 1.1rem;
    padding: 18px 40px;
}

.btn-light {
    background: var(--branco);
    color: var(--verde-escuro);
}

.btn-light:hover {
    background: var(--verde-light);
    color: var(--branco);
    transform: translateY(-3px);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h2,
.contact-form h2 {
    color: var(--verde-escuro);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: var(--texto-medio);
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--verde-light), var(--verde-claro));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h3 {
    color: var(--verde-escuro);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    margin: 0;
    color: var(--texto-medio);
}

.contact-form {
    background: var(--cinza-claro);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid var(--cinza-medio);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--verde-light);
    box-shadow: 0 0 0 4px rgba(126, 217, 87, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

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

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--branco);
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
    text-decoration: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 25px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Footer */
.footer {
    background: var(--verde-escuro);
    color: var(--branco);
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    border-radius: 30px;
}

.footer-col p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-col h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.footer-contact,
.footer-links {
    list-style: none;
}

.footer-contact li,
.footer-links li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--verde-light);
    font-size: 1.1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--verde-light);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--branco);
        width: 280px;
        height: 100vh;
        text-align: left;
        transition: 0.3s;
        box-shadow: 5px 0 20px rgba(0,0,0,0.1);
        padding: 6rem 2rem 2rem;
        gap: 0;
    }
    
    .nav-menu li {
        margin-bottom: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }
    
    .btn-header {
        display: none;
    }

    .hero {
        min-height: 700px;
        padding: 100px 0 80px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-image {
        order: -1;
    }

    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2rem;
    }

    .solution-content,
    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .mvv-grid,
    .segments-grid {
        grid-template-columns: 1fr;
    }

    .differential-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 600px;
        padding: 80px 0 60px;
    }

    .hero-image-badge {
        bottom: 20px;
        left: 20px;
        padding: 15px 20px;
    }
    
    .hero-image-badge i {
        font-size: 2rem;
    }
    
    .hero-image-badge strong {
        font-size: 1.5rem;
    }
    
    .hero-image-badge span {
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}
