* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

header {
    background-color: #343a40;
    padding: 10px 20px;
    font-size: 1.5rem;
}

nav ul {
    display: flex;
    justify-content: space-around;
    list-style-type: none;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px;
    transition: transform 0.3s, background-color 0.3s;
    border-radius: 5px;
}

nav a:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.2);
}

@media (min-width: 600px) {
    nav ul {
        justify-content: flex-start;
    }

    nav ul li {
        margin-right: 20px;
    }
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

.promo-logo {
    text-align: center;
    padding: 20px;
    background-color: #fafafa;
    color: rgb(31, 29, 29);
}

.logo-logo {
    max-width: 29%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 20px;
    animation: fadeIn 1s ease-in;
}

.text-container-logo {
    animation: slideIn 1s ease-in;
}

.promo {
    text-align: center;
    padding: 20px;
    background-color: #343a40;
    color: white;
}

.logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in;
}

.text-container {
    animation: slideIn 1s ease-in;
}

h1 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: auto;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@media (min-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    
    p {
        font-size: 1.2rem;
    }
}


.mapa {
    display: flex;
    justify-content: center;
    padding: 0 10px;
    background-color:rgb(82, 80, 80);
}



.faq {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background-color: #c7cdd3;
    color: rgb(0, 0, 0);
    border-radius: 8px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 15px;
}

h3 {
    cursor: default;
    font-size: 1.5rem;
    padding: 10px;
    background-color: #99badb;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.respuesta {
    padding: 10px;
    font-size: 1.4rem;
    margin-top: 5px;
    background-color: #dee6ee;
    border-radius: 5px;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


.linksh1 {
    color:azure
}

.links-section {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-in;
}

.links-section h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #ffffff;
}

.links-list {
    list-style: none;
    padding: 0;
}

.links-list li {
    margin: 10px 0;
}

.links-list a {
    text-decoration: none;
    color: #007bff;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.links-list a:hover {
    color: #0056b3;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Mobile-first styles */
@media (min-width: 600px) {
    .links-section {
        padding: 30px;
    }

    .links-list a {
        font-size: 1.5em;
    }
}

@media (min-width: 900px) {
    .links-section {
        max-width: 800px;
        margin: auto;
    }
}

.links-section {
    background-image: url('mapaespanacerrajeros.jpg'); /* Cambia la ruta a tu imagen */
    background-size: cover; /* Hace que la imagen cubra todo el área */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    padding: 20px; /* Ajusta el padding según sea necesario */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-in;
    color: white; /* Cambia el color del texto para que contraste */
}

.call-button {
    position: fixed;
    bottom: 0;
    padding: 10px 10px;
    width: 100%;
    background-color: #24272b;
    color: rgb(255, 213, 2);
    font-size: 1.5rem;
    border: none;
    text-align: center;
    cursor: pointer;
    z-index: 1000;
    transition: background-color 0.3s ease;
}


@media (min-width: 768px) {
    .call-button {
      font-size: 1.5rem;
      padding: 1.25rem;
    }
}