
/* -------------------------------------------
   GLOBAL – Fuente estilo Apple
------------------------------------------- */
body {
    margin: 0;
    padding: 90px 0 0 0;   /* Espacio para la barra superior */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial;
    background: #ffffff;
    color: #1c1c1e;
}

/* -------------------------------------------
   NAVBAR – Estilo Apple
------------------------------------------- */
.navbar {
    width: 100%;
    height: 70px;
    padding: 0 50px;
    display: flex;
    align-items: center;
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    border-bottom: 1px solid #efefef;
}



/* -------------------------------------------
   HERO
------------------------------------------- */
.hero {
    text-align: center;
    padding: 120px 20px;
    max-width: 900px;
    margin: auto;
}

.hero h1 {
    font-size: 68px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero p {
    font-size: 22px;
    color: #3a3a3c;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    transition: 0.2s;
}

.cta-btn:hover {
    background: #333;
}

/* -------------------------------------------
   SERVICIOS – Estilo Apple con cubos
------------------------------------------- */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.service-card {
    background: #fafafa;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    transition: transform 0.25s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h2 {
    font-size: 26px;
    margin-bottom: 12px;
}

/* -------------------------------------------
   ABOUT
------------------------------------------- */
.about {
    max-width: 900px;
    margin: auto;
    text-align: center;
    padding: 80px 20px;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.about p {
    font-size: 20px;
    color: #5a5a5c;
    line-height: 1.5;
}

/* -------------------------------------------
   CONTACTO
------------------------------------------- */
.contact {
    text-align: center;
    padding: 100px 20px;
    background: #f5f5f7;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.contact p {
    font-size: 20px;
    color: #3a3a3c;
    margin-bottom: 30px;
}

/* -------------------------------------------
   FOOTER
------------------------------------------- */
footer {
    text-align: center;
    padding: 40px;
    color: #8e8e93;
    font-size: 14px;
}

.text-logo {
    font-size: 50px;
    font-weight: 200;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial;
    color: #000000;
}


