/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
}

.logo-container {
    display: flex;
    align-items: baseline;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: #468b0c;
    letter-spacing: -0.5px;
}

.logo-subtext {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-left: 2px;
}

.logo-img {
  height: 50px;      /* ajuste conforme o logo */
  width: auto;       /* mantém proporção */
}


.nav-link {
    color: #666;
    font-weight: 500;
    padding: 0.5rem 1.25rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #1a1a1a;
}

.btn-cta {
    background: linear-gradient(135deg, #7ed957 0%, #468b0c 100%);
    border: none;
    padding: 0.65rem 1.75rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(126, 217, 87, 0.25);
}

.btn-cta:hover {
    background: linear-gradient(135deg, #468b0c 0%, #5ab535 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(126, 217, 87, 0.35);
}

/* Hero Section */
.hero-section {
    
    background-image: url(img/capa.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 250px 0 200px;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 0.85rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}


.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #7ed957 0%, #468b0c 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(126, 217, 87, 0.25);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(126, 217, 87, 0.35);
}

.hero-buttons .btn-outline-dark {
    border: none;
    color: #1a1a1a;
    background: white;
}

.hero-buttons .btn-outline-dark:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-2px);
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: white;
}

.stat-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #7ed957;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: #7ed957;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
}

/* Countries Section */
.countries-section {
    padding: 80px 0;
    background: #fafafa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.country-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #7ed957;
}

.country-flag {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.country-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: white;
}

.service-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 2.5rem 1.75rem;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #7ed957;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: white;
}

.gallery-section .carousel {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.gallery-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.gallery-section .carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    bottom: 30px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    max-width: 90%;
}

.gallery-section .carousel-caption h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gallery-section .carousel-caption p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.gallery-section .carousel-control-prev,
.gallery-section .carousel-control-next {
    width: 60px;
    height: 60px;
    background: #7ed957;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
}

.gallery-section .carousel-control-prev {
    left: 20px;
}

.gallery-section .carousel-control-next {
    right: 20px;
}

.gallery-section .carousel-control-prev:hover,
.gallery-section .carousel-control-next:hover {
    background: #468b0c;
    transform: translateY(-50%) scale(1.1);
}

.gallery-section .carousel-control-prev-icon,
.gallery-section .carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

.gallery-section .carousel-indicators {
    bottom: -50px;
}

.gallery-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.gallery-section .carousel-indicators button.active {
    background-color: #7ed957;
    transform: scale(1.2);
}

@media (max-width: 767px) {
    .gallery-img {
        height: 300px;
    }
    
    .gallery-section .carousel-control-prev,
    .gallery-section .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .gallery-section .carousel-control-prev {
        left: 10px;
    }
    
    .gallery-section .carousel-control-next {
        right: 10px;
    }
    
    .gallery-section .carousel-caption {
        padding: 1rem 1.25rem;
    }
    
    .gallery-section .carousel-caption h5 {
        font-size: 1.15rem;
    }
    
    .gallery-section .carousel-caption p {
        font-size: 0.9rem;
    }
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: #fafafa;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.benefits-list li {
    font-size: 1.05rem;
    color: #4a4a4a;
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #7ed957;
    font-weight: 800;
    font-size: 1.4rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #7ed957 0%, #468b0c 100%);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.cta-section .btn-light {
    background: white;
    color: #468b0c;
    padding: 0.85rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: #1a1a1a;
    color: #999;
}

/* Page Header */
.page-header {
background-image: url(img/foto\ servicios.jpg);
    background-size: cover;
    background-position: 50% 60%;
    background-repeat: no-repeat;
    padding: 250px 0 200px;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-description {
    font-size: 1.15rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* Detailed Services Page */
.detailed-services-section {
    padding: 80px 0;
    background: white;
}

.service-number {
    font-size: 4rem;
    font-weight: 800;
    color: #3f8f06;
    line-height: 1;
    margin-bottom: 1rem;
}

.service-main-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.service-main-description {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    font-size: 1rem;
    color: #4a4a4a;
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #7ed957;
    font-weight: 800;
    font-size: 1.3rem;
}

/* Additional Services */
.additional-services-section {
    padding: 80px 0;
    background: #fafafa;
}

.additional-service-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.additional-service-card:hover {
    border-color: #7ed957;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.additional-service-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.additional-service-desc {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* About Page */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-text {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Mission Vision */
.mission-vision-section {
    padding: 80px 0;
    background: #fafafa;
}

.mv-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    height: 100%;
}

.mv-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #7ed957;
    margin-bottom: 1.5rem;
}

.mv-text {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Values */
.values-section {
    padding: 80px 0;
    background: white;
}

.value-card {
    text-align: center;
    padding: 2rem 1rem;
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.value-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* Team */
.team-section {
    padding: 80px 0;
    background: #fafafa;
}

.team-stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
}

.team-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #7ed957;
}

.team-stat-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
}

/* Timeline */
.timeline-section {
    padding: 80px 0;
    background: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    gap: 2rem;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 800;
    color: #7ed957;
    min-width: 120px;
}

.timeline-content {
    flex: 1;
    padding: 1.5rem;
    background: #fafafa;
    border-radius: 12px;
    border-left: 4px solid #7ed957;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.timeline-text {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-form-container {
    background: #fafafa;
    padding: 3rem;
    border-radius: 16px;
}

.form-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.form-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-form .form-label {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #7ed957;
    box-shadow: 0 0 0 0.2rem rgba(126, 217, 87, 0.15);
}

.contact-info-container {
    background: #fafafa;
    padding: 3rem;
    border-radius: 16px;
    height: 100%;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

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

.contact-info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-info-label {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.contact-info-text {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.coverage-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.coverage-badge {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 2px solid #f0f0f0;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: #fafafa;
}

.map-placeholder {
    background: linear-gradient(135deg, #e8ffd8 0%, #fff9e6 100%);
    border-radius: 16px;
    padding: 80px 20px;
    text-align: center;
    border: 2px solid #7ed957;
}

.map-placeholder-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.map-placeholder-content p {
    font-size: 1.1rem;
    color: #666;
    margin: 0.25rem 0;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .navbar-nav {
        margin-top: 1rem;
    }
    
    .btn-cta {
        margin-top: 1rem;
    }
    
    .service-number {
        font-size: 3rem;
    }
    
    .service-main-title {
        font-size: 1.75rem;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-year {
        font-size: 1.5rem;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 1.5rem;
    }
}