/* styles.css - Estilos comunes para todas las tarifas IDEADOS */

:root {
    --primary-color: #e63946;
    --secondary-color: #1d3557;
    --accent-color: #f9fafa;
    --bg-color: #ffd2d2;
    --text-color: #333;
    --radius: 10px;
    --shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-color);
    margin: 0;
    padding: 1rem;
    color: var(--text-color);
  }
  
  .popup {
    max-width: 700px;
    margin: 2rem auto;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
  }
  
  .header {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .header h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0;
  }
  
  .header .price {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 0.3rem;
  }
  
  .icons-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0 2rem;
  }
  
  .icon-box {
    background: var(--accent-color);
    color: rgb(8, 8, 8);
    border-radius: var(--radius);
    padding: 0.6rem 1rem;
    text-align: center;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90px;
    height: 90px;
    justify-content: center;
  }
  
  .icon-box span {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
  }
  
  .section {
    margin-top: 1.5rem;
  }
  
  .section h2 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .section p,
  .section ul {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0.5rem 0;
  }
  
  ul {
    padding-left: 1.2rem;
  }
  
  ul li::marker {
    color: var(--primary-color);
  }
  
  .cta {
    text-align: center;
    margin-top: 2rem;
  }
  
  .cta a {
    background: var(--primary-color);
    color: white;
    padding: 0.6rem 2rem;
    font-size: 1rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .cta a:hover {
    background: var(--secondary-color);
  }