.about-sns {
    position: relative;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.left-imagens {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: url('../content/destinos/portadadst.png') no-repeat center center;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.right-sectionns {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%);
    z-index: 1;
}

.content-wrapperns {
    position: relative;
    z-index: 3;
    width: 50%;
    margin-left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.titlens {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    font-weight: bold;
    letter-spacing: 3px;
}

/* Triángulos decorativos */
.triangle-top-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 80px 0 0 120px;
    border-color: transparent transparent transparent #03a53a;
    z-index: 2;
}

.triangle-top-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 100px 60px 0;
    border-color: #03a53a transparent transparent transparent;
    z-index: 2;
}

.triangle-bottom-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 70px 90px;
    border-color: transparent transparent #03a53a transparent;
    z-index: 2;
}

.triangle-bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 80px 0 0;
    border-color: transparent #03a53a transparent transparent;
    z-index: 2;
}

/* Triángulos adicionales más pequeños */
.small-triangle-1 {
    position: absolute;
    top: 40px;
    left: 150px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 35px 0 0;
    border-color: transparent rgba(255, 255, 255, 0.1) transparent transparent;
    z-index: 2;
}

.small-triangle-2 {
    position: absolute;
    bottom: 30px;
    right: 120px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 30px 40px;
    border-color: transparent transparent rgba(255, 255, 255, 0.1) transparent;
    z-index: 2;
}

/* Responsivo */
@media (max-width: 768px) {
    .about-sns {
        height: 180px;
    }

    .left-imagens,
    .right-sectionns {
        width: 100%;
    }

    .content-wrapperns {
        width: 100%;
        margin-left: 0;
    }

    .titlens {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .triangle-top-left {
        border-width: 60px 0 0 80px;
    }

    .triangle-top-right {
        border-width: 0 70px 40px 0;
    }

    .triangle-bottom-left {
        border-width: 0 0 50px 60px;
    }

    .triangle-bottom-right {
        border-width: 35px 60px 0 0;
    }
}

@media (max-width: 480px) {
    .about-sns {
        height: 150px;
    }

    .left-imagens,
    .right-sectionns {
        width: 100%;
    }

    .content-wrapperns {
        width: 100%;
        margin-left: 0;
    }

    .titlens {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
}

/* destinos seleccionar */

.container-ds {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.header-ds {
    background: linear-gradient(135deg, #ff4757, #ff3838);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.header-ds h1 {
    font-size: 24px;
    font-weight: bold;
}

.nav-arrows-ds {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}

.nav-arrows-ds::after {
    content: "▶";
    position: absolute;
    right: -40px;
    top: 0;
}

.main-content-ds {
    display: flex;
    min-height: 500px;
}

.sidebar-ds {
    background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%);
    width: 300px;
    padding: 0;
}

.city-button-ds {
    display: block;
    width: 100%;
    padding: 20px 30px;
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.city-button-ds:hover {
    background-color: #2c2c2c;
    padding-left: 40px;
}

.city-button-ds.active {
    background: linear-gradient(135deg, #03a53a, #f4e500);
    color: white;
}

.city-button-ds::before {
    content: "▶";
    margin-right: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.city-button-ds:hover::before,
.city-button-ds.active::before {
    opacity: 1;
}

.content-area-ds {
    flex: 1;
    display: flex;
    position: relative;
}

/* ESTILOS PARA MOSTRAR/OCULTAR CONTENEDORES DE CIUDADES */
.map-info-container {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    width: 100%;
    flex-direction: row;
}

.map-info-container.active {
    display: flex;
    opacity: 1;
}

.map-section-ds {
    flex: 1;
    background-color: #F1F3F5;
    position: relative;
    min-height: 500px;
}

.map-placeholder-ds {
    width: 85%;
    height: 400px;
    background: linear-gradient(135deg, #74b9ff, #84bae3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    margin: 20px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

/* Estilos para los iframes de mapas */
.map-placeholder-ds iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.map-placeholder-ds::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="8" fill="red"/></svg>') center/30px no-repeat;
    opacity: 0.8;
}

.location-marker-ds {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background-color: #03a53a;
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.location-marker-ds::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
}

.info-panel-ds {
    width: 300px;
    background: white;
    padding: 30px;
    border-left: 1px solid #ecf0f1;
    font-family: 'Montserrat', sans-serif;
}

.city-title-ds {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.info-section-ds {
    margin-bottom: 20px;
}

.info-label-ds {
    color: #03a53a;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
}

.info-content-ds {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.phone-number-ds {
    color: #333;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-number-ds i {
    color: #03a53a;
}

.collapse-header-ds {
    background-color: #f8f9fa;
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.collapse-header-ds:hover {
    background-color: #e9ecef;
}

.collapse-header-ds::after {
    content: "▼";
    transition: transform 0.3s ease;
    font-size: 12px;
}

.collapse-header-ds.collapsed::after {
    transform: rotate(-90deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content-ds {
        flex-direction: column;
    }

    .sidebar-ds {
        width: 100%;
        display: flex;
        overflow-x: auto;
        padding: 10px 0;
    }

    .city-button-ds {
        white-space: nowrap;
        min-width: 120px;
        flex-shrink: 0;
    }

    .content-area-ds {
        flex-direction: column;
    }

    .map-info-container {
        flex-direction: column;
    }

    .map-section-ds {
        min-height: 300px;
    }

    .map-placeholder-ds {
        width: 95%;
        height: 250px;
        margin: 10px;
    }

    .info-panel-ds {
        width: 100%;
        border-left: none;
        border-top: 1px solid #ecf0f1;
    }

    .city-title-ds {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .sidebar-ds {
        padding: 5px 0;
    }

    .city-button-ds {
        padding: 15px 20px;
        font-size: 14px;
        min-width: 100px;
    }

    .map-placeholder-ds {
        height: 200px;
        margin: 5px;
    }

    .info-panel-ds {
        padding: 20px;
    }

    .city-title-ds {
        font-size: 20px;
    }
}