*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/* Hero Section - Same as Tattoos Page */
.hero {
    height: 360px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: 
    linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.8) 0%,
        rgba(45, 45, 45, 0.6) 50%,
        rgba(26, 26, 26, 0.8) 100%
      ),
        url('../assets/img/colagehero2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    margin: 0 auto;
    width: 100%;
}

.hero .hero-content-all {
    width: 100%;
    height:auto;
    text-align: center;
    color: var(--nav-text);
    z-index: 2;
    position: relative;
    margin-top: 100px;
}

.space {
    letter-spacing: -1px;
}

.size-h1 {
    font-size: 4rem;
}

.hero-content-all p {
    font-family: 'Oswald', sans-serif;
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 100;
    max-width: 500px;
    margin: 0 auto;
}

/* Responsive para hero section */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
        background-attachment: scroll;
    }
    
    .hero .hero-content-all h1 {
        font-size: 3rem;
    }
    
    .hero .hero-content-all p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 50vh;
    }
    
    .hero .hero-content-all h1 {
        font-size: 2.5rem;
    }
    
    .hero .hero-content-all p {
        font-size: 0.9rem;
    }
}

.services-section {
    background: var(--light-color);
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item h3{
    font-size: 1.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    letter-spacing: -1px;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.service-item img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.services-grid{
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
    padding: 40px 15px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Responsive para tablets */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
        padding: 30px 15px;
    }
    .studio-img-content h2{
        padding-top: 80px;
    }
    .btn-up-studio{
        margin-bottom: 50px;
    }
}
    

/* Responsive para móviles */
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 20px 15px;
    }
}

.service-item-content{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-item-content h3{
    font-size: 2rem;
}

/* Imagen Estudio */
.studio-img {
    width: 100%;
    height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.588), rgba(0, 0, 0, 0.5)), url(../assets/img/entrada.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    /* filter: grayscale(70%); */
}

.studio-img-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.studio-img-content h2 {
    font-size: 5rem;
    font-family: 'Oswald', sans-serif;
    color: var(--light-color);
    margin-top: 20px;
    text-align: center;
}

.studio-img-content p {
    font-size: 1.5rem;
    font-family: 'Oswald', sans-serif;
    color: var(--light-color);
    margin-top: 20px;
    text-align: center;
}

.studio-img-content .cta-button {
    margin-top: 80px;

}

.video-container-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    position: relative;
    z-index: 10;
}

.video-link-estudio {
    margin-top: 20px;
    position: relative;
    z-index: 10;
    display: inline-block;
}

