html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    padding-top: 72px;
}

.navbar-brand {
    letter-spacing: 1px;
    color: #0d3b66 !important;
}

.nav-link {
    font-weight: 500;
}

    .nav-link:hover {
        color: #0d6efd !important;
    }

.hero {
    min-height: 90vh;
}

.card {
    transition: transform 0.2s ease;
}

    .card:hover {
        transform: translateY(-5px);
    }

.bg-primary {
    background: linear-gradient(135deg, #0d3b66, #0d6efd) !important;
}

input.form-control {
    height: 45px;
}

button.btn-primary {
    height: 45px;
    font-weight: 600;
}


.services-container {
    padding: 20px;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.services-header h1 {
    margin: 0;
    font-size: 30px;
    font-weight: bold;
}

.services-header p {
    margin: 5px 0 0;
    color: #777;
}

.btn-create {
    background: #0d6efd;
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.btn-create:hover {
    background: #0b5ed7;
    color: white;
}

.services-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.services-table {
    width: 100%;
    border-collapse: collapse;
}

.services-table thead {
    background: #f5f5f5;
}

.services-table th,
.services-table td {
    padding: 16px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.service-image {
    width: 120px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-edit,
.btn-toggle,
.btn-delete {
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.btn-edit {
    background: #0d6efd;
    color: white;
}

.btn-edit:hover {
    background: #0b5ed7;
}

.btn-toggle {
    background: #ffc107;
    color: black;
}

.btn-toggle:hover {
    background: #e0a800;
}

.btn-delete {
    background: #dc3545;
    color: white;
}

.btn-delete:hover {
    background: #bb2d3b;
}

.events-section {
    background: #f8fafc;
}

.event-card {
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.25s ease;
}

    .event-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12) !important;
    }

    .event-card img {
        transition: all 0.3s ease;
    }

    .event-card:hover img {
        transform: scale(1.03);
    }

.event-description {
    font-size: 0.95rem;
    line-height: 1.6;
}

.clients-section {
    background: #ffffff;
}

.client-card {
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.25s ease;
}

    .client-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12) !important;
    }

.client-logo-wrapper {
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo {
    max-width: 180px;
    max-height: 85px;
    object-fit: contain;
}

.client-logo-placeholder {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b5f38, #198754);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    font-weight: 800;
}

.services-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.service-card {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
}

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
    }

.service-top-line {
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, #0b5f38, #198754, #44b678);
}

.service-card-body {
    padding: 32px 24px;
    text-align: center;
}

.service-icon-wrapper {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    border-radius: 20px;
    background: #eaf7f0;
    color: #198754;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 800;
}

    .service-icon-wrapper i {
        font-size: 32px;
    }

.service-image-icon {
    max-width: 46px;
    max-height: 46px;
    object-fit: contain;
}

.service-title {
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #111827;
    margin-bottom: 14px;
}

.service-description {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.service-content {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #edf2f7;
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.7;
}

    .service-content p:last-child {
        margin-bottom: 0;
    }


.about-hero {
    padding: 90px 0 70px;
    background: radial-gradient(circle at top left, rgba(25, 135, 84, 0.16), transparent 35%), linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.about-hero-title {
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 900;
    color: #111827;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: #198754;
    font-weight: 600;
    margin-bottom: 22px;
}

.about-hero-content {
    max-width: 980px;
    margin: 0 auto;
    color: #374151;
    font-size: 1.05rem;
    line-height: 1.9;
}

    .about-hero-content p:last-child {
        margin-bottom: 0;
    }

.about-section {
    background: #f8fafc;
}

.about-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
    overflow: hidden;
}

    .about-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #0b5f38, #198754, #44b678);
    }

    .about-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
    }

.about-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #eaf7f0;
    color: #198754;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    margin-bottom: 22px;
}

.about-card-title {
    font-size: 1.45rem;
    font-weight: 850;
    color: #111827;
    margin-bottom: 12px;
}

.about-card-subtitle {
    color: #198754;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-card-content {
    color: #4b5563;
    font-size: 0.98rem;
    line-height: 1.8;
}

    .about-card-content p:last-child {
        margin-bottom: 0;
    }

.about-values-card {
    padding: 36px;
}

    .about-values-card .about-card-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .about-values-card .about-card-title,
    .about-values-card .about-card-subtitle {
        text-align: center;
    }

.about-value-item {
    background: #f4fbf7;
    border: 1px solid #e2f3ea;
    border-radius: 16px;
    padding: 14px 16px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
    font-weight: 500;
    transition: all 0.25s ease;
}

    .about-value-item:hover {
        background: #eaf7f0;
        transform: translateY(-2px);
    }

.about-value-check {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: #198754;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
}

.contact-hero {
    padding: 90px 0 70px;
    background: radial-gradient(circle at top left, rgba(25, 135, 84, 0.16), transparent 35%), linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.contact-hero-title {
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 900;
    color: #111827;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.contact-hero-subtitle {
    color: #4b5563;
    font-size: 1.15rem;
    line-height: 1.8;
}

.contact-section {
    background: #f8fafc;
}

.contact-info-card,
.contact-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 36px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #eef2f7;
}

    .contact-info-item:last-of-type {
        border-bottom: none;
    }

.contact-info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 14px;
    background: #eaf7f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-info-item strong {
    display: block;
    color: #111827;
    margin-bottom: 4px;
}

.contact-info-item p {
    margin: 0;
    color: #6b7280;
}

.contact-control {
    border-radius: 14px;
    border: 1px solid #dbe3ea;
    padding: 12px 14px;
}

    .contact-control:focus {
        border-color: #198754;
        box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.15);
    }

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

    .whatsapp-float span {
        background: #ffffff;
        color: #222;
        padding: 10px 14px;
        border-radius: 6px;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        font-size: 14px;
    }

    .whatsapp-float i {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #25D366;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    }