/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #e60012;
    --secondary-red: #cc0010;
    --gold: #ffd700;
    --dark-blue: #1a237e;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #333;
    --white: #ffffff;
    --black: #000000;
    --orange: #ff6600;
    --green: #00b894;
    --shadow: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 12px rgba(0,0,0,0.15);
}

body {
    font-family: 'ArmWrestler', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--light-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    border-bottom: 1px solid var(--medium-gray);
    padding: 28px 0 28px 0;
    min-height: 90px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-section .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-red);
    margin: 0;
}

.logo-text span {
    font-size: 0.9rem;
    color: var(--black);
    font-weight: 300;
}

.search-section {
    flex: 1;
    max-width: 600px;
}

.search-container {
    display: flex;
    border: 2px solid var(--primary-red);
    border-radius: 6px;
    overflow: hidden;
    background: var(--white);
    height: 64px;
    align-items: center;
}

.category-select {
    padding: 18px 20px;
    border: none;
    background: var(--light-gray);
    color: var(--dark-gray);
    font-size: 1.1rem;
    min-width: 170px;
}

.search-input {
    flex: 1;
    padding: 18px 20px;
    border: none;
    font-size: 1.15rem;
    outline: none;
}

.search-btn {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 18px 28px;
    cursor: pointer;
    font-size: 1.25rem;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background: var(--secondary-red);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--dark-gray);
}

.language-selector select {
    border: none;
    background: none;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.header-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--dark-gray);
    font-size: 0.9rem;
    transition: color 0.3s;
    position: relative;
}

.header-link:hover {
    color: var(--primary-red);
}

.header-link i {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation */
.main-nav {
    background: var(--dark-gray);
    padding: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    flex: 1;
}

.nav-link {
    display: block;
    padding: 15px 20px;
    color: var(--white);
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s;
    font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-red);
}

.nav-link i {
    margin-right: 8px;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.banner-slide.active {
    opacity: 1;
}

.banner-content {
    color: var(--white);
    max-width: 600px;
    text-align: center;
}

.banner-logo {
    margin-bottom: 20px;
    margin-top: 40px;
}

.banner-logo-img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
}

.banner-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.banner-content p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.cta-button:hover {
    background: var(--secondary-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.banner-content .cta-button {
    margin-top: 0px;
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background: var(--white);
}

/* Main Content */
.main-content {
    padding: 30px 0;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: var(--primary-red);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Trust Section */
.trust-section {
    background: var(--white);
    padding: 40px 0;
    margin-bottom: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.trust-logo {
    width: 130px;
    height: 130px;
    object-fit: contain;
    margin-bottom: 20px;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-top: 5px;
}

/* Categories Section */
.categories-section {
    margin-bottom: 50px;
}

.categories-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark-gray);
    text-align: center;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.category-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.category-info {
    padding: 20px;
}

.category-info h3 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.category-info p {
    color: #666;
    margin-bottom: 10px;
}

.category-price {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, #fff, #fffbf0);
}

.pricing-card.vip {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, #fff, #fff5f5);
}

.plan-badge {
    position: absolute;
    top: 0px;
    right: 15px;
    background: var(--gold);
    color: var(--dark-gray);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.pricing-card.vip .plan-badge {
    background: var(--primary-red);
    color: var(--white);
}

.plan-header {
    padding: 50px 20px 20px 20px;
    text-align: center;
}

.plan-header h3 {
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.price span {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

.duration {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

.plan-image {
    height: 200px;
    overflow: hidden;
}

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.pricing-card:hover .plan-image img {
    transform: scale(1.05);
}

.plan-features {
    list-style: none;
    padding: 20px;
}

.plan-features li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.plan-features i {
    color: var(--primary-red);
    margin-top: 2px;
    min-width: 16px;
}

.btn-reserve {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 15px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    align-self: flex-end;
}

/* Catalog Styles */
.search-bar {
    display: flex;
    max-width: 600px;
    margin: 0 auto 30px;
    border: 2px solid var(--primary-red);
    border-radius: 6px;
    overflow: hidden;
}

.search-bar input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    font-size: 1rem;
    outline: none;
}

.search-bar button {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    cursor: pointer;
}

.catalog-categories {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 20px;
    border: 2px solid var(--primary-red);
    background: var(--white);
    color: var(--primary-red);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary-red);
    color: var(--white);
}

.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.song-card {
    background: var(--white);
    border-radius: 12px;
    padding: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.song-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.song-card img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.song-info {
    flex: 1;
}

.song-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.song-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.genre {
    background: var(--light-gray);
    color: var(--dark-gray);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.add-to-queue {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: var(--primary-red);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s;
}

.add-to-queue:hover {
    background: var(--secondary-red);
    transform: scale(1.1);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

/* Ajustes para la imagen del grupo en el sofá */
.gallery-item:first-child img {
    transform: rotate(-90deg) scale(0.9); /* Reducido de 1.5 a 1.2 */
    object-position: center center;
}

.gallery-item:first-child {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ajustes para las imágenes rotadas en la galería */
.gallery-item:first-child img,  /* Grupo en el sofá */
.gallery-item:nth-child(2) img {  /* Cantante con sudadera gris */
    transform: rotate(-90deg) scale(1.2);
    object-position: center center;
}

.gallery-item:first-child,
.gallery-item:nth-child(2) {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ajuste específico para la imagen del dúo cantando (sexta imagen) */
.gallery-item:nth-child(6) img {
    object-position: center 10%; /* Cambiado de 20% a 10% para mover la imagen más hacia abajo */
}

.gallery-item:nth-child(6) {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ajuste específico para la imagen del selfie grupal (quinta imagen) */
.gallery-item:nth-child(5) img {
    object-position: center 20%; /* Mueve la imagen hacia abajo */
}

.gallery-item:nth-child(5) {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin: 2rem 0;
    color: #333;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
        padding: 1rem;
    }

    .gallery-item {
        height: 250px;
    }
}

/* Support Section */
.support-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.faq-item {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
}

.faq-item h4 {
    color: var(--primary-red);
    margin-bottom: 10px;
    cursor: pointer;
}

.faq-item p {
    color: #666;
    display: none;
}

.contact-info {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    height: fit-content;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--primary-red);
    width: 20px;
}

/* Footer */
.main-footer {
    background: var(--dark-gray);
    color: var(--white);
    margin-top: 50px;
}

.footer-content {
    padding: 40px 0 20px;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-red);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary-red);
    transform: translateY(-2px);
}

.newsletter-form {
    display: flex;
    margin-top: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    padding: 10px 15px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background: var(--secondary-red);
}

.footer-bottom {
    border-top: 1px solid #555;
}