/* ===== FONTS ===== */

@font-face {

    font-family: "Quilon";

    src: url("../assets/fonts/Quilon/Quilon-Regular.otf")
        format("opentype");

    font-weight: normal;

    font-style: normal;
}

@font-face {

    font-family: "Alpino";

    src: url("../assets/fonts/Alpino/Alpino-Light.otf")
        format("opentype");

    font-weight: normal;

    font-style: normal;
}

/* ===== RESET ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== VARIABLES ===== */

:root {

    --background: #000000;
    --surface: #111111;

    --text: #FFFFFF;

    --primary: #4591FF;

    --accent: #FFFA00;
}

/* ===== GENERAL ===== */

body {

    background-color: var(--background);

    color: var(--text);

    font-family: "Alpino", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
}

.hero-buttons {

    display: flex;

    justify-content: center;

    gap: 1rem;

    margin-top: 2rem;
}

.hero-buttons button {

    padding: 1rem 2rem;

    border-radius: 12px;

    font-size: 1rem;

    font-weight: 600;

    border: none;

    cursor: pointer;

    transition: .3s;
}

.hero-buttons button:first-child {

    background: var(--primary);

    color: white;
}

.hero-buttons button:first-child:hover {

    background: var(--accent);

    color: black;

    transform: translateY(-3px);
}

.hero-buttons button:last-child {

    background: transparent;

    color: white;

    border: 1px solid white;
}

.hero-buttons button:last-child:hover {

    border-color: var(--primary);

    color: var(--primary);

    transform: translateY(-3px);
}

/* ===== LAYOUT ===== */

.container {
    width: min(1200px, 90%);
    margin: 0 auto;
}

section {
    padding: 6rem 0;
}

/* ===== HERO ===== */

.hero {

    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 0;
}

.hero h1 {

    font-family: "Quilon", serif;

    font-size: 4rem;

    max-width: 900px;

    margin: 0 auto 2rem;

    line-height: 1.1;
}

.hero p {

    max-width: 700px;

    margin: 0 auto;

    font-size: 1.2rem;

    line-height: 1.6;
}

.hero .container {

    justify-content: center;
}

/* ===== NAVBAR ===== */

.navbar {

    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar .container {

    display: flex;

    justify-content: space-between;

    align-items: center;

    height: 80px;
}

.nav-links {

    display: flex;

    gap: 2rem;
}

.nav-links a {

    transition: .3s;
}

.nav-links a:hover {

    color: var(--accent);
}

.logo {

    display: flex;
    align-items: center;
}

.logo img {

    height: 70px;

    width: auto;

    display: block;
}

/* ===== SERVICIOS ===== */

#servicios {

    padding: 7rem 0;
}

#servicios h2 {

    text-align: center;

    margin-bottom: 2.5rem;

    font-size: 3rem;
}

.services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 2rem;
}

.service-card {

    background: #111111;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 1.8rem;
    transition: .3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card:hover {

    transform: translateY(-8px);

    border-color: var(--accent);

    box-shadow: 0 0 25px rgba(255, 240, 0, .15);
}

.service-card h3 {

    margin-bottom: 1rem;

    color: var(--primary);
}

.service-card p {

    line-height: 1.7;
}

.service-card:hover {

    transform: translateY(-8px);

    border-color: var(--primary);

    box-shadow: 0 0 25px var(--primary);
}

.highlight{
    color: var(--accent);
}

h2,
h3 {

    font-family: "Quilon", serif;
}

.nav-cta {

    background: var(--accent);

    color: black;

    padding: .8rem 1.4rem;

    border-radius: 10px;

    font-weight: 700;

    transition: .3s;
}

.nav-cta:hover {

    transform: translateY(-2px);
    background: var(--primary);
    color: white;
}

#proceso {

    padding: 7rem 0;
}

#proceso h2 {

    text-align: center;

    margin-bottom: 2.5rem;

    font-size: 3rem;
}

.process-grid {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 1rem;
}

.process-card {

    background: #111111;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 20px;

    padding: 2rem;

    text-align: center;
}

.process-card span {

    color: var(--accent);

    font-size: 2rem;

    font-weight: 700;

    display: block;

    margin-bottom: 1rem;
}

#contacto {
    padding: 6rem 0;
}

/* ===== FOOTER ===== */

footer {

    border-top: 1px solid rgba(255,255,255,.08);

    padding: 2rem 0;
}

.footer-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 2rem;
}

.footer-logo {

    height: 70px;
}

.footer-center {

    text-align: right;
}

.footer-slogan {

    color: var(--accent);

    margin-bottom: .5rem;
}

/* ===== POR QUÉ ===== */

#why {

    padding: 6rem 0;
}

#why h2 {

    text-align: center;

    margin-bottom: 2.5rem;
}

.why-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 2rem;
}

.why-card {

    text-align: center;
}

.why-card h3 {

    color: var(--accent);

    margin-bottom: 1rem;
}

.why-card p {

    line-height: 1.8;
}

.process-card {

    transition: .3s;
}

.process-card:hover {

    transform: translateY(-8px);

    border-color: var(--primary);
}

.why-card {

    transition: .3s;
}

.why-card:hover {

    transform: translateY(-6px);
}

/* ===== PAQUETES ===== */

#paquetes {

    padding: 7rem 0;
}

#paquetes h2 {

    text-align: center;

    margin-bottom: 3rem;
}

.packages-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 1.5rem;
}

.package-card {

    background: #111111;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 20px;

    padding: 2rem;

    position: relative;

    transition: .3s;
}

.package-card:hover {

    transform: translateY(-8px);

    border-color: var(--primary);
}

.package-card ul {

    margin-top: 1rem;

    padding-left: 1rem;
}

.package-card li {

    margin-bottom: .5rem;
}

.featured {

    border: 2px solid var(--accent);
}

.badge {

    position: absolute;

    top: -12px;

    right: 20px;

    background: var(--accent);

    color: black;

    padding: .4rem .8rem;

    border-radius: 999px;

    font-size: .8rem;

    font-weight: 700;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {

    .nav-links {

        display: none;
    }

    .hero h1 {

        font-size: 2.8rem;
    }

    .hero p {

    font-size: 1.05rem;

    line-height: 1.7;

    max-width: 320px;

    margin: 0 auto 2rem;
}

.hero {

    min-height: 75vh;

    padding-top: 4rem;

    padding-bottom: 4rem;
}

    .services-grid {

        grid-template-columns: 1fr;
    }

    .process-grid {

        grid-template-columns: 1fr;
    }

    .why-grid {

    grid-template-columns: 1fr;
    }

    .packages-grid {

    grid-template-columns: 1fr;
    }

    .footer-content {

    flex-direction: column;
    text-align: center;
    }

    .footer-center {

    text-align: center;
    }

}