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

:root {
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --emerald-50: #ecfdf5;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --teal-50: #f0fdfa;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 50;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    max-height: 80px;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(to bottom right, var(--green-500), var(--emerald-600));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.logo-icon-laeco {
    width: 240px;
    height: auto;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    letter-spacing: -0.025em;
}

.nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav-link {
    text-decoration: none;
    color: var(--gray-600);
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--green-600);
}

.nav-link-button {
    background: var(--green-600);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: background 0.2s;
}

.nav-link-button:hover {
    background: var(--green-700);
}

.mobile-menu-button {
    display: block;
    background: none;
    border: none;
    color: var(--gray-700);
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-button {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 5rem;
    background: linear-gradient(to bottom right, var(--green-50), var(--emerald-50), var(--teal-50));
    overflow: hidden;
}

.hero-bg-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-decoration {
    position: absolute;
    border-radius: 9999px;
    filter: blur(60px);
    opacity: 0.3;
}

.hero-decoration-1 {
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: var(--green-200);
}

.hero-decoration-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: var(--emerald-200);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--green-100);
    color: var(--green-700);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.text-green {
    color: var(--green-600);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--green-600);
    color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: var(--green-700);
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
}

.btn-secondary:hover {
    border-color: var(--green-600);
    color: var(--green-600);
}

.btn-secondary-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary-white:hover {
    background: var(--white);
    color: var(--gray-900);
}

.btn-full {
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: rotate(2deg);
    transition: transform 0.3s;
}

.hero-image-container:hover {
    transform: rotate(0deg);
}

.hero-image-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: linear-gradient(to bottom right, var(--green-500), var(--emerald-600));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    z-index: 10;
}

.hero-image {
    width: 100%;
    height: 24rem;
    object-fit: cover;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

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

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.25rem;
    color: var(--green-600);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-number_data {
    font-size: 2.25rem;
    color: var(--green-600);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-label {
    color: var(--gray-600);
    font-size: 0.875rem;
}

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

.section-title {
    font-size: 2.25rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-title.text-white {
    color: var(--white);
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 42rem;
    margin: 0 auto;
}

.section-description.text-light {
    color: var(--green-100);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--white), var(--gray-50));
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.5rem);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon-green {
    background: linear-gradient(to bottom right, var(--green-500), var(--green-600));
}

.service-icon-emerald {
    background: linear-gradient(to bottom right, var(--emerald-500), var(--emerald-600));
}

.service-icon-yellow {
    background: linear-gradient(to bottom right, #eab308, #f97316);
}

.service-icon-blue {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}

.service-icon-teal {
    background: linear-gradient(to bottom right, var(--green-600), #14b8a6);
}

.service-icon-purple {
    background: linear-gradient(to bottom right, #6366f1, #a855f7);
}

.service-title {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.service-link {
    background: none;
    border: none;
    color: var(--green-600);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    transition: gap 0.3s;
}

.service-link:hover {
    color: var(--green-700);
    gap: 0.75rem;
}

/* Featured Projects Section */
.featured-projects {
    padding: 5rem 0;
    background: var(--white);
}

.featured-grid-large {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .featured-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
}

.project-card-large {
    position: relative;
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.project-card-large:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.project-image-container {
    position: relative;
    height: 20rem;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card-large:hover .project-image,
.project-card-small:hover .project-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: var(--white);
}

.project-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.project-title-large {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.project-description {
    font-size: 0.875rem;
    color: #e5e7eb;
}

.featured-grid-small {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .featured-grid-small {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-card-small {
    position: relative;
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.project-card-small:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.project-image-container-small {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.project-content-small {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    color: var(--white);
}

.project-category-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
}

.project-title-small {
    font-size: 1.125rem;
    font-weight: 600;
}

/* More Projects Section */
.more-projects {
    padding: 5rem 0;
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-card {
    position: relative;
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.project-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.5rem);
}

.project-gradient {
    height: 12rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-gradient-cyan {
    background: linear-gradient(to bottom right, #22d3ee, #3b82f6);
}

.project-gradient-teal {
    background: linear-gradient(to bottom right, #2dd4bf, #22c55e);
}

.project-gradient-emerald {
    background: linear-gradient(to bottom right, #34d399, #16a34a);
}

.project-gradient-orange {
    background: linear-gradient(to bottom right, #fbbf24, #f97316);
}

.project-gradient-lime {
    background: linear-gradient(to bottom right, #a3e635, #22c55e);
}

.project-gradient-yellow {
    background: linear-gradient(to bottom right, #facc15, #f59e0b);
}

.project-icon {
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s;
}

.project-card:hover .project-icon {
    color: var(--white);
    transform: scale(1.1);
}

.project-gradient-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: all 0.3s;
}

.project-card:hover .project-gradient-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.project-info {
    padding: 1.5rem;
}

.project-cat {
    font-size: 0.875rem;
    color: var(--green-600);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.project-name {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.project-btn {
    background: none;
    border: none;
    color: var(--green-600);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    transition: all 0.3s;
    font-weight: 500;
}

.project-btn:hover {
    color: var(--green-700);
    gap: 0.75rem;
}

/* Process Section */
.process {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--gray-50), var(--white));
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    position: relative;
}

.process-number {
    font-size: 3.75rem;
    color: var(--green-100);
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.process-icon {
    color: var(--green-600);
}

.process-title {
    font-size: 1.25rem;
    color: var(--gray-900);
}

.process-description {
    color: var(--gray-600);
}

.process-line {
    display: none;
}

@media (min-width: 768px) {
    .process-line {
        display: block;
        position: absolute;
        top: 3rem;
        left: 100%;
        width: 100%;
        height: 2px;
        background: linear-gradient(to right, var(--green-200), transparent);
        transform: translateX(-1rem);
    }
    
    .process-step:last-child .process-line {
        display: none;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, var(--green-600), var(--emerald-600));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    font-size: 2.25rem;
    color: var(--green-600);
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to bottom right, var(--green-400), var(--emerald-500));
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.testimonial-name {
    color: var(--gray-900);
    font-weight: 600;
}

.testimonial-role {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, var(--gray-900), var(--gray-800));
}

.cta-content {
    text-align: center;
}

.cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background: var(--green-500);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-title {
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-description {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--white);
}

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

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

.contact-title {
    font-size: 2.25rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.contact-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item-icon {
    width: 3rem;
    height: 3rem;
    background: var(--green-100);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-600);
    flex-shrink: 0;
}

.contact-item-label {
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.contact-item-value {
    color: var(--gray-600);
}

.commitment-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--green-50);
    border: 1px solid var(--green-200);
    border-radius: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.commitment-icon {
    color: var(--green-600);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.commitment-title {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.commitment-text {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.contact-form-wrapper {
    background: var(--gray-50);
    border-radius: 1rem;
    padding: 2rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    display: block;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--gray-300);
    font-size: 1rem;
    outline: none;
    transition: all 0.2s;
}

.form-input:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-textarea {
    resize: none;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 3rem 0;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(to bottom right, var(--green-500), var(--emerald-600));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-text {
    font-size: 1.25rem;
}

.footer-description {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4ade80;
    font-size: 0.875rem;
}

.footer-heading {
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #4ade80;
}

.footer-newsletter-text {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-newsletter {
    display: flex;
    gap: 0.5rem;
}

.footer-newsletter-input {
    flex: 1;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    color: var(--white);
    font-size: 0.875rem;
    outline: none;
}

.footer-newsletter-input:focus {
    border-color: var(--green-600);
}

.footer-newsletter-button {
    background: var(--green-600);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.footer-newsletter-button:hover {
    background: var(--green-700);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--gray-400);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-commitment {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4ade80;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}