/* ======================================================
   Custom Styles for OweManager Landing Page
   ====================================================== */

/* --- Variables --- */
:root {
    /* Define a color palette for OweManager - Suggestion: Use a primary color different from 5Ingenieros */
    --om-primary: #20c997; /* Example: Teal/Green */
    --om-primary-rgb: 32, 201, 151;
    --om-primary-darker: #1baa80;
    --om-secondary: #f8f9fa; /* Light gray background */
    --om-text-dark: #212529;
    --om-text-muted: #6c757d;
    --om-border-color: #dee2e6;
    --om-white: #ffffff;
    --om-success: #198754;
    --om-warning: #ffc107;
    --om-info: #0dcaf0;
    --om-danger: #dc3545;

    /* Soft background colors for feature icons */
    --om-primary-soft: rgba(var(--om-primary-rgb), 0.1);
    --om-success-soft: rgba(25, 135, 84, 0.1);
    --om-warning-soft: rgba(255, 193, 7, 0.1);
    --om-info-soft: rgba(13, 202, 240, 0.1);
    --om-danger-soft: rgba(220, 53, 69, 0.1);
    --om-secondary-soft: rgba(108, 117, 125, 0.1);

    /* Typography */
    --om-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

    /* Spacing & Radius */
    --om-border-radius: 8px;
    --om-border-radius-lg: 12px;
    --om-section-padding-y: 6rem;

    /* Transitions */
    --om-transition-base: all 0.3s ease-in-out;
}

/* --- Base & Reset --- */
body {
    font-family: var(--om-font-primary);
    color: var(--om-text-dark);
    background-color: var(--om-white);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700; /* Bold headings */
    color: var(--om-text-dark);
    line-height: 1.3;
}

a {
    color: var(--om-primary);
    text-decoration: none;
    transition: var(--om-transition-base);
}
a:hover {
    color: var(--om-primary-darker);
}

p {
    color: var(--om-text-muted);
    margin-bottom: 1rem;
}
p.lead {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--om-text-muted); /* Keep lead slightly muted */
}

section {
    padding-top: var(--om-section-padding-y);
    padding-bottom: var(--om-section-padding-y);
}
.section-alt-bg {
    background-color: var(--om-secondary);
}

/* --- Header --- */
.om-header {
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: var(--om-transition-base);
}
.om-header .navbar {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}
.om-header .navbar-brand img {
    transition: transform 0.3s ease;
}
.om-header .navbar-brand:hover img {
    transform: scale(1.05);
}

/* --- Buttons --- */
.om-btn-primary {
    background-color: var(--om-primary);
    color: var(--om-white);
    border-radius: var(--om-border-radius);
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    transition: var(--om-transition-base);
    border: 1px solid var(--om-primary);
    letter-spacing: 0.3px;
    box-shadow: 0 2px 5px rgba(var(--om-primary-rgb), 0.2);
}
.om-btn-primary:hover {
    background-color: var(--om-primary-darker);
    color: var(--om-white);
    border-color: var(--om-primary-darker);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(var(--om-primary-rgb), 0.3);
}
.om-btn-primary.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.om-btn-outline-primary {
    color: var(--om-primary);
    border: 1px solid var(--om-primary);
    background-color: transparent;
    border-radius: var(--om-border-radius);
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    transition: var(--om-transition-base);
    letter-spacing: 0.3px;
}
.om-btn-outline-primary:hover {
    background-color: var(--om-primary);
    color: var(--om-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(var(--om-primary-rgb), 0.2);
}

.om-store-badge img {
    height: 50px; /* Adjust as needed */
    transition: var(--om-transition-base);
}
.om-store-badge:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
}

/* --- Hero Section --- */
.om-hero {
    background-color: var(--om-white);
    overflow: hidden;
}
@media (min-width: 992px) {
    .om-hero {
         padding-top: 7rem;
         padding-bottom: 6rem;
    }
}
.om-hero-mockup img {
    max-width: 100%;
    /* Optional: Add subtle animation */
    /* animation: float 4s ease-in-out infinite; */
}

