/* -----------------------------------
   ESTILO GENERAL
----------------------------------- */
body {
    margin: 0;
    background: #ffffff; /* Fondo totalmente blanco */
    font-family: Arial, sans-serif;
    color: #333;
}

/* -----------------------------------
   MENÚ SUPERIOR
----------------------------------- */
.menu-fixed {
    position: sticky;
    top: 0;
    background: #ffffff;
    border-bottom: 1px solid #dcdcdc;
    width: 100%;
    z-index: 9999;
    padding: 8px 0;
}

.menu-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-small {
    width: 42px !important;
    height: auto;
}

.brand-name {
    font-size: 18px;
    font-weight: bold;
    color: #6a5acd !important;   /* moradito bonito */
    margin-left: 8px;
}
.menu-links {
    display: flex;
    gap: 20px;
}

.menu-links a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
}

.menu-links a:hover,
.menu-links a.activo {
    color: #007bff;
}

.menu-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-small {
    width: 42px !important;
}

.brand-name {
    font-size: 18px;
    font-weight: bold;
    color: #003f73;
}

.menu-links {
    display: flex;
    gap: 20px;
}

.menu-links a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
}

.menu-links a:hover,
.menu-links a.activo {
    color: #7b5cff;
}

/* -----------------------------------
   HERO
----------------------------------- */
.hero {
    text-align: center;
    padding: 70px 20px;
    background: linear-gradient(to bottom, #ffffff, #f7f7ff); /* Más blanco */
}
    box-shadow: 0 4px 10px #0001;
}

.hero h1 {
    font-size: 2.4em;
    color: #003f73;
}

.hero p {
    color: #444;
}

.icon-mundo {
    width: 120px;
    opacity: 0.92;
    margin-top: 20px;
}

/* -----------------------------------
   SECCIONES GENERALES
----------------------------------- */
section {
    max-width: 950px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 0 12px #0002;
}

h2 {
    text-align: center;
    color: #003f73;
    margin-top: 0;
}

/* Fade al cargar */
section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* -----------------------------------
   PLANES
----------------------------------- */
.planes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 20px;
}

.plan {
    background: #faf7ff;
    border: 1px solid #e0d6ff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 6px #0001;
}

.plan.negocio {
    background: #f4f1ff;
    border-color: #c8baff;
}

.plan h3 {
    margin: 5px 0 10px;
    color: #4d3ca6;
}

.precio {
    font-size: 22px;
    font-weight: bold;
    color: #003f73;
}

.detalle {
    color: #444;
}

/* Botón contratar */
.btn-wp {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 20px;
    background: #7b5cff;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
}

.btn-wp:hover {
    background: #5a3fff;
}

/* PROMOCIÓN */
.promo {
    background: #e8fff6;          /* verde menta MUY suave */
    border-left: 5px solid #00c48c; /* verde menta más fuerte */
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 0 10px #0002;
}

.promo h2 {
    color: #00a878;
    margin-top: 0;
}

.promo p {
    color: #333;
    font-size: 15px;
}
/* -----------------------------------
   OPINIONES
----------------------------------- */
.opinion {
    background: #f7f4ff;
    border-left: 5px solid #7b5cff;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* -----------------------------------
   FORMULARIO CONTACTO + INPUTS
----------------------------------- */
.formulario {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.formulario input,
.formulario textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #cfc3ff;
    background: #f9f7ff;
    font-size: 15px;
}

.formulario button {
    margin-top: 10px;
    padding: 12px;
    background: #7b5cff;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.formulario button:hover {
    background: #5a3fff;
}

.contacto-extra {
    margin-top: 15px;
    background: #f7f4ff;
    border-left: 5px solid #7b5cff;
    padding: 15px;
    border-radius: 10px;
}

/* -----------------------------------
   FOOTER
----------------------------------- */
footer {
    text-align: center;
    padding: 25px;
    margin-top: 30px;
    background: #ffffff;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: #555;
}

/* -----------------------------------
   BOTÓN WHATSAPP
----------------------------------- */
.wa-btn {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    text-decoration: none;
    color: white;
    box-shadow: 0 0 10px #0004;
}

/* -----------------------------------
   RESPONSIVE
----------------------------------- */
@media (max-width: 720px) {
    .menu-container {
        flex-direction: column;
        gap: 12px;
    }

    .icon-mundo {
        width: 85px;
    }
}