/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Paleta baseada na logo: azul #1793A6, verde #6CB33F */
:root {
    --azul-logo: #1793A6;
    --verde-logo: #6CB33F;
    --azul-escuro: #10687A;
    --cinza-escuro: #1f2937;
    --cinza-claro: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--cinza-escuro);
    background: var(--cinza-claro);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgb(229 229 229 / 95%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--azul-logo);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--azul-logo);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--cinza-escuro);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover, .nav a.active {
    color: var(--azul-logo) !important;
}

.nav a::after, .nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--azul-logo);
    transition: width 0.3s ease;
}

.nav a:hover::after, .nav a.active::after {
    width: 100%;
}

.nav .btn-contact:hover, .btn-contact:hover {
    color: #fff !important;
}

.btn-contact {
    background: linear-gradient(135deg, var(--azul-logo), var(--azul-escuro));
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.btn-contact:hover {
    background: var(--verde-logo);
    color: #fff !important;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('fundo_banner.jpg') center center/cover no-repeat;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 120px 0 80px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1;
    font-family: 'Heebo', 'Inter', Arial, sans-serif !important;
}

.highlight {
    background: linear-gradient(135deg, var(--verde-logo), #a3d977);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(108, 179, 63, 0.2), rgba(23, 147, 166, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--verde-logo), var(--azul-logo));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.feature-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.feature-content h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Heebo', 'Inter', Arial, sans-serif;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--verde-logo), #a3d977);
    color: #111 !important;
    box-shadow: 0 10px 30px rgba(108, 179, 63, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-primary:hover {
    background: var(--azul-logo);
    color: #fff !important;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-3px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(23, 147, 166, 0.07);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.card-icon {
    font-size: 3rem;
    color: var(--verde-logo);
    margin-bottom: 20px;
}

.hero-card h3, .hero-card p {
    color: #111 !important;
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Seções gerais */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--azul-logo);
    margin-bottom: 15px;
    font-family: 'Heebo', 'Inter', Arial, sans-serif !important;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Sobre - Design Moderno e Impactante */
.about-section {
    position: relative;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    overflow: hidden;
}

.about-background {
    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="aboutGrad" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(108,179,63,0.15);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(23,147,166,0.1);stop-opacity:1" /></radialGradient></defs><circle cx="100" cy="100" r="80" fill="url(%23aboutGrad)"/><circle cx="900" cy="200" r="120" fill="url(%23aboutGrad)"/><circle cx="300" cy="800" r="100" fill="url(%23aboutGrad)"/></svg>');
    background-size: cover;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.8));
}

.about-section .section-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 80px;
}

.about-section .section-header h2 {
    background: linear-gradient(135deg, var(--azul-logo), var(--verde-logo));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-shadow: 0 4px 24px rgba(23,147,166,0.15), 0 1.5px 0 rgba(0,0,0,0.10);
    position: relative;
    animation: aboutTitleFadeIn 1.1s cubic-bezier(.77,0,.18,1) both;
}

.about-section .section-header h2::after {
    content: '';
    display: block;
    margin: 18px auto 0 auto;
    width: 90px;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--azul-logo), var(--verde-logo));
    opacity: 0.85;
}

@keyframes aboutTitleFadeIn {
    0% { opacity: 0; transform: translateY(40px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.about-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* About Main Section */
.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.about-text {
    position: relative;
}

.about-highlight {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 15px 25px;
    margin-bottom: 30px;
}

.highlight-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--verde-logo);
    font-family: 'Heebo', 'Inter', Arial, sans-serif;
}

.highlight-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1rem;
}

.about-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
    font-family: 'Heebo', 'Inter', Arial, sans-serif;
}

.about-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-circle {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(108, 179, 63, 0.2), rgba(23, 147, 166, 0.2));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.circle-inner {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--verde-logo), var(--azul-logo));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* About Features */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--verde-logo), var(--azul-logo));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.feature-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--verde-logo), var(--azul-logo));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-badge {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    font-family: 'Heebo', 'Inter', Arial, sans-serif;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

.feature-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, var(--verde-logo), var(--azul-logo));
    border-radius: 2px;
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--verde-logo);
    margin-bottom: 10px;
    font-family: 'Heebo', 'Inter', Arial, sans-serif;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

/* Missão */
.mission-section {
    background: linear-gradient(135deg, var(--azul-logo), var(--azul-escuro));
    color: white;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.mission-icon {
    font-size: 4rem;
    color: var(--verde-logo);
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    font-family: 'Heebo', 'Inter', Arial, sans-serif !important;
}

.mission-text p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Serviços */

#servicos{
    background: #cfcece;
}

.services-section {
    background: #f5f5f5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(23, 147, 166, 0.07);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 2px solid var(--azul-logo);
    transform: scale(1.05);
}

.service-icon {
    font-size: 3rem;
    color: var(--verde-logo);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #4b5563;
}

.service-feature i {
    color: var(--verde-logo);
    font-size: 0.9rem;
}