/* --- Features Section --- */
.om-feature-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--om-white);
    border-radius: var(--om-border-radius-lg);
    border: 1px solid var(--om-border-color);
    height: 100%;
    transition: var(--om-transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.om-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: rgba(var(--om-primary-rgb), 0.3);
}
.om-feature-item .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.om-feature-item h3 {
    color: var(--om-text-dark);
}

/* --- Visual Steps Section --- */
.om-visual-steps {
    background-color: var(--om-white);
}
.om-steps-list .step-number {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--om-primary-soft);
    color: var(--om-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}
.om-steps-list h4 {
    color: var(--om-text-dark);
}
.om-visual-mockup img {
    /* Style the mockup image if needed */
}

/* --- Testimonials Section --- */
.om-testimonial-card {
    border-radius: var(--om-border-radius-lg);
}
.om-testimonial-card .card-body p {
    font-size: 0.95rem;
    color: var(--om-text-muted); /* Keep quote text muted */
}
.om-testimonial-card .card-footer {
    padding-bottom: 1.25rem; /* Align text better */
}
.om-testimonial-card .om-stars i {
    font-size: 0.9rem;
}

/* --- Security Section --- */
.om-security {
    background-color: var(--om-white);
}
.om-security i.fa-lock {
    color: var(--om-primary); /* Or a dedicated security color */
}

/* --- CTA Section --- */
.om-cta h2 {
    color: var(--om-text-dark);
}

