/* style.css */

:root {
    /* Paleta extraída del logo de Ordemy */
    --ordemy-dark-navy: #131433;
    --ordemy-primary: #5352f7; /* Violeta / Azul brillante */
    --ordemy-gradient: linear-gradient(135deg, #131433, #5352f7);
    --bg-light-gray: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: var(--ordemy-dark-navy);
}

/* Navbar y Branding */
.ordemy-brand {
    color: var(--ordemy-dark-navy) !important;
}
.logo-icon {
    color: var(--ordemy-primary);
    background: var(--ordemy-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Botones Personalizados */
.btn-ordemy-primary {
    background: var(--ordemy-gradient);
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-ordemy-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(83, 82, 247, 0.4);
    color: white;
}

/* Hero Section */
.hero-section {
    padding-top: 80px;
    padding-bottom: 40px;
}

.highlight-bg {
    position: relative;
    display: inline-block;
    z-index: 1;
}

/* Subrayado estilo marcador para el texto */
.highlight-bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 35%;
    background-color: rgba(83, 82, 247, 0.2);
    bottom: 5px;
    left: 0;
    z-index: -1;
    transform: rotate(-1deg);
    border-radius: 4px;
}

/* Texto Manuscrito */
.handwritten-text {
    font-family: 'Caveat', cursive;
    font-size: 3rem;
    color: var(--ordemy-dark-navy);
    transform: rotate(-3deg);
    display: inline-block;
}

/* Separador Curvo (Shape Divider) */
.custom-shape-divider-top {
    position: absolute;
    top: -80px; /* Sube la curva sobre la sección blanca */
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 0;
}

.custom-shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.custom-shape-divider-top .shape-fill {
    fill: var(--bg-light-gray);
}

/* Grid de Apps */
.apps-section {
    z-index: 1;
}

.app-card {
    width: 80px;
    height: 80px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
}

.ordemy-gradient-text {
    background: var(--ordemy-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}