body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* NAVBAR */
.top-navbar {
    background-color: #00a0df;
}

.top-navbar .nav-link,
.top-navbar .navbar-brand,
.top-navbar .phone-link {
    color: #fff !important;
    font-weight: 500;
}

.top-navbar .nav-link:hover,
.top-navbar .phone-link:hover {
    opacity: .85;
}

.brand-badge {
    width: 15rem;
}

/* HERO */
.hero-section {
    background-color: #f4f4f4;
    padding: 4rem 0 3rem;
}

.hero-title {
    font-weight: 600;
    font-size: 2.3rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: #555;
}

.booking-card {
    background-color: #fff;
    border-radius: .5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .06);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.btn-cta {
    background-color: #ec187b;
    border-color: #ec187b;
    font-weight: 600;
}

.btn-cta:hover {
    background-color: #d0136c;
    border-color: #d0136c;
}

.trust-badges img {
    height: 32px;
    margin-right: .5rem;
}

.press-logos img {
    max-height: 6rem;
    opacity: .7;
    margin: 0 .75rem;
}

.press-logos img:hover {
    opacity: 1;
}

/* SECCIONES GENERALES */
section.section-light {
    background-color: #f8f9fb;
}

section.section-white {
    background-color: #fff;
}

/* LISTA DE FEATURES */
.feature-list li {
    margin-bottom: .7rem;
    font-size: .98rem;
}

.feature-list .bi-check-circle-fill {
    color: #38a169;
    margin-right: .4rem;
}

.device-mockup {
    max-width: 100%;
    border-radius: .75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
}

/* WHAT WE LOVE DOING */
.service-card {
    position: relative;
    overflow: hidden;
    border-radius: .35rem;
    cursor: pointer;
}

.service-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform .3s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card span {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: .6rem .9rem;
    background: linear-gradient(to top, rgba(0, 0, 0, .65), transparent);
    color: #fff;
    font-weight: 500;
    font-size: .95rem;
}

/* REVIEWS */
.review-card {
    border-radius: .35rem;
    border: 1px solid #e1e4ea;
    padding: 1rem;
    background-color: #fff;
    height: 100%;
    font-size: .9rem;
}

.review-name {
    font-weight: 600;
    margin-bottom: .25rem;
}

.review-stars {
    color: #00b67a;
    font-size: .85rem;
    margin-bottom: .4rem;
}

/* STORAGE */
.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid #e0e4ea;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .5rem;
    font-size: 1.2rem;
}

/* GALLERY */
.thumb-strip img {
    height: 60px;
    width: 60px;
    object-fit: cover;
    margin: .25rem;
    border-radius: .25rem;
    opacity: .7;
}

.thumb-strip img.active,
.thumb-strip img:hover {
    opacity: 1;
    outline: 2px solid #00a0df;
}

/* FOOTER */
footer {
    background-color: #3b3f49;
    color: #e6e6e6;
    font-size: .9rem;
}

footer a {
    color: #e6e6e6;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.footer-bottom {
    background-color: #32353d;
    font-size: .8rem;
}