.video-link-estudio .play-icon {
    margin-top: 20px;
    width: 80px;
    height: 80px;
    background-color: rgba(239, 239, 239, 0.127);
    border: 3px solid var(--light-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    z-index: 5;
    opacity: 0.9;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.video-link-estudio:hover .play-icon {
    background-color: var(--primary-color);
    opacity: 1;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.play-icon i {
    font-size: 30px;
}

/* tienda */
.store-section {
    padding-bottom:0;
}

.store-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.store-text {
    text-align: start;
    max-width: 600px;
}

.store-text h2 {
    font-size: 2rem;
    font-family: 'Oswald', sans-serif;
    color:var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 400;
}

.store-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color:var(--dark-color);
}



/* Slider de Camisetas - Copiado exacto del index */


.tshirt-slider-container {
    margin-top: 0;
    background:var(--light-color);
    padding: 80px 0px;
}

.tshirtSwiper {
    width: 100%;
    height: auto;
    position: relative;
    max-width: 1400px;
}

.tshirt-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin: 30px auto;
    width: 100%;
}

.tshirt-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tshirt-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-bottom: 20px;
    background: white;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.tshirt-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tshirt-product:hover .tshirt-image img {
    transform: scale(1.05);
}

.tshirt-info {
    text-align: center;
    width: 100%;
}

.tshirt-info h4 {
    font-size: 20px;
    font-family: 'Oswald', sans-serif;
    color: var(--dark-color);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.product-type {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 20px;
}

.cta-button-dark {
    color: var(--dark-color);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button-dark:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Navegación del slider */
.tshirtSwiper .swiper-button-next,
.tshirtSwiper .swiper-button-prev {
    color: #d4af37;
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
}

.tshirtSwiper .swiper-button-next:hover,
.tshirtSwiper .swiper-button-prev:hover {
    background: white;
    transform: scale(1.1);
}

.tshirtSwiper .swiper-button-next::after,
.tshirtSwiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

/* Paginación del slider */
.tshirtSwiper .swiper-pagination-bullet {
    background: #d4af37;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.tshirtSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #d4af37;
}

/* Piercings y accesorios */
.piercings-section{
    background: var(--secondary-color);
    margin-top: -100px;
}

.piercings-content-1{
    margin-top: 100px;
} 

.piercings-content-3{
    margin-top: 100px;
}


.piercings-content{
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.piercings-text {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    box-sizing: border-box;
    max-width: 500px;
    margin: 0 auto;
}

.piercings-text h2{
    font-size: 2rem;
    font-family: 'Oswald', sans-serif;
    color: var(--light-color);
    margin-bottom: 20px;
    font-weight: 300;
    text-align: center;
}

.piercings-text p{
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--light-color);
    text-align: center;
}

.piercings-image{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../assets/img/accesorios.avif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter:contrast(0.8) brightness(0.7)sepia(0.2);
}
.piercings-image-card{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.249);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7)sepia(0.2);
}

.piercings-image-card img{
    width: 95%;
    height: auto;
    border-radius: 10px;
    max-height: 100%;
    object-fit: contain;
}

/* Responsive para la tarjeta de regalo y no se desborde en pantallas grandes */
@media (min-width: 1400px) {
    .piercings-image-card img {
        max-height: 500px; 
    }
}

.piercings-separator{
    width: 200px;
    height: 3px;
    background: var(--primary-color);
    margin-bottom: 20px;
}

/* Podcast */
.podcast-section-title{
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
}

.podcast-section-title h2{
    width: 100%;
    font-size: 5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 100;
    letter-spacing: -5px;
    color: var(--light-color);
    text-transform: uppercase;
    line-height: 1.1;
    max-width: 600px;
    text-shadow: none;
    align-items: start;
}

.podcast-section p{
    max-width: 700px;
}

.podcast-separator{
    width: 200px;
    height: 3px;
    background: var(--primary-color);
    margin-bottom: 20px;
    margin-top: 20px;
}

/* Grid de Podcast */
.podcast-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.podcast-episode {
    background: #20232B;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.podcast-episode a{
    text-decoration: none;
}

.podcast-episode:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.episode-thumbnail {
    width: 100%;
    height: 200px;
    background-image:url(../assets/img/podcast/podcast7.avif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter:brightness(0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}
.episode-thumbnail-1 {
    width: 100%;
    height: 200px;
    background-image:url(../assets/img/podcast/podcast6.avif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter:brightness(0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}
.episode-thumbnail-2 {
    width: 100%;
    height: 200px;
    background-image:url(../assets/img/podcast/podcast8.avif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter:brightness(0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}
.episode-thumbnail-3 {
    width: 100%;
    height: 200px;
    background-image:url(../assets/img/podcast/podcast1.avif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter:brightness(0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}
.episode-thumbnail-4 {
    width: 100%;
    height: 200px;
    background-image:url(../assets/img/podcast/podcast2.avif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}
.episode-thumbnail-5 {
    width: 100%;
    height: 200px;
    background-image:url(../assets/img/podcast/podcast10.avif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter:brightness(0.8);
    display: flex;
    filter:brightness(0.8);
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}
.episode-thumbnail-6 {
    width: 100%;
    height: 200px;
    background-image:url(../assets/img/podcast/podcast3.avif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter:brightness(0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}
.episode-thumbnail-7 {
    width: 100%;
    height: 200px;
    background-image:url(../assets/img/podcast/podcast1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter:brightness(0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}
.episode-thumbnail-8 {
    width: 100%;
    height: 200px;
    background-image:url(../assets/img/podcast/podcast11.avif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter:brightness(0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.play-button {
    width: 60px;
    height: 40px;
    background: #FF0000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.77);
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button i {
    color: white;
    font-size: 20px;
    margin-left: 3px;
}

.episode-info {
    padding: 20px;
    background: #20232B;
}

.episode-info h3 {
    color: white;
    font-size: 1.1rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    margin: 0;
    line-height: 1.3;
}


/* Responsive para el slider */
@media (max-width: 768px) {


    .hero {
        height: 50vh;
        background-attachment: scroll;
    }
    
    .hero .hero-content-all {
        font-size: 2rem;
        margin-top: 50px;
    }
    
    .hero .hero-content-all p {
        margin-top: 5px;
        font-size: 1.5rem;
        max-width: 300px;
        font-weight: 100;
    }
    .store-text h2 {
        font-size: 2rem;
    }

    .tshirt-product {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: white;
        padding: 5px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
        max-width: none;
        margin: 0 auto;
        max-width: 90%;
    }
    
    .tshirt-slider-container {
        padding: 40px 0px;
    }
    
    .tshirt-image {
        height: 400px;
    
    }
    
    
    .tshirt-info {
        padding-bottom: 20px;
    }
    
    .tshirt-info h4 {
        font-size: 25px;
    }
    
    .price {
        font-size: 20px;
    }
    
    .tshirtSwiper .swiper-button-next,
    .tshirtSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .tshirtSwiper .swiper-button-next::after,
    .tshirtSwiper .swiper-button-prev::after {
        font-size: 16px;
    }
    
    /* Responsive para piercings */
    .piercings-content-1 {
        margin-top: 50px;
    }

    
    .piercings-content {
        flex-direction: column !important;
        gap: 20px;
        height: auto;
    }
    
    .piercings-text {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 20px;
    }
    
    .piercings-text h2 {
        text-align: center;
        font-size: 1.8rem;
    }
    
    .piercings-text p {
        text-align: center;
        font-size: 1rem;
    }
    
    .piercings-image {
        width: 100%;
        height: 300px;
    }
    
    .piercings-image-card {
        width: 100%;
        height: 300px;
    }
    
    .piercings-separator {
        width: 150px;
        margin: 0 auto 20px auto;
    }
    
    /* Estilos específicos para cada sección - deben ir al final */
    .piercings-content-1{
        flex-direction: column !important;
        margin-top: 80px;
    }
    
    .piercings-content-2{
        flex-direction: column-reverse !important;
    }
    
    /* Responsive para podcast grid */
    .podcast-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .episode-thumbnail {
        height: 180px;
    }
    
    .play-button {
        width: 50px;
        height: 35px;
    }
    
    .play-button i {
        font-size: 16px;
    }
    
    .episode-info {
        padding: 15px;
    }
    
    .episode-info h3 {
        font-size: 1rem;
    }
}


