/* ============================================
   paquetes.css — Estilos específicos de paquetes.html
   Requiere: shared.css
   ============================================ */

body {
    background-color: var(--dark);
    font-family: 'Inter', sans-serif;
}

a:hover * {
    color: #f3d05d;
}

/* ============ HEADER ============ */
header {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    margin-left: 100px;
    margin-right: 100px;
    z-index: 10;
    padding: 20px 60px;
    transition: all 0.3s ease;
}

header:hover {
    scale: 1.1;
}

#nav-container {
    display: flex;
    justify-self: center;
    margin-top: 40px;
}

#logo {
    display: flex;
    justify-self: center;
    align-items: center;
    margin-right: 40px;
}

#logo img {
    height: 80px;
    width: auto;
}

#logo h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    margin: 0;
}

#nav-bar {
    display: grid;
    align-items: center;
    justify-content: center;
}

#nav-bar ul {
    display: flex;
    gap: 40px;
    font-family: "Bebas Neue", sans-serif;
}

#nav-bar ul li {
    font-family: "Bebas Neue", sans-serif;
    font-size: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
}

#nav-bar ul li:hover {
    color: var(--gold-alt);
}

/* ============ SECCIÓN PLANES ============ */
.planes-section {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 80px;
    padding-right: 80px;
    padding-top: 50px;
}

.planes-header {
    text-align: center;
    margin-bottom: 60px;
}

.planes-header h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 80px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.planes-header h1 span {
    color: var(--gold-alt);
}

.planes-header p {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    color: var(--text-soft);
    max-width: 600px;
    margin: 0 auto;
}

.pack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pack-card {
    background: rgba(20, 20, 20, 0.9);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
    border: 1px solid rgba(199, 174, 89, 0.2);
    position: relative;
    overflow: hidden;
}

.pack-card:hover {
    transform: translateY(-8px);
    border-color: rgba(199, 174, 89, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pack-card.featured {
    border: 1px solid var(--gold-alt);
    box-shadow: 0 0 20px rgba(199, 174, 89, 0.1);
}

.pack-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-alt);
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    font-family: "Inter", sans-serif;
}

.pack-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 32px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.pack-sub {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: var(--gold-alt);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.pack-price {
    font-family: "Bebas Neue", sans-serif;
    font-size: 48px;
    color: var(--gold-alt);
    margin: 20px 0;
}

.pack-price span {
    font-size: 20px;
    color: #888;
}

.pack-description {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-soft);
    margin-bottom: 24px;
    border-left: 3px solid var(--gold-alt);
    padding-left: 16px;
}

.pack-cta {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--gold-alt);
    border-radius: 50px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: var(--gold-alt);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.pack-cta:hover {
    background: var(--gold-alt);
    color: var(--dark);
}

.pack-features-title {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin: 20px 0 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pack-features {
    list-style: none;
    padding: 0;
}

.pack-features li {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    padding: 6px 0;
    color: #bbbbbb;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pack-features li::before {
    content: "✓";
    color: var(--gold-alt);
    font-weight: bold;
}

.pack-ini {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: #666;
    font-style: italic;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.extras {
    display: grid;
    justify: center;
    align-items: center;
    margin: 8px;
    margin-top: 6px;
    border: 1px solid #53400e;
    background-color: #211d14;
}

.extras h4 {
    margin: 2px;
    font-family: 'Bebas Neue', sans-serif;
    color: #a08130;
    padding: 4px;
}

.extras p {
    margin: 2px;
    font-size: 10px;
    padding: 4px;
    font-family: "Inter", sans-serif;
}

/* ============ SECCIÓN SERVICIOS ============ */
.services-section {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 80px;
    padding-right: 80px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 80px;
    letter-spacing: 3px;
    margin-bottom: 16px;
    color: white;
}

.services-header h2 span {
    color: var(--gold-alt);
}

.services-header p {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    color: var(--text-soft);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(20, 20, 20, 0.9);
    border-radius: 24px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(199, 174, 89, 0.15);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(199, 174, 89, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-icon {
    font-size: 48px;
    background: linear-gradient(135deg, var(--gold-alt) 0%, #a08130 100%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 40px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(199, 174, 89, 0.3);
}

.service-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    margin: 20px 0 15px;
    color: white;
}

.service-line {
    width: 50px;
    height: 2px;
    background: var(--gold-alt);
    margin: 0 auto 20px;
    transition: width 0.3s ease;
}

.service-card:hover .service-line {
    width: 80px;
}

.service-description {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-soft);
    margin-bottom: 20px;
    text-align: left;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.feature-badge {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 8px 16px;
    background: rgba(199, 174, 89, 0.1);
    border: 1px solid rgba(199, 174, 89, 0.3);
    border-radius: 50px;
    color: var(--gold-alt);
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.service-card:hover .feature-badge {
    background: rgba(199, 174, 89, 0.2);
    border-color: var(--gold-alt);
}

/* ============ SECCIÓN COMPARATIVA ============ */
.comparison-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
}

.comparison-header {
    text-align: center;
    margin-bottom: 60px;
}

.comparison-header h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 60px;
    letter-spacing: 2px;
}

.comparison-header h2 span {
    color: var(--gold-alt);
}

.comparison-header p {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    color: var(--text-soft);
}

.comparison-table {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(199, 174, 89, 0.2);
}

.table-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-row.header {
    background: rgba(199, 174, 89, 0.1);
    border-bottom: 1px solid rgba(199, 174, 89, 0.3);
}

.table-cell {
    padding: 20px 24px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: var(--text-soft);
}

.table-row.header .table-cell {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

.table-cell:first-child { font-weight: 600; color: white; }
.table-cell:not(:first-child) { text-align: center; }

.check-yes { color: var(--gold-alt); font-size: 18px; font-weight: bold; }
.check-no { color: #444; font-size: 18px; }
.benefit-highlight { color: var(--gold-alt); font-weight: 700; }

/* ============ ANTES DE GRABAR ============ */
.before-recording {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
    background: linear-gradient(135deg, rgba(199, 174, 89, 0.05) 0%, transparent 100%);
    border-radius: 40px;
}

.before-header {
    text-align: center;
    margin-bottom: 50px;
}

.before-header h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 60px;
    letter-spacing: 2px;
}

.before-header h2 span {
    color: var(--gold-alt);
}

.before-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.before-card {
    background: rgba(20, 20, 20, 0.7);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(199, 174, 89, 0.15);
    transition: all 0.3s ease;
}

.before-card:hover {
    transform: translateY(-5px);
    border-color: rgba(199, 174, 89, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.before-card-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px;
    color: var(--gold-alt);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.before-card-text {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-soft);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .services-header h2 { font-size: 60px; }
}

@media (max-width: 768px) {
    header { 
        padding: 16px 20px; 
        margin-left: 20px;
        margin-right: 20px;
    }
    
    #nav-container { 
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        margin-top: 20px;
    }
    
    #logo { 
        margin-right: 0; 
    }
    
    #logo img { 
        height: 50px;
    }
    
    #logo h1 { 
        font-size: 20px;
    }
    
    #nav-bar ul { 
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    #nav-bar ul li {
        font-size: 14px;
    }

    .planes-section { 
        padding: 20px 20px 60px; 
    }
    
    .planes-header h1 { 
        font-size: 48px; 
    }
    
    .pack-grid { 
        grid-template-columns: 1fr; 
    }

    .services-section { 
        padding: 50px 20px; 
    }
    
    .services-header h2 { 
        font-size: 48px; 
    }
    
    .services-header p { 
        font-size: 14px; 
    }
    
    .services-grid { 
        grid-template-columns: 1fr; 
    }
    
    .service-card { 
        padding: 30px 20px; 
    }

    .comparison-section,
    .before-recording { 
        padding: 40px 20px; 
    }
    
    .comparison-header h2,
    .before-header h2 { 
        font-size: 40px; 
    }
    
    .table-cell { 
        padding: 12px 16px; 
        font-size: 11px; 
    }
    
    .table-row { 
        grid-template-columns: 2fr 1fr 1fr; 
    }
    
    .before-grid { 
        grid-template-columns: 1fr; 
    }
}

@media (max-width: 480px) {
    #nav-container {
        flex-direction: column;
        align-items: center;
    }
    
    #logo {
        justify-content: center;
    }
    
    #nav-bar ul {
        justify-content: center;
    }
}