/* ===== VOZIOS - ESTILOS CENTRALIZADOS ===== */

/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #2c3e50;
    line-height: 1.7;
    background: #fafafa;
}

/* ===== NAVEGACIÓN ===== */
nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 3rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border-bottom: 1px solid #e8e8e8;
}

nav .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 80px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: #0ea5e9;
}

.lang-toggle {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    color: white;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.lang-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    color: white;
    padding: 180px 3rem 120px;
    text-align: center;
    margin-top: 100px;
    overflow: hidden;
    min-height: 600px;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-button {
    background: white;
    color: #1e40af;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* ===== SECCIONES COMUNES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 4rem;
    font-style: italic;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 120px 3rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.features .section-title {
    color: white;
    position: relative;
    z-index: 1;
}

.features .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(14, 165, 233, 0.3),
        0 0 0 1px rgba(14, 165, 233, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(14, 165, 233, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.feature-card:hover::before,
.feature-card:hover::after {
    opacity: 1;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
    filter: grayscale(100%) brightness(0) invert(1) drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
    transition: color 0.3s ease;
    text-align: center;
}

.feature-card:hover h3 {
    color: #38bdf8;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 80px 3rem;
    background: #f8fafc;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    text-align: center;
    padding: 1.5rem 1rem;
}

.step-number {
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.process-step h3 {
    margin-bottom: 0.8rem;
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 700;
}

.process-step p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial {
    padding: 100px 3rem;
    background: white;
    overflow: hidden;
    position: relative;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonial-carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    display: flex;
    gap: 2rem;
    padding: 0 1rem;
}

.testimonial-card {
    flex: 1;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 2px solid #e0f2fe;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(14, 165, 233, 0.15);
    border-color: #0ea5e9;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #1e293b;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e0f2fe;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.author-name {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 700;
}

.author-location {
    color: #64748b;
    font-size: 0.9rem;
}

.author-genre {
    color: #0ea5e9;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.listen-btn {
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    color: white;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
}

.listen-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 3rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dot.active {
    background: #0ea5e9;
    width: 30px;
    border-radius: 6px;
}

/* ===== FORM SECTION ===== */
.form-section {
    padding: 120px 3rem;
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
}

.form-intro {
    text-align: center;
    color: white;
    margin-bottom: 4rem;
}

.form-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.form-intro p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 4rem 4rem 3rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    color: #1e293b;
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    border-bottom: 2px solid #e0f2fe;
    padding-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.form-group {
    margin-bottom: 2rem;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1e293b;
    font-size: 1rem;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s;
    font-family: inherit;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

textarea {
    min-height: 90px;
    resize: vertical;
}

.choice-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.choice-group label {
    font-weight: 400;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.7rem 0.9rem;
    border-radius: 8px;
    transition: all 0.2s;
    border: 2px solid #e2e8f0;
    font-size: 0.95rem;
}

.choice-group label:hover {
    background: #f0f9ff;
    border-color: #bae6fd;
}

.choice-group input {
    margin-right: 1rem;
    width: 1.3em;
    height: 1.3em;
    cursor: pointer;
    accent-color: #0ea5e9;
}

.genre-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.genre-grid label {
    font-weight: 400;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    transition: all 0.2s;
    border: 2px solid #e2e8f0;
    font-size: 0.9rem;
}

.genre-grid label:hover {
    background: #f0f9ff;
    border-color: #bae6fd;
}

.genre-grid input {
    margin-right: 0.8rem;
    width: 1.2em;
    height: 1.2em;
    cursor: pointer;
    accent-color: #0ea5e9;
    flex-shrink: 0;
}

.genre-grid-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.genre-grid-form label {
    font-weight: 400;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    transition: all 0.2s;
    border: 2px solid #e2e8f0;
    font-size: 0.9rem;
}

.genre-grid-form label:hover {
    background: #f0f9ff;
    border-color: #bae6fd;
}

.genre-grid-form input {
    margin-right: 0.8rem;
    width: 1.2em;
    height: 1.2em;
    cursor: pointer;
    accent-color: #0ea5e9;
    flex-shrink: 0;
}

/* ===== PRICING SECTION ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #0ea5e9;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.2);
}

.pricing-card input[type="radio"] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 1.3em;
    height: 1.3em;
    accent-color: #0ea5e9;
}

.pricing-card.selected {
    background: linear-gradient(135deg, #dbeafe 0%, #bae6fd 100%);
    border-color: #0ea5e9;
    border-width: 3px;
}

.pricing-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 1rem;
}

.package-description {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-style: italic;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0 0 0;
}

.pricing-features li {
    padding: 0.4rem 0;
    color: #475569;
    font-size: 0.85rem;
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}

.pricing-features li:before {
    content: "✓";
    color: #0ea5e9;
    font-weight: 700;
    flex-shrink: 0;
}

.popular-badge {
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 2px solid #e0f2fe;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #64748b;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.progress-bar {
    height: 6px;
    background: #e0f2fe;
    border-radius: 3px;
    margin-bottom: 3rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1e40af 0%, #0ea5e9 100%);
    transition: width 0.4s ease;
}

/* ===== AUDIO MODAL ===== */
.audio-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.audio-modal.active {
    display: flex;
}

.audio-modal-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.audio-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #64748b;
    transition: color 0.3s;
}

.audio-modal-close:hover {
    color: #0ea5e9;
}

.audio-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.audio-modal-info {
    color: #64748b;
    margin-bottom: 2rem;
}

.audio-player {
    width: 100%;
    margin-top: 1rem;
}

audio {
    width: 100%;
    border-radius: 10px;
}

/* ===== FOOTER ===== */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 4rem 3rem;
    text-align: center;
}

.footer-logo {
    height: 60px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

footer p {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* ===== SECCIONES ESPECÍFICAS ===== */
.about-section {
    padding: 80px 3rem;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.memorial-moments {
    padding: 70px 3rem;
    background: white;
}

.memorial-moments .section-title {
    color: #1e293b;
    font-size: 2.2rem;
}

.memorial-moments .section-subtitle {
    color: #64748b;
    margin-bottom: 2rem;
}

.moments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.moment-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.moment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.moment-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.genres-section {
    padding: 70px 3rem;
    background: #f8fafc;
}

.genres-section .section-title {
    color: #1e293b;
    font-size: 2.2rem;
}

.genres-section .section-subtitle {
    color: #64748b;
    margin-bottom: 2rem;
}

.genres-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.genre-card {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
    text-align: center;
}

.genre-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.12);
    border-color: #0ea5e9;
}

.genre-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.genre-card h3 {
    font-size: 1rem;
    color: #1e293b;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.genre-card p {
    color: #64748b;
    font-size: 0.8rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* ===== PRICING PAGE SPECIFIC ===== */
.pricing-section {
    padding: 150px 3rem 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
}

.pricing-section .container {
    max-width: 1400px;
}

.pricing-section .section-title {
    font-size: 3rem;
    color: #1e293b;
}

.pricing-section .section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
}

.pricing-section .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-section .pricing-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
}

.pricing-section .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.2);
}

.pricing-section .pricing-card.featured {
    border: 3px solid #0ea5e9;
    transform: scale(1.05);
}

.pricing-section .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-name {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 3rem;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 1rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.75rem 0;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.package-features li:before {
    content: "✓";
    color: #0ea5e9;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.package-button {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.package-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4);
}

.package-button.featured {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .genres-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .moments-grid {
        grid-template-columns: 1fr;
    }

    .pricing-section .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }

    .form-container {
        padding: 2.5rem 2rem;
    }

    .navigation-buttons {
        flex-direction: column;
    }

    nav {
        padding: 1rem 1.5rem;
    }

    .logo-img {
        height: 50px;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .testimonial-slide {
        flex-direction: column;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .genres-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-section .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-section .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}