/* --- FAQ Section (If enabled) --- */
.om-faq .accordion-item {
    border: 1px solid var(--om-border-color);
    border-radius: var(--om-border-radius);
    margin-bottom: 1rem;
    background-color: var(--om-white);
    overflow: hidden; /* Prevents border doubling */
}
.om-faq .accordion-item:last-child {
    margin-bottom: 0;
}
.om-faq .accordion-header {
    border-bottom: none; /* Remove default header border */
}
.om-faq .accordion-button {
    color: var(--om-text-dark);
    font-weight: 600;
    background-color: var(--om-white);
    box-shadow: none;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
}
.om-faq .accordion-button:not(.collapsed) {
    color: var(--om-primary);
    background-color: var(--om-primary-soft);
}
.om-faq .accordion-button:focus {
    box-shadow: none;
    border-color: transparent; /* Remove focus border */
}
.om-faq .accordion-button::after {
    /* Customize accordion icon if desired */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236c757d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.om-faq .accordion-button:not(.collapsed)::after {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2320c997'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); /* Primary color icon when open */
}
.om-faq .accordion-body {
    padding: 0 1.5rem 1.25rem 1.5rem; /* Adjust padding */
}

/* --- Footer --- */
.om-footer {
    border-top: 1px solid var(--om-border-color);
}
.om-footer a:hover {
     color: var(--om-text-dark);
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) { /* Below LG */
    section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .display-4 {
        font-size: calc(1.375rem + 1.8vw); /* Adjust BS display size */
    }
     h1 { font-size: 2.2rem; }
     h2 { font-size: 1.8rem; }
}

@media (max-width: 768px) { /* Below MD */
    .display-4 {
        font-size: calc(1.35rem + 1.5vw);
    }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    p.lead { font-size: 1.05rem; }
    .om-store-badge img { height: 45px; }
}

@media (max-width: 576px) { /* Below SM */
     section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    p.lead { font-size: 1rem; }
    .om-store-badge img { height: 40px; }
    .om-footer { font-size: 0.8rem; }
}


/* --- Optional Animations --- */
/* @keyframes float {
	0% { transform: translatey(0px); }
	50% { transform: translatey(-10px); }
	100% { transform: translatey(0px); }
} */

/* --- Demo & Contact Section --- */
.om-demo-contact {
    background-color: var(--om-white); /* O elige section-alt-bg */
}

.om-demo-contact i.fa-3x { /* Estilo para los iconos grandes de la sección */
     display: inline-block; /* Asegura que el margen funcione */
}

.om-demo-contact .vr { /* Estilo para el separador vertical */
     background-color: currentColor; /* Usa el color del texto */
     opacity: 0.15; /* Más visible que el 0.1 por defecto */
     align-self: center; /* Centra verticalmente en flex container */
}

/* --- Modal Styles --- */
.modal-content {
    border-radius: var(--om-border-radius-lg);
    border: none;
}
.modal-header {
    padding: 1.25rem 1.5rem 0.5rem 1.5rem; /* Ajustar padding */
}
.modal-body {
    padding: 1rem 1.5rem 1.5rem 1.5rem; /* Ajustar padding */
}
.modal-body .form-control-sm { /* Estilo para inputs más pequeños en modal */
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
}
.modal-body .form-label {
    margin-bottom: 0.25rem; /* Menos espacio label-input */
}

/* --- Adjust Outline Button Style (Optional Refinement) --- */
.om-btn-outline-secondary { /* Estilo para el botón de contacto */
    color: var(--om-text-muted);
    border-color: var(--om-border-color);
    font-weight: 500;
}
.om-btn-outline-secondary:hover {
    color: var(--om-text-dark);
    background-color: var(--om-secondary);
    border-color: var(--om-border-color);
     transform: translateY(-2px);
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
/* === (Añadir a owemanager_styles.css) === */

/* --- Pricing Section --- */
.om-pricing-card {
    border-radius: var(--om-border-radius-lg);
    transition: var(--om-transition-base);
}
.om-pricing-card .card-header {
    border-top-left-radius: var(--om-border-radius-lg);
    border-top-right-radius: var(--om-border-radius-lg);
}
.om-pricing-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 12px 30px rgba(0,0,0,0.09);
}
.om-pricing-card .display-5 { /* Ajustar tamaño del precio */
    font-size: 2.8rem;
}
.om-feature-check-list li {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
}
.om-feature-check-list i.fa-check {
    width: 20px; /* Alineación */
}

/* --- Adjustments for new flow --- */
.om-steps-list a { /* Estilo para enlaces dentro de los pasos */
    font-weight: 500;
}
/* === Nuevos Estilos para Header e Imágenes === */

/* Efecto de sombra sutil para el header sticky */
.om-header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06); /* Sombra suave hacia abajo */
    /* Asegura que el fondo sea blanco si no lo tiene el nav interno */
    /* background-color: #fff; */ /* Descomentar si es necesario */
  }
  
  /* Estilo para imágenes destacadas (mockups) con marco, sombra y tamaño controlado */
  .img-framed-shadow {
    display: block; /* Asegura que se comporte como bloque */
    max-width: 100%; /* Hereda de img-fluid, pero lo reforzamos */
    height: auto; /* Mantiene la proporción */
    border-radius: 12px; /* Bordes redondeados más pronunciados */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); /* Sombra más notable */
    border: 1px solid rgba(0, 0, 0, 0.05); /* Borde muy sutil para definir */
    margin-left: auto; /* Centrar si es más pequeña que el contenedor */
    margin-right: auto; /* Centrar si es más pequeña que el contenedor */
    /* Opcional: Limitar el tamaño máximo absoluto si es necesario */
    /* max-width: 700px; */ /* Ejemplo: Descomentar y ajustar si las imágenes son demasiado grandes en pantallas anchas */
  }
  
  /* Ajuste opcional para badges de tiendas, para que no hereden estilos si aplicaras a todas las img */
  .om-store-badge img {
      box-shadow: none; /* Quitar sombra si se aplicara globalmente */
      border-radius: 4px; /* Un redondeo más sutil para badges */
      border: none;
  }
  
  /* Ajuste opcional para el logo del header */
  .om-header .navbar-brand img {
      box-shadow: none; /* Sin sombra */
      border: none;
      border-radius: 0; /* Sin bordes redondeados */
      max-height: 65px; /* Limitar altura explícitamente */
      width: auto; /* Ancho automático basado en la altura */
  }
  
  
  /* === Fin Nuevos Estilos === */
  
  /* ... (El resto de tus estilos en owemanager_styles.css) ... */
  