:root {
    --padding-header: 8rem;
    --padding-nav-mobile: 80px;

    --green: #1a7a4a;
    --green-light: #22a060;
     --green-pale: #d4f5e2;
     --gold: #f0a500;
     --text: #1a1a2e;
     --text-muted: #5a5a7a;
     --bg: #f8f7f2;
     --white: #ffffff;
     --radius: 16px;
     --font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Sistema de navegación de secciones */
.page-section {
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Estilos para la barra de scroll */
.page-section::-webkit-scrollbar {
    width: 10px;
}

.page-section::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.page-section::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.6);
    border-radius: 5px;
}

.page-section::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.8);
}

body.section-locked {
    overflow: hidden;
}

body.section-locked .page-section {
    display: none;
}

body.section-locked .page-section.active-section {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Mantener grid en hero cuando está activo */
body.section-locked .hero.active-section {
    display: grid;
}

/* Asegurar que el contenido no quede debajo de la cabecera */
body.section-locked .page-section.active-section {
    padding-top: var(--padding-header);
}

/* Navegación */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 71, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5rem;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a472a !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.nav-cta::after {
    display: none;
}

/* Hamburger menu para móvil */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem 10rem;
    background: linear-gradient(135deg, #1a472a 0%, #2d5016 50%, #1a472a 100%);
    position: relative;
    grid-template-rows: 0fr 1fr;
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
    repeating-linear-gradient(
        0deg,
        transparent,
        transparent 50px,
        rgba(255, 255, 255, 0.03) 50px,
        rgba(255, 255, 255, 0.03) 100px
    );
    pointer-events: none;
}

.hero-trust-message {
    text-align: center;
    color: white;
    margin-top:3rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.hero-trust-message .trust-line-1 {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.3rem;
}

.hero-trust-message .trust-line-2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.content {
    color: white;
    animation: fadeInLeft 1s ease-out;
    position: relative;
    z-index: 1;
}

.content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.content .highlight {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-button {
    display: flex;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a472a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    justify-content: center;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: fadeInRight 1s ease-out;
    border: 3px solid rgba(255, 215, 0, 0.3);
}

.slider {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-emoji {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.slide-title {
    font-size: 2rem;
    margin-top: 0.5rem;
    line-height: 1.2em;
}

.slide-subtitle {
    font-size: 1rem;
    line-height: 1.2em;
    font-weight: normal;
}

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

.slide:nth-child(3n+1) {
    background: linear-gradient(135deg, #c31432, #240b36);
}

.slide:nth-child(3n+2) {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
}

.slide:nth-child(3n+3) {
    background: linear-gradient(135deg, #2c3e50, #3498db);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: white;
}

/* Sección Versiones */
.versiones-section {
    padding: 6rem 2rem 3rem;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    min-height: 100vh;
}

.versiones-header {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.versiones-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.versiones-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.view-toggle {
    display: none;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.view-toggle button {
    padding: 0.8rem 1.5rem;
    border: 2px solid #ffd700;
    background: transparent;
    color: #ffd700;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-toggle button.active {
    background: #ffd700;
    color: #1a472a;
}

.pricing-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--card-color), var(--card-color-light));
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.pricing-card.featured {
    border: 3px solid #ffd700;
}

.pricing-card.featured::after {
    content: 'POPULAR';
    position: absolute;
    top: 20px;
    right: -30px;
    background: #ffd700;
    color: #1a472a;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.8rem;
}

.pricing-tier {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--card-color);
}

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.pricing-price span {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    color: var(--card-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.pricing-features li.disabled {
    opacity: 0.3;
}

.pricing-features li.disabled::before {
    content: '✗';
    color: #999;
}

.pricing-button {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--card-color), var(--card-color-light));
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-transform: uppercase;
}

.pricing-button:hover {
    transform: translateY(-2px);
}

.tier-gratis { --card-color: #95a5a6; --card-color-light: #bdc3c7; }
.tier-bronce { --card-color: #cd7f32; --card-color-light: #e8a87c; }
.tier-plata { --card-color: #c0c0c0; --card-color-light: #e8e8e8; }
.tier-oro { --card-color: #ffd700; --card-color-light: #ffed4e; }
.tier-platino { --card-color: #4a5568; --card-color-light: #718096; }

.slider-controls {
    display: none;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ffd700;
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover:not(:disabled) {
    background: #ffd700;
    color: #1a472a;
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Sección Contacto */
.contacto-section {
    padding: 6rem 2rem 3rem;
    background: linear-gradient(135deg, #1a472a 0%, #2d5016 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacto-container {
    max-width: 800px;
    width: 100%;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    margin: auto;
}

.contacto-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contacto-header h2 {
    font-size: 2.5rem;
    color: #1a472a;
    margin-bottom: 0.5rem;
}

.contacto-header p {
    font-size: 1.1rem;
    color: #666;
}

.contacto-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.form-group label span {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group input:disabled {
    background-color: #c4c2c2;
    color:#5c5c5c;
    cursor: not-allowed;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.submit-button {
    padding: 1.2rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a472a;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

.success-message {
    display: none;
    padding: 1rem;
    background: #27ae60;
    color: white;
    border-radius: 10px;
    text-align: center;
    margin-top: 1rem;
    font-weight: 600;
}

.success-message.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contacto-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

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

.info-item .icon {
    font-size: 2.5rem;
    width: 48px;
    margin: auto;
}

.info-item h3 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.3rem;
}

.info-item p {
    font-size: 0.9rem;
    color: #666;
}

/* Sección FAQ */

.planes-section {
  padding: 40px 0 60px;
  background: linear-gradient(135deg, #1a472a 0%, #2d5016 50%, #1a472a 100%);
}

.planes-header {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}
span.highlight {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.planes-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.planes-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 900px;
    margin: auto;
}

.planes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

    .plan-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 0;
      border: 2px solid rgba(26,122,74,0.15);
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .plan-card:hover {
      /* transform: translateY(-5px); */
      /* box-shadow: 0 12px 32px rgba(26,122,74,0.15); */
      box-shadow: inset 10px -12px 0px 0px var(--green-light), inset -2px -12px 0px 10px var(--green-light), inset -4px -1px 5px var(--green-light);
    }

    .plan-card.destacado:hover {
      /* transform: translateY(-5px); */
      /* box-shadow: 0 12px 32px rgba(26,122,74,0.15); */
      box-shadow: inset 10px -12px 0px 0px #ffc107, inset -2px -12px 0px 10px #ffc107, inset -4px -1px 5px #ffc107;
    }

    .plan-header {
      background: linear-gradient(135deg, var(--green), var(--green-light));
      padding: 32px 32px 28px;
      position: relative;
    }

    .plan-card.destacado .plan-header {
      background: linear-gradient(135deg, var(--gold), #ffc107);
    }

    .plan-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      background: rgba(255,255,255,0.95);
      color: var(--green);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 6px 12px;
      border-radius: 100px;
    }

    .plan-card.destacado .plan-badge {
      color: var(--gold);
    }

    .plan-name {
      font-size: 28px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 8px;
    }

    .plan-description {
      font-size: 15px;
      color: rgba(255,255,255,0.9);
      line-height: 1.5;
      margin-bottom: 20px;
    }

    .plan-price {
      display: flex;
      align-items: baseline;
      gap: 6px;
      margin-bottom: 8px;
    }

    .plan-price-amount {
      font-size: 48px;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
    }

    .plan-price-currency {
      font-size: 24px;
      font-weight: 600;
      color: rgba(255,255,255,0.85);
    }

    .plan-price-period {
      font-size: 15px;
      color: rgba(255,255,255,0.75);
    }

    .plan-cta {
        background: var(--green-pale);
        color: var(--green);
        border: none;
        border-radius: 100px;
        padding: 14px 32px;
        font-family: var(--font);
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        width: 100%;
        text-decoration: auto;
        text-align: center;
    }

    .plan-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);      
    }

    .plan-card.destacado .plan-cta {
      background: var(--green);
      color: var(--white);
    }

    .plan-body {
      padding: 32px;
    }

    .features-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .features-title::before {
      content: '⚙️';
      font-size: 20px;
    }

    .features-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 16px;
      background: var(--bg);
      border-radius: 12px;
      transition: background 0.3s ease;
    }

    .feature-item:hover {
      background: var(--green-pale);
    }

    .feature-icon {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      background: var(--green);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      margin-top: 2px;
    }

    .feature-item.disabled .feature-icon {
      background: #ccc;
    }

    .feature-item.premium .feature-icon {
      background: var(--gold);
    }

    .feature-content {
      flex: 1;
    }

    .feature-name {
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 4px;
    }

    .feature-item.disabled .feature-name {
      color: var(--text-muted);
      text-decoration: line-through;
    }

    .feature-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.4;
    }

    .feature-value {
      font-size: 14px;
      font-weight: 700;
      color: var(--green);
      margin-top: 4px;
    }

    .feature-item.disabled .feature-value {
      color: #999;
    }

/* Sección FAQ */
.faq-section {
    padding: 6rem 2rem 3rem;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    min-height: 100vh;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.faq-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.faq-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 900px;
    margin: auto;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #ffd700;
    background: transparent;
    color: #ffd700;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: #ffd700;
    color: #2c3e50;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.faq-question {
    padding: 0.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 1.5rem;
    color: #ffd700;
    transition: transform 0.3s ease;
    font-weight: bold;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    max-height: 100vh;
    padding: 0.5rem 2rem;
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.faq-answer ul, .faq-answer ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: #555;
}

.faq-answer li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.faq-answer ul.no-tab, .faq-answer ol.no-tab {
    padding-left: 0rem;
}

.faq-answer ul.no-tab > li, .faq-answer ol.no-tab > li {
    margin-left: 1.5rem;
}

.faq-item[data-category] {
    display: none;
}

.faq-item[data-category].show {
    display: block;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



@media (max-width: 968px) {
    nav {
        padding: 1rem 2rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: rgba(26, 71, 42, 0.98);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 6rem 2rem 2rem;
    }

    .content h1 {
        font-size: 2.5rem;
    }

    .content p {
        font-size: 1.1rem;
    }

    .slider-container {
        max-width: 100%;
        height: 300px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .planes-header{
        margin-left: 1em;
        margin-right: 1em;
    }
    .planes-grid {
        margin: 0em 1em;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .plan-header {        
        padding: 28px 24px;
    }

    .plan-body {
        padding: 24px;
    }

    .plan-name {
        font-size: 24px;
    }

    .plan-price-amount {
        font-size: 40px;
    }


}


@media (max-width: 768px) {
    nav {
        padding: 0.5rem 2rem 0rem;
    }

    .logo {
        font-size: 1.6rem;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 9rem 2rem 2rem;
    }

    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-trust-message {
        margin-top:0rem;
        margin-bottom: 0.5rem;
    }

    .hero-trust-message .trust-line-1 {
        font-size: 0.95rem;
    }

    .hero-trust-message .trust-line-2 {
        font-size: 1.6rem;
    }

    body.section-locked .page-section.active-section {
        padding-bottom: var(--padding-nav-mobile);
    }

}