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


body {
    font-family: "Segoe UI", Tahoma, sans-serif;
    background-color: #0b1120;
    color: #e5e7eb;
    line-height: 1.6;
}


section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px;
}


h1 {
    font-size: 28px;
    margin-bottom: 15px;
    border-left: 4px solid #3b82f6;
    padding-left: 10px;
    color: #f9fafb;
}


p {
    margin-bottom: 15px;
    color: #9ca3af;
}

ul {
    list-style: none;
}

li {
    background: #111827;
    margin: 10px 0;
    padding: 12px 15px;
    border-radius: 6px;
    transition: 0.3s;
}

li:hover {
    background: #1f2937;
    transform: translateY(-2px);
}


a {
    color: #60a5fa;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


.Contacto,
.redes,
.ubicacion {
    background: #020617;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}


address {
    font-style: normal;
    background: #111827;
    padding: 15px;
    border-radius: 6px;
}


.icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}


.icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #111827;
    color: white;
    font-size: 20px;
    transition: 0.3s;
    text-decoration: none;
}

.facebook:hover {
    background: #1877f2;
}

.instagram:hover {
    background: #e1306c;
}


.icon:hover {
    transform: translateY(-5px) scale(1.1);
}


.redes {
    display: grid;
    gap: 20px;
}

.btn-volver {
    display: block;
    width: fit-content;
    margin-left: 40px;
    margin-top: 40px;
     display: inline-block;
    margin-top: 40px;
    padding: 12px 25px;
    background-color: #34495e;
    color: #e4e7ea;
    text-decoration: none;
    border-left: 4px solid #5dade2;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;

}

.btn-volver:hover {
    background-color: #3d566e;
    padding-left:100px;
}

.mapa {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.mapa iframe {
    width: 100%;
    height: 300px;
    border: none;
}
@media (min-width: 768px) {
    .redes {
        grid-template-columns: 1fr 1fr;
    }

    .ubicacion {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 50px;
    }

    h1 {
        font-size: 32px;
    }
}