﻿:root {
    --brand: #8f2e2e; /* vino */
    --brand-600: #a24141;
    --brand-700: #7f2525;
    --tile: #ffffff;
    --muted: #6b7280;
    --border: #e5e7eb;
    --hero-text: #f8f9fa;
}

body {
    background: #fff;
    color: #2a2a2a;
}
/* HERO */
.hero-wrap {
    background: radial-gradient(1200px 400px at 50% -150px, rgba(255,255,255,.06), transparent), linear-gradient(0deg, rgba(40,8,8,.8), rgba(40,8,8,.8)), linear-gradient(180deg, #802525, #4e1414);
    color: var(--hero-text);    
}

.hero-inner {
    padding: 4.5rem 0 2.75rem;
    text-align: center;
}

.hero-title {
    font-weight: 800;
    letter-spacing: .4px;
    font-size: clamp(2rem, 6vw, 3.25rem);
}

.hero-sub {
    color: #e9d7d7;
    font-size: 1.05rem;
}

/* Most searched line */
.most-searched {
    color: #6b6b6b;
    font-size: .92rem;
    text-align: center;
    padding: .75rem 0 0;
}

    .most-searched a {
        color: #6b6b6b;
        text-decoration: none;
    }

        .most-searched a:hover {
            text-decoration: underline;
        }
/* Auth card area */
.auth-wrap {
    margin-top: -28px;
}

.auth-card .form-control {
    height: 44px;
    border-color: #d9d9d9;
}

.btn-brand {
    background: var(--brand-600);
    color: #fff;
    font-weight: 700;
    letter-spacing: .3px;
}

    .btn-brand:hover {
        background: var(--brand-700);
        color: #fff;
    }
/* Info band */
.info-band {
    background: #f8f9fa;
    border: 1px solid var(--border);
    border-radius: 1rem;
}

    .info-band h6 {
        font-weight: 800;
    }

.muted {
    color: var(--muted);
}
/* Tiles */
.tile {
    background: var(--tile);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1rem 1.1rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: box-shadow .2s ease, transform .05s ease;
}

    .tile:hover {
        box-shadow: 0 10px 28px rgba(0,0,0,.06);
        transform: translateY(-1px);
    }

    .tile .icon {
        width: 52px;
        height: 52px;
        border-radius: 12px;
        background: #f1f5f9;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        flex: 0 0 52px;
    }

    .tile h6 {
        margin: 0;
        font-weight: 700;
    }

    .tile small {
        color: var(--muted);
    }

.link-register {
    color: #6b6b6b;
}

    .link-register a {
        color: var(--brand-600);
        text-decoration: none;
    }

        .link-register a:hover {
            text-decoration: underline;
        }

/* Búsqueda */
.search-pill {
    max-width: 520px;
    margin: 1.25rem auto 0;
    position: relative;
    background-color: white;
    border-radius: 999px;
    padding-left:30px;
}

    .search-pill > input {
        border-radius: 999px;
        padding-left: 1.25rem;
        padding-right: 3rem;
        border: 0;
        height: 44px;
    }

    .search-pill .btn-icon {
        position: absolute;
        right: .35rem;
        top: .35rem;
        border-radius: 50%;
        width: 36px;
        height: 36px;
    }

/* Styling the search input field */
.gsc-input {
    border: none;
    padding: 8px 10px;
    font-size: 16px;
    background-color: white;
}

.gsc-input-box{
    border:none !important;
}

/* Styling the search button */
.gsc-search-button {
    color: white;
    border: none;
    font-size: 16px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 8px 15px;
}