
:root {
    --white: #ffffff;
    --light-gray: #f7f7f7;
    --soft-pink: #f9dede;
    --light-pink: #fbeaec;
    --coral-pink: #f28b82;
    --dark-coral: #e27b74;
    --text-color: #230356;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

h1 {
    font-size: 5rem;
}

h2 {
    font-size: 2.3rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 5rem 0;
}
.section-cta {
    text-align: center;
    margin-top: 2rem;
  }
  
  .section-cta .btn {
    font-size: 2rem;
    padding: 0.9rem 1.4rem;
     
  }
  .section-cta {
    text-align: center;
    margin-top: 2rem;
  }
 
  /* Botones flotantes */
  .section-cta .btn {
    font-size: 2rem;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    position: relative;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);  /* sombra suave */
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  
  .section-cta .btn:hover {
    transform: translateY(-4px);              /* efecto flotante */
    box-shadow: 0 12px 24px rgba(0,0,0,0.25); /* sombra más intensa */
  }
  

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--coral-pink);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: var(--dark-coral);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(242, 139, 130, 0.2);
}

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

/* Header / Hero Section */
.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--coral-pink) 100%);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(249, 222, 222, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.profile-image {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.image-container::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    border: 2px dashed var(--coral-pink);
    opacity: 0.7;
}
/* CARRUSELL */




/* Identification Section */
.identification {
    background-color: var(--light-pink);
    padding: 4rem 0;
    position: relative;
}

.identification::before {
    content: "";
    position: absolute;
    top: -50px;
    width: 100%;
    height: 100px;
    background-color: white;
    clip-path: ellipse(50% 50% at 50% 50%);
}

.identification-box {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
}

.identification-box h3 {
    color: var(--coral-pink);
    margin-bottom: 1rem;
}

.highlight-text {
    font-size: 1.1rem;
    font-weight: 700;
    border-left: 4px solid var(--coral-pink);
    padding-left: 1rem;
    margin: 1.5rem 0;
}

/* Possibility Section */
.possibility {
    background-color: white;
    position: relative;
}

.italic-highlight {
    font-style: italic;
    color: var(--coral-pink);
    font-weight: 500;
}

/* Results Section */
.results {
    background-color: var(--light-gray);
}

.result-item {
    display: flex;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.result-item i {
    color: var(--coral-pink);
    margin-right: 1rem;
    margin-top: 0.3rem;
}

/* Story Section */
.story {
    background-color: white;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-gray);
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--soft-pink);
    opacity: 0.5;
    line-height: 1;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    padding-top: 1rem;
}

.testimonial-author {
    font-weight: 700;
    margin-top: 1.5rem;
    text-align: right;
}

/* Program Section */
.program {
    background-color: white;
}

.module-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    border-top: 4px solid var(--coral-pink);
    transition: transform 0.3s ease;
}

.module-card:hover {
    transform: translateY(-5px);
}

.module-card h3 {
    color: var(--coral-pink);
    font-size: 1.5rem;
}

/* Pricing Section */
.pricing {
    background-color: var(--light-pink);
    position: relative;
}

.pricing::before {
    content: "";
    position: absolute;
    top: -50px;
    width: 100%;
    height: 100px;
    background-color: white;
    clip-path: ellipse(50% 50% at 50% 50%);
}

.price-card {
    background-color: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.price-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.price-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.price-feature {
    display: flex;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.price-feature i {
    color: var(--coral-pink);
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.price-card .btn {
    width: 100%;
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: white;
    padding: 3rem 0 2rem;
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 1.5rem;
}
.f-social {
    margin-left: auto; /* lo empuja a la derecha */
  }
  
  .f-social a {
    color: #fff;               /* blanco por defecto */
    font-size: 1.8rem;         /* tamaño del ícono */
    transition: color 0.3s ease;
  }
  
  .f-social a:hover {
    color: var(--light-pink);      /* cambia al coral al pasar el mouse */
  }

  

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-right: 1.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    margin-top: 2rem;
    font-size: 0.8rem;
    opacity: 0.7;
}
.avisolegal {
  color: #5b4978;
}

/* Responsive */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6 {
    width: 100%;
    padding: 0 15px;
}

.col-md-4 {
    width: 100%;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .col-md-6 {
        width: 50%;
    }
    
    .col-md-4 {
        width: 33.333%;
    }
    
    h1 {
        font-size: 3.5rem;
    }
    
    .hero-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .hero-text {
        width: 60%;
        text-align: left;
    }
    
    .hero-image {
        width: 35%;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero {
        padding-top: 0;
        text-align: center;
    }
    
    .hero-image {
        margin-top: 3rem;
    }
    
    .profile-image {
        width: 250px;
        height: 250px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .price-card {
        margin-bottom: 2rem;
    }
}

/* New Hero Style */
.hero {
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--coral-pink) 100%);
    position: relative;
    overflow: hidden;
}

/* Problem List Style */
.problem-list {
    max-width: 800px;
    margin: 2rem auto;
    list-style: none;
}

.problem-list li {
    padding: 0.8rem 1rem;
    margin-bottom: 0.8rem;
    background-color: var(--light-pink);
    border-radius: 10px;
    font-size: 1.1rem;
}

/* Transformation Section */
.transformation {
    background-color: var(--light-gray);
}

.transformation-card {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.transformation-card h3 {
    color: var(--coral-pink);
    margin-bottom: 1.5rem;
}

.transformation-list {
    list-style: none;
    padding: 0;
}

.transformation-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.transformation-list li i {
    margin-right: 10px;
    margin-top: 5px;
}

.transformation-card.positive i {
    color: var(--coral-pink);
}

.transformation-card.negative i {
    color: #888;
}

/* Area Cards */
.area-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
}

.area-icon {
    font-size: 2.5rem;
    color: var(--coral-pink);
    margin-bottom: 1rem;
}

/* Benefits Section */
.benefits {
    background-color: var(--light-pink);
    padding: 4rem 0;
}

.benefits-container {
    max-width: 800px;
    margin: 0 auto;
    border: 2px;
}

.benefit-item {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Bonus Cards */
.bonuses {
    padding: 5rem 0;
}

.bonus-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    height: 100%;
}

.bonus-image {
    height: 490px;
    overflow: hidden;
}

.bonus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
}

.original-price {
    padding: 0 1.5rem;
    color: #888;
    /* text-decoration: line-through; */
}

.free-tag {
    padding: 0 1.5rem 1.5rem;
    color: var(--coral-pink);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Offer Section */
.offer {
    background-color: var(--light-gray);
    padding: 5rem 0;
}

.offer-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.strikethrough {
    text-decoration: line-through;
    color: #888;
}

.offer-price {
    font-size: 2rem;
    color: var(--coral-pink);
    margin: 1.5rem 0;
}

.payment-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 2rem;
}

.payment-option {
    text-align: center;
    padding: 1.5rem;
    flex: 1;
    min-width: 250px;
}

.payment-option h4 {
    margin-bottom: 1rem;
}

.payment-option .price {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* Updated Testimonial Cards */
.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--light-pink);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Not For You Section */
.not-for-you {
    background-color: var(--light-gray);
    padding: 4rem 0;
}

.not-for-list {
    max-width: 800px;
    margin: 2rem auto;
    list-style: none;
}

.not-for-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    background-color: var(--soft-pink);
    border-radius: 10px;
}

.not-for-list li i {
    color: #d9534f;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Disclaimer */
.disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ESTILO TABLA */

/* ESTILO TABLA */
/* ===== Tabla comparativa ===== */
.table-wrapper {
  overflow-x: auto;
  margin-top: 2rem;
}
.cabezal {
  background-color: var(--coral-pink);
}
.plans-table {
  width: 100%;
  border-collapse: collapse;
  background:var(--soft-pink);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.plans-table thead {
  background: var(--accent);
  color: #230356;
  font-family: "Playfair Display", serif;
}

.plans-table thead th {
  padding: 1rem;
  text-align: center;
  font-size: 1.1rem;
}

.plans-table thead th:first-child {
  text-align: left;
}

.plans-table .price {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 4px;
}

.plans-table tbody td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
  font-size: 0.95rem;
}

.plans-table tbody tr:last-child td {
  border-bottom: none ;
}

.plans-table tbody td:first-child {
  font-weight: 600;
  color: var(--text);
}

.plans-table td {
  text-align: center;
}

.plans-table td:first-child {
  text-align: left;
}

.text-ok {
  color: var(--accent);
  font-size: 1.1rem;
  margin-right: 6px;
}

.text-cross {
  color: #c94b4b;
  font-size: 1.1rem;
}
/* ESTILO LINEAS */
/* Separación de la tabla comparativa */
.plans-table {
  width: 100%;
  border-collapse: separate;  /* ⚡ cambia de collapse a separate */
  border-spacing: 0;          /* evita doble espaciado */
  border: 1px solid #ddd;     /* borde externo más visible */
  border-radius: 12px;
  overflow: hidden;
}

.plans-table thead th {
  border-right: 1px solid #230356; /* líneas verticales en header */
}

.plans-table thead th:last-child {
  border-right: none; /* sin línea en la última */
}

.plans-table tbody td {
  border-right: 1px solid #230356; /* líneas verticales */
  border-bottom: 1px solid #230356; /* líneas horizontales */
}

.plans-table tbody tr:last-child td {
  border-bottom: none; /* quita línea final */
}

.plans-table tbody td:last-child {
  border-right: none; /* quita línea de la última columna */
  
}
/* Zebra: alterna color de fondo */
.plans-table tbody tr:nth-child(even) {
    background-color: var(--light-pink); /* gris muy claro */
  }
  
  .plans-table tbody tr:nth-child(odd) {
    background-color: var(--light-gray); /* blanco */

  }

  .plans-table tfoot td {
    border-top: 1px solid var(--text-color); /* línea separadora */
    padding: 1rem;
    text-align: center;
    background-color: var(--text-color);
  }
  /* Primera fila del tfoot */
.plans-table tfoot tr:nth-child(1) td {
  background-color: var(--soft);       /* rosado suave */
  color: var(--text);
}

/* Segunda fila del tfoot */
.plans-table tfoot tr:nth-child(2) td {
  background-color: var(--light-gray); /* gris claro */
  color: var(--text);
}/* Primera fila del tfoot */
.plans-table tfoot tr:nth-child(1) td {
    background-color: var(--soft);       /* rosado suave */
    color: var(--text);
  }
  
  /* Segunda fila del tfoot */
  .plans-table tfoot tr:nth-child(2) td {
    background-color: var(--light-gray); /* gris claro */
    color: var(--text);
  }
  
  .plans-table tfoot a.btn {
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
    display: inline-block;
    width: 100%;
  }
  
/* Responsive */
@media (max-width: 768px) {
  .plans-table thead th,
  .plans-table tbody td {
    font-size: 0.85rem;
    padding: 0.7rem;
  }
}