/* Diferenciais - Design Único */
.diferenciais-section {
    position: relative;
    background: #1a1a1a;
    color: white;
    overflow: hidden;
}

.diferenciais-background {
    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><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    background-size: 50px 50px;
}

.diferenciais-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(23, 147, 166, 0.9), rgba(108, 179, 63, 0.8));
}

.diferenciais-section .section-header {
    position: relative;
    z-index: 2;
}

.diferenciais-section .section-header h2,
.diferenciais-section:hover .section-header h2 {
    color: #fff !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
}

.diferenciais-section .section-header h3 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.3rem;
    font-weight: 400;
}

.diferenciais-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.diferencial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.diferencial-card:hover::before {
    opacity: 1;
}

.diferencial-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.diferencial-card.featured {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.diferencial-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    font-family: 'Heebo', 'Inter', Arial, sans-serif;
}

.diferencial-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--verde-logo), var(--azul-logo));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.diferencial-card:hover .diferencial-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.diferencial-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    font-family: 'Heebo', 'Inter', Arial, sans-serif;
    position: relative;
    z-index: 2;
}

.diferencial-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.diferencial-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--verde-logo), var(--azul-logo));
    transition: width 0.4s ease;
}

.diferencial-card:hover .diferencial-line {
    width: 80%;
}

/* Planejamento - Design Único */
.planning-section {
    position: relative;
    background: #0f172a;
    color: white;
    overflow: hidden;
}

.planning-background {
    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="grad" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(108,179,63,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(23,147,166,0.05);stop-opacity:1" /></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23grad)"/><circle cx="800" cy="300" r="150" fill="url(%23grad)"/><circle cx="400" cy="700" r="120" fill="url(%23grad)"/></svg>');
    background-size: cover;
}

.planning-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(23, 147, 166, 0.8));
}

.planning-section .section-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 80px;
}

.planning-section .section-header h2 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--verde-logo), var(--azul-logo));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.planning-section .section-header h3 {
    color: var(--verde-logo);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.planning-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.planning-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Steps Cards */
.planning-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 30px;
}

.step-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    font-family: 'Heebo', 'Inter', Arial, sans-serif;
    min-width: 80px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--verde-logo), var(--azul-logo));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    font-family: 'Heebo', 'Inter', Arial, sans-serif;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.step-line {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: linear-gradient(135deg, var(--verde-logo), var(--azul-logo));
}

.step-card:last-child .step-line {
    display: none;
}

/* Features */
.planning-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--verde-logo), var(--azul-logo));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0px;
    font-size: 1.5rem;
    color: white;
}

.feature-item h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--verde-logo);
    margin-bottom: 10px;
    font-family: 'Heebo', 'Inter', Arial, sans-serif;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsividade para Planejamento */
@media (max-width: 768px) {
    .planning-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .planning-section .section-header h2 {
        font-size: 2.5rem;
    }
    
    .planning-section .section-header h3 {
        font-size: 1.5rem;
    }
    
    .step-card {
        padding: 30px 20px;
        gap: 20px;
    }
    
    .step-number {
        font-size: 2.5rem;
        min-width: 60px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-content h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .step-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .step-number {
        min-width: auto;
    }
    
    .planning-section .section-header h2 {
        font-size: 2rem;
    }
}

/* Footer Refatorado */
.footer {
    background: var(--azul-escuro);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 60px;
    align-items: start;
}

/* Informações da Empresa */
.footer-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-info img {
    margin-bottom: 10px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contato-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

.contato-info i {
    color: var(--verde-logo);
    font-size: 1rem;
    width: 20px;
}

/* Formulário no Footer */
.footer-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-form h4 {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    font-family: 'Heebo', 'Inter', Arial, sans-serif;
}

.contato-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    overflow: visible;
}

.contato-form::before {
    display: none;
}

.form-moderno {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 18px 18px 18px 45px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.1);
    color: #333;
    transition: all 0.3s ease;
    font-family: 'Inter', Arial, sans-serif;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 100px;
    grid-column: 1 / -1;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--verde-logo);
    background: white;
    color: #333;
    box-shadow: 0 0 0 3px rgba(108, 179, 63, 0.2);
}

.input-wrapper label {
    position: absolute;
    left: 45px;
    top: 18px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    pointer-events: none;
    font-family: 'Inter', Arial, sans-serif;
}

.input-wrapper input:focus + label,
.input-wrapper input:not(:placeholder-shown) + label,
.input-wrapper textarea:focus + label,
.input-wrapper textarea:not(:placeholder-shown) + label {
    top: 6px;
    left: 15px;
    font-size: 0.75rem;
    color: var(--verde-logo);
    font-weight: 500;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.input-wrapper input:focus ~ i,
.input-wrapper textarea:focus ~ i {
    color: var(--verde-logo);
}

.btn-enviar {
    background: linear-gradient(135deg, var(--verde-logo), var(--azul-logo));
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Heebo', 'Inter', Arial, sans-serif;
    margin-top: 10px;
    width: fit-content;
}

.btn-enviar:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(108, 179, 63, 0.3);
}

.btn-enviar:active {
    transform: translateY(0);
}

/* Responsividade para Footer Refatorado */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .input-wrapper input,
    .input-wrapper textarea {
        padding: 16px 16px 16px 40px;
    }
    
    .input-wrapper i {
        left: 12px;
        font-size: 0.9rem;
    }
    
    .btn-enviar {
        padding: 14px 24px;
        font-size: 0.95rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-form {
        padding: 25px 15px;
    }
    
    .footer-info {
        gap: 20px;
    }
    
    .contato-info {
        gap: 12px;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .about-main {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 60px;
    }

    .about-section .section-header h2 {
        font-size: 2.5rem;
    }

    .about-text h3 {
        font-size: 2rem;
    }

    .about-circle {
        width: 250px;
        height: 250px;
    }

    .circle-inner {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-highlight {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .mission-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .planning-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .diferenciais-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
    
    .diferencial-card {
        padding: 30px 20px;
    }
    
    .diferencial-card.featured {
        transform: none;
    }
    
    .diferencial-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .diferenciais-section .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .diferenciais-content {
        grid-template-columns: 1fr;
    }

    .about-section .section-header h2 {
        font-size: 2rem;
    }

    .about-text h3 {
        font-size: 1.8rem;
    }

    .about-circle {
        width: 200px;
        height: 200px;
    }

    .circle-inner {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }

    .feature-item {
        padding: 30px 20px;
    }

    .feature-badge {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .stat-item {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

.highlight-group {
    white-space: nowrap;
    display: inline-block;
}

/* Contato - Formulário Moderno */
.contato-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-top: 60px;
}

/* Informações de Contato */
.contato-info {
    display: flex;
    flex-direction: column;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(23, 147, 166, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(23, 147, 166, 0.15);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--verde-logo), var(--azul-logo));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--azul-logo);
    margin-bottom: 5px;
    font-family: 'Heebo', 'Inter', Arial, sans-serif;
}

.info-content p {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

/* Formulário Moderno */
.contato-form {
    background: white;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(23, 147, 166, 0.1);
    position: relative;
    overflow: hidden;
}

.contato-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--verde-logo), var(--azul-logo));
}

.form-moderno {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 30px 20px 10px 17px;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    font-size: 1rem;
    background: #f9fafb;
    transition: all 0.3s ease;
    font-family: 'Inter', Arial, sans-serif;
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 90px;
    padding-top: 30px;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--azul-logo);
    background: white;
    box-shadow: 0 0 0 4px rgba(23, 147, 166, 0.1);
}

.input-wrapper label {
    position: absolute;
    left: 50px;
    top: 20px;
    color: #9ca3af;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    font-family: 'Inter', Arial, sans-serif;
}

.input-wrapper input:focus + label,
.input-wrapper input:not(:placeholder-shown) + label,
.input-wrapper textarea:focus + label,
.input-wrapper textarea:not(:placeholder-shown) + label {
    top: 8px;
    left: 20px;
    font-size: 0.8rem;
    color: var(--azul-logo);
    font-weight: 500;
}

.input-wrapper i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.input-wrapper input:focus ~ i,
.input-wrapper textarea:focus ~ i {
    color: var(--azul-logo);
}

.btn-enviar {
    background: linear-gradient(135deg, var(--verde-logo), var(--azul-logo));
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Heebo', 'Inter', Arial, sans-serif;
    margin-top: 10px;
}

.btn-enviar:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(108, 179, 63, 0.3);
}

.btn-enviar:active {
    transform: translateY(-1px);
}

/* Responsividade para Contato */
@media (max-width: 768px) {
    .contato-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }
    
    .contato-form {
        padding: 30px 20px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .contato-form {
        padding: 25px 15px;
    }
    
    .input-wrapper input,
    .input-wrapper textarea {
        padding: 18px 18px 18px 45px;
    }
    
    .input-wrapper i {
        left: 15px;
        font-size: 1rem;
    }
    
    .btn-enviar {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

/* Footer Bottom */
.footer-bottom {
    color: rgba(255, 255, 255, 0.8);
    padding: 20px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.footer-bottom p {
    margin: 0;
    width: 100%;
    text-align: center;
}

/* Traço decorativo para títulos das seções */
.about-section .section-header h2::after {
    content: '';
    display: block;
    margin: 18px auto 0 auto;
    width: 90px;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--azul-logo), var(--verde-logo));
    opacity: 0.85;
}

.services-section .section-header h2::after {
    content: '';
    display: block;
    margin: 18px auto 0 auto;
    width: 90px;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--azul-logo), var(--verde-logo));
    box-shadow: 0 2px 12px rgba(23,147,166,0.10);
    opacity: 0.85;
}

.diferenciais-section .section-header h2::after {
    content: '';
    display: block;
    margin: 18px auto 0 auto;
    width: 90px;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,0.85), rgba(108,179,63,0.5));
    opacity: 0.95;
} 