.locations-section {
    padding: 3rem;
    background: #ffffff;
    font-family: sans-serif;
}

.locations-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

/* GRID */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    flex: 1;

    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.6s ease;
}

.locations-grid:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.grid-item {
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.6s ease;
}

.grid-item:hover img {
    transform: scale(1.08);
}

/* TEXTO */
.locations-content {
    flex: 1;
    max-width: 450px;
    opacity: 0;
    transform: translateY(40px);
}

/* línea roja */
.line {
    width: 40px;
    height: 4px;
    background: #e21d1d;
    margin-bottom: 1.5rem;
}

/* títulos */
.locations-content h2 {
    font-size: 2.3rem;
    line-height: 1;
    margin-bottom: 1rem;
    color: #0a0f19;
}

/* párrafo */
.locations-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* lista */
.locations-content ul {
    margin-bottom: 2rem;
    padding-left: 1rem;
}

.locations-content li {
    margin-bottom: 0.6rem;
}

.locations-content a {
    color: #0a0f19;
    text-decoration: underline;
    transition: color 0.3s;
}

.locations-content a:hover {
    color: #e21d1d;
}

/* botón */
.cta {
    display: inline-block;
    background: #2d4f95;
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(226, 29, 29, 0.3);
}

/* animación entrada */
.locations-content.active {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

/* responsive */
@media (max-width: 768px) {
    .locations-container {
        flex-direction: column;
        text-align: center;
    }

    .locations-grid {
        transform: none;
    }
}