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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #374151;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

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

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

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

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

.logo {
    height: 48px;
    width: auto;
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #166534;
    margin: 0;
}

.logo-text p {
    font-size: 0.875rem;
    color: #16a34a;
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 24px;
}

.nav-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #16a34a;
}

.whatsapp-btn {
    background: #16a34a;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #15803d;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #374151;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 140px 0 80px;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/lmrY2OPWo8M3.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    height: 96px;
    width: auto;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #166534;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.25rem;
    color: #15803d;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: #16a34a;
    color: white;
}

.btn-primary:hover {
    background: #15803d;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #16a34a;
    border: 2px solid #16a34a;
}

.btn-secondary:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
}

.btn-light {
    background: white;
    color: #16a34a;
}

.btn-light:hover {
    background: #f9fafb;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #16a34a;
    transform: translateY(-2px);
}

/* Sections */
.recognition, .services, .differentials, .gallery, .location {
    padding: 80px 0;
}

.recognition {
    background: white;
}

.services {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.differentials {
    background: white;
}

.gallery {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.location {
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fef3c7;
    color: #92400e;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #166534;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: #15803d;
    max-width: 600px;
    margin: 0 auto;
}

/* Recognition Cards */
.recognition-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.card-icon {
    width: 64px;
    height: 64px;
    background: #fef3c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.card-icon i {
    font-size: 1.5rem;
    color: #92400e;
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #166534;
    margin-bottom: 8px;
}

.card p {
    color: #6b7280;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.service-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.service-icon i {
    font-size: 1.5rem;
    color: #16a34a;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #166534;
    margin-bottom: 12px;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 16px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.tag {
    background: #f3f4f6;
    color: #374151;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.875rem;
}

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

/* Differentials Grid */
.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.differential-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.differential-item:hover {
    background: #f0fdf4;
}

.differential-icon {
    width: 48px;
    height: 48px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.differential-icon i {
    font-size: 1.25rem;
    color: #16a34a;
}

.differential-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #166534;
    margin-bottom: 8px;
}

.differential-content p {
    color: #6b7280;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 24px 16px 16px;
}

.gallery-overlay h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.gallery-overlay p {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Location */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-item {
    display: flex;
    gap: 16px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.25rem;
    color: #16a34a;
}

.info-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #166534;
    margin-bottom: 8px;
}

.info-content p {
    color: #6b7280;
    margin-bottom: 4px;
}

.location-cta {
    margin-top: 16px;
}

.image-container {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    padding: 32px;
    border-radius: 12px;
}

.image-container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.image-caption {
    text-align: center;
    margin-top: 24px;
}

.image-caption h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #166534;
    margin-bottom: 8px;
}

.image-caption p {
    color: #15803d;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #16a34a 0%, #059669 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-logo {
    height: 64px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 24px;
}

.final-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.phone-numbers {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #166534;
    color: white;
    padding: 48px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.footer-logo p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

.footer-column p {
    color: #bbf7d0;
    margin-bottom: 16px;
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    color: #bbf7d0;
    margin-bottom: 8px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.contact-info i {
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #15803d;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: #bbf7d0;
    margin-bottom: 8px;
}

.footer-bottom p:last-child {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
    }
    
    .differential-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .services-grid,
    .recognition-cards,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

