/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Premium Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(161, 128, 73, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(161, 128, 73, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo img {
    filter: drop-shadow(0 4px 8px rgba(161, 128, 73, 0.2));
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.btn-header {
    background: linear-gradient(135deg, #a18049 0%, #c9a876 50%, #a18049 100%);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(161, 128, 73, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-header:hover::before {
    left: 100%;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(161, 128, 73, 0.4);
}

/* Premium Hero Section */
.hero {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #a18049 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(161, 128, 73, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 70rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(161, 128, 73, 0.1) 0%, rgba(201, 168, 118, 0.15) 100%);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 0;
    color: #a18049;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(161, 128, 73, 0.2);
    box-shadow: 0 4px 15px rgba(161, 128, 73, 0.1);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.hero-title {
    font-size: 3.3rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.module-img-tecnica {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.module-img-material {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.highlight {
    background: linear-gradient(135deg, #a18049 0%, #c9a876 50%, #d4b887 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-features {
    display: flex;
   /* flex-direction: column;
    align-items: center;*/
    gap: 1.5rem;
    margin-bottom: 0;
    margin-top:3.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4a4a4a;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(161, 128, 73, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(161, 128, 73, 0.15);
}

.hero-description {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn-primary {
    background: linear-gradient(135deg, #a18049 0%, #c9a876 50%, #a18049 100%);
    color: white;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(161, 128, 73, 0.3);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(161, 128, 73, 0.4);
}

.hero-social-proof {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

/* Premium Benefits Section */
.benefits {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 80%, rgba(161, 128, 73, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.benefit-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(161, 128, 73, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #a18049 0%, #c9a876 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(161, 128, 73, 0.15);
}

.benefit-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    position: relative;
}

.benefit-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #a18049, #c9a876, #d4b887);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover .benefit-icon::after {
    opacity: 1;
}

.gradient-1 {
    background: linear-gradient(135deg, #a18049 0%, #c9a876 100%);
}

.gradient-2 {
    background: linear-gradient(135deg, #c9a876 0%, #d4b887 100%);
}

.gradient-3 {
    background: linear-gradient(135deg, #d4b887 0%, #a18049 100%);
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Premium Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f5f5 100%);
    position: relative;
}

.testimonials h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonials-subtitle {
    color: #666;
    margin-bottom: 4rem;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 500;
}

.testimonials img {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(161, 128, 73, 0.2);
    transition: transform 0.4s ease;
}

.testimonials img:hover {
    transform: scale(1.02);
}

/* Premium Transformation Section */
.transformation {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    position: relative;
}

.transformation-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

.transformation-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.transformation-highlight {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #a18049 0%, #c9a876 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.transformation-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.transformation-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.transformation-list {
    max-width: 85rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.transformation-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(161, 128, 73, 0.1);
    position: relative;
    overflow: hidden;
}

.transformation-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #a18049 0%, #c9a876 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.transformation-item:hover::before {
    transform: scaleX(1);
}

.transformation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(161, 128, 73, 0.15);
}

.transformation-before,
.transformation-after {
    flex: 1;
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
}

.transformation-before {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid #fecaca;
}

.transformation-after {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #bbf7d0;
}

.transformation-arrow {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #a18049 0%, #c9a876 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 20px rgba(161, 128, 73, 0.3);
    transition: transform 0.3s ease;
}

.transformation-item:hover .transformation-arrow {
    transform: scale(1.1);
}

/* Premium About Joa Section */
.about-joa {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 85rem;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    max-width: 25rem;
}

.about-image img {
    width: 100%;
    transition: transform 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.dl-pulse {
  animation: button-pulse 2.5s infinite;
}

@keyframes button-pulse {

  0%,
  30%,
  60%,
  100% {
    transform: scale(1);
  }

  15%,
  45% {
    transform: scale(1.15);
  }
}


.about-text {
    flex: 2;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.about-story {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

.about-story strong {
    color: #a18049;
    font-weight: 700;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.pillar {
    text-align: center;
    padding: 1.5rem;
    background: rgba(161, 128, 73, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(161, 128, 73, 0.1);
    transition: all 0.3s ease;
}

.pillar:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(161, 128, 73, 0.1);
}

.pillar svg {
    color: #a18049;
    margin-bottom: 1rem;
}

.pillar p {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a1a1a;
}

.about-conclusion {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    background: linear-gradient(135deg, rgba(161, 128, 73, 0.1) 0%, rgba(201, 168, 118, 0.15) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(161, 128, 73, 0.2);
    color: #1a1a1a;
}

/* Premium Course Content Section */
.course-content {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.content-header {
    text-align: center;
    margin-bottom: 5rem;
}

.content-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.content-header p {
    font-size: 1.3rem;
    color: #666;
    max-width: 40rem;
    margin: 0 auto;
}

.content-modules {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.module {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 2rem;
    border: 1px solid rgba(161, 128, 73, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #a18049 0%, #c9a876 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.module:hover::before {
    transform: scaleX(1);
}

.module:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(161, 128, 73, 0.15);
}

.module-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #a18049 0%, #c9a876 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(161, 128, 73, 0.3);
    transition: transform 0.3s ease;
}

.module:hover .module-icon {
    transform: scale(1.1);
}

.module-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.module-content > p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.module-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.option {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(161, 128, 73, 0.1);
    transition: all 0.3s ease;
}

.option:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(161, 128, 73, 0.1);
}

.option h4 {
    font-weight: 700;
    color: #a18049;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.option p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.module-note {
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
    border: 1px solid #fde047;
    border-radius: 15px;
    padding: 1.5rem;
}

.module-note p {
    color: #a16207;
    font-weight: 600;
    font-size: 0.95rem;
}

.nutrition-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.nutrition-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 4px solid #a18049;
    transition: all 0.3s ease;
}

.nutrition-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(161, 128, 73, 0.1);
}

.nutrition-item h5 {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.nutrition-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.safety-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.safety-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.safety-item:hover {
    background: rgba(255, 255, 255, 0.8);
}

.safety-dot {
    width: 0.75rem;
    height: 0.75rem;
    background: #a18049;
    border-radius: 50%;
    flex-shrink: 0;
}

.content-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Premium Golden Ticket Section */
.golden-ticket {
    padding: 8rem 0;
    /*background: linear-gradient(135deg, #fefce8 0%, #fef3c7 50%, #fde047 100%);*/
    background: url("https://joafit.com/metodo-joafit/img/hero-bg.png");
     background-position: center; 
  background-repeat: no-repeat; 
  background-size: cover; 
    position: relative;
    overflow: hidden;
}

.golden-ticket::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(161, 128, 73, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.golden-card {
    background: linear-gradient(135deg, #a18049 0%, #c9a876 50%, #d4b887 100%);
    border-radius: 25px;
    padding: 4rem 3rem;
    color: white;
    text-align: center;
    box-shadow: 0 30px 60px rgba(161, 128, 73, 0.4);
    max-width: 70rem;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.golden-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.golden-icon {
    width: 6rem;
    height: 6rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #fffaf1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.golden-card h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.golden-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.golden-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.golden-content {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.golden-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fffaf1;
}

.golden-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    text-align: left;
    margin-bottom: 2rem;
}

.golden-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.golden-check {
    width: 2rem;
    height: 2rem;
    background: #fffaf1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a18049;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.golden-alternative {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.golden-footer p {
    margin-bottom: 1.5rem;
}

.golden-winner {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fffaf1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.golden-eligibility {
    font-size: 1rem;
    opacity: 0.9;
}

.btn-golden {
    background: white;
    color: #a18049;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-golden:hover {
    background: #fef3c7;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Premium Bonuses Section */
.bonuses {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f5f5 100%);
    position: relative;
}

.bonuses-header {
    text-align: center;
    margin-bottom: 5rem;
}

.bonuses-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bonuses-header p {
    font-size: 1.6rem;
    background: linear-gradient(135deg, #a18049 0%, #c9a876 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 90rem;
    margin: 0 auto;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid rgba(161, 128, 73, 0.1);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #a18049 0%, #c9a876 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.bonus-card:hover::before {
    transform: scaleX(1);
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(161, 128, 73, 0.15);
}

.bonus-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #a18049 0%, #c9a876 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    box-shadow: 0 10px 25px rgba(161, 128, 73, 0.3);
    transition: transform 0.3s ease;
}

.bonus-card:hover .bonus-icon {
    transform: scale(1.1);
}

.bonus-badge {
    background: linear-gradient(135deg, #a18049 0%, #c9a876 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(161, 128, 73, 0.3);
}

.bonus-card h3 {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.3;
}

.bonus-card p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.bonus-value {
   /* background: linear-gradient(135deg, #a18049 0%, #c9a876 100%);*/
    color: #a88751;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
   /* box-shadow: 0 4px 15px rgba(161, 128, 73, 0.3);*/
}

.bonuses-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Premium Pricing Section */
.pricing {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(161, 128, 73, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-card {
    max-width: 55rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.pricing-card h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pricing-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.pricing-timer {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.timer-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.timer-header svg {
    color: #fffaf1;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timer-unit {
    background: linear-gradient(135deg, #a18049 0%, #c9a876 100%);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    min-width: 6rem;
    box-shadow: 0 10px 25px rgba(161, 128, 73, 0.3);
    transition: transform 0.3s ease;
}

.timer-unit:hover {
    transform: scale(1.05);
}

.timer-number {
    font-size: 2rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.timer-label {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pricing-details {
    text-align: center;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    background: #c5a471;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.price-note {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.btn-pricing {
    width: 100%;
    background: linear-gradient(135deg, #a18049 0%, #c9a876 50%, #a18049 100%);
    color: white;
    padding: 1.75rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 20px 40px rgba(161, 128, 73, 0.4);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.btn-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-pricing:hover::before {
    left: 100%;
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 60px rgba(161, 128, 73, 0.5);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.payment-method {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-method:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.payment-method p {
    font-size: 0.85rem;
    font-weight: 500;
}

.support-note {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.btn-support {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-support:hover {
    background: white;
    color: #a18049;
    transform: translateY(-2px);
}

/* Premium FAQ Section */
.faq {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.faq h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 4rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-list {
    max-width: 55rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    border: 1px solid rgba(161, 128, 73, 0.1);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 15px 35px rgba(161, 128, 73, 0.1);
}

.faq-question {
    width: 100%;
    padding: 2rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(161, 128, 73, 0.05);
}

.faq-question h3 {
    font-weight: 600;
    color: #1a1a1a;
    padding-right: 1rem;
    font-size: 1.1rem;
    line-height: 1.4;
}

.faq-icon {
    color: #a18049;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 300px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Premium Footer */
.footer {
    padding: 6rem 0;
    background: linear-gradient(135deg, #a18049 0%, #c9a876 50%, #d4b887 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    max-width: 55rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-content > p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.btn-footer-primary {
    width: 100%;
    background: white;
    color: #a18049;
    padding: 1.75rem 4rem;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.btn-footer-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(161, 128, 73, 0.1), transparent);
    transition: left 0.6s;
}

.btn-footer-primary:hover::before {
    left: 100%;
}

.btn-footer-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.footer-support {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 3rem;
    margin-bottom: 4rem;
}

.footer-support p {
    margin-bottom: 1rem;
    opacity: 0.95;
    font-size: 1.1rem;
}

.btn-footer-support {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 auto;
    font-size: 1rem;
}

.btn-footer-support:hover {
    background: white;
    color: #a18049;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo svg {
    color: #fde047;
}

.footer-logo span {
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-bottom p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-features {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .transformation-item {
        flex-direction: row;
    }
    
    .about-content {
        flex-direction: row;
    }
    
    .module {
        flex-direction: row;
    }
    
    .payment-methods {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .btn-footer-primary {
        width: auto;
        min-width: 400px;
    }
}

@media (max-width: 767px) {
    
    /* modificaciones mobile 10092025 */
    .hero-badge {margin: 0 5rem 1rem; padding: 0.75rem 2rem;}
    .btn-primary {padding: 1.25rem 1.4rem;font-size: 0.9rem;}
    .about-text h2 {font-size: 1.8rem;margin-bottom: 1rem;}
    .module-icon {margin-left: 37%;}
    .btn-golden {padding: 1.25rem 2.5rem;font-size: 0.9rem;}
    .btn-pricing {padding: 1.75rem 2.5rem; font-size: 0.9rem;}
    .btn-footer-primary {width: 80%;padding: 1.75rem 0.5rem;
    font-size: 0.9rem;}
    .about-joa {padding:0;}
    .about-content {gap:0}
    /* /modificaciones mobile 10092025 */
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-features {
        flex-direction: column;
    }
    
    .benefits,
    .testimonials,
    .transformation,
    .course-content,
    .golden-ticket,
    .bonuses,
    .pricing,
    .faq,
    .footer {
        padding: 4rem 0;
    }
    
    .transformation-item {
        flex-direction: column;
        text-align: center;
    }
    
    .transformation-arrow {
        transform: rotate(90deg);
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .module {
        flex-direction: column;
        text-align: center;
    }
    
    .golden-features {
        grid-template-columns: 1fr;
    }
    
    .golden-card {
        padding: 2.5rem 1.5rem;
    }
    
    .timer-display {
        gap: 1rem;
    }
    
    .timer-unit {
        min-width: 4.5rem;
        padding: 1rem;
    }
    
    .timer-number {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 3rem;
    }
}

/* Premium Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Premium Scroll Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slideInUp 0.8s ease forwards;
}

/* Premium Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Premium Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, #a18049 0%, #c9a876 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-shadow {
    box-shadow: 0 20px 40px rgba(161, 128, 73, 0.15);
}

.premium-border {
    border: 1px solid rgba(161, 128, 73, 0.2);
}