.pt-wrapper {
    position: relative;
    width: 100%;
    min-height: 60vh;
    overflow: hidden;
    background-color: #222;
}
@media (min-width: 1200px) {
    .pt-wrapper { min-height: 65vh; }
}
@media (min-width: 1540px) {
    .pt-wrapper { min-height: 70vh; }
}
@media (max-width: 768px) {
    .pt-wrapper { min-height: 40vh; }
}

.pt-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pt-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1000ms ease-in-out;
    z-index: 1;
}

.pt-slide.active {
    opacity: 1;
    z-index: 2;
}

.pt-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Contenido / Título superpuesto */
.pt-overlay-content {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    padding: 0 15px;
    padding-bottom: 50px;
}

.pt-title {
    color: #ffffff;
    font-family: inherit;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    font-size: 2rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    transition: all 500ms ease-in-out;
    margin-bottom: 1rem;
    max-width: 1000px;
}

/* Tamaños de fuente responsivos */
@media (min-width: 640px) { .pt-title { font-size: 1.5rem; } }
@media (min-width: 768px) { .pt-title { font-size: 2.2rem; } }
@media (min-width: 1024px) { .pt-title { font-size: 2.8rem; } }

/* Iconos de redes sociales */
.social-icons {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 20;
    display: flex;
    gap: 15px;
}
.social-icons a {
    color: rgba(255,255,255,0.9);
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    transition: color 0.3s;
}
.social-icons a:hover {
    color: #fff;
}
