body {
    font-family: 'Segoe UI', sans-serif;
}

header {
    background-color: #fff;
    text-align: center;
    padding: 20px 0;
}

.nav-btn {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
}

    .nav-btn:hover {
        box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
        color: red; 
    }

.map-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: auto;
}

    .map-container img.map-base {
        width: 100%;
        height: auto;
        display: block;
    }

.map-overlay {
    position: absolute;
    width: 40px; /* You can adjust size as needed */
    height: 40px;
}

/* Example positions (adjust these) */
.img-stand-140 {
    top: 12%; /* adjust this */
    left: 40%; /* adjust this */
}

.img-stand-90 {
    top: 55%;
    left: 45%;
}

.map-overlay img {
    width: 100%;
    height: auto;
}

/* 7. Sección de contacto */
.contact-section {
    padding: 40px 0;
    text-align: center;
}

    .contact-section .logo-center {
        display: block;
        margin: 0 auto 20px;
        max-width: 150px;
        height: auto;
    }

    .contact-section h2 {
        margin-bottom: 16px;
        font-size: 24px;
        color: #333;
    }

    .contact-section p.info {
        margin: 8px 0;
        font-size: 16px;
        color: #555;
    }

.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 20px auto 0;
    text-align: left;
}

    .contact-form label {
        margin-top: 12px;
        font-weight: bold;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 10px;
        margin-top: 4px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-family: inherit;
        font-size: 16px;
    }

    .contact-form textarea {
        resize: vertical;
        min-height: 120px;
    }

    .contact-form button {
        margin-top: 16px;
        padding: 12px;
        background-color: #0d6efd;
        color: #fff;
        border: none;
        border-radius: 4px;
        font-size: 16px;
        cursor: pointer;
        align-self: center;
        min-width: 120px;
    }

        .contact-form button:hover {
            background-color: #0b5ed7;
        }

@media (max-width: 600px) {

    .contact-form {
        padding: 0 10px;
    }
}

.card {
    border-radius: 15px;
}

.card-header {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.form-control, .form-select {
    border-radius: 10px;
}

.btn-success {
    border-radius: 10px;
    font-weight: bold;
    background-color: steelblue;
}

.form-label {
    font-weight: 500;
}

.stand-number {
    color: #dc3545; /* rojo Bootstrap */
    font-weight: 600;
}

.company-name {
    color: #000000; /* negro */
}

.list-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
}

.logo-container img {
    max-height: 60px;
    object-fit: contain;
    margin: 10px;
}

@media (max-width: 576px) {
    .logo-container img {
        max-height: 60px; /* Fijo para que no crezcan */
        width: auto;
    }
}

.section-title {
    background-color: #d32f2f;
    color: white;
    padding: 10px 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}