:root {
    --primary: #1fa7a3;
    --primary-dark: #178a87;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
}

/* NAVBAR */
.navbar {
    position: fixed;
    width: 100%;
    padding: 20px 80px;
    display: flex;
    justify-content: space-between;
    background: rgba(10,20,40,0.6);
    backdrop-filter: blur(10px);
    color: white;
    z-index: 1000;
}

.logo-text {
    font-weight: bold;
    color: var(--primary);
}

.nav-links a {
    margin-left: 30px;
    text-decoration: none;
    color: white;
    font-size: 13px;
    letter-spacing: 2px;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* OVERLAY */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}

/* LOGO (SIN ANIMACIÓN) */
.logo-floating {
    position: absolute;
    top: 80px;
    left: 130px;
    width: 300px;
    z-index: 999;

    /* disimula fondo blanco */
    mix-blend-mode: multiply;
    filter: contrast(1.1) brightness(1.05);
}

/* SOLO SERVICES */
.services-logo {
    left: 60px;
    width: 350px;
}

/* CONTENIDO */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* TITULO */
.main-title {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

/* CAJA */
.content-box {
    max-width: 550px;
    background: rgba(20,20,20,0.28);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    border: 1px solid rgba(255,255,255,0.08);
}

/* LISTAS */
ul {
    margin: 15px 0;
}

li {
    margin-bottom: 8px;
}

/* BOTÓN */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    border-radius: 30px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.btn i {
    margin-right: 8px;
}

.btn:hover {
    background: var(--primary-dark);
}

/* TITULOS HOME / INICIO */
.section-title {
    text-align: center;
    font-size: 22px;
    letter-spacing: 3px;
    margin-top: 15px;
    margin-bottom: 20px;
    color: var(--primary);
}

/* ESPACIADO ENTRE PÁRRAFOS */
.content-box p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-page{
    min-height: 100vh;
    width: 100%;
    height: auto;
    padding-top: 120px;
    padding-bottom: 120px;
}

.about-container{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:30px;
    max-width:1200px;
    margin:auto;
    padding:40px;
}

.about-container .content-box{
    width:50%;
}

.about-btn-container {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.about-only{
    margin-top: 100px;
}

.contact-box{
    max-width: 700px;
    margin: 40px auto 0 auto;
    padding: 60px 40px;
    border-radius: 20px;
    background: rgba(20,20,20,0.28);
    backdrop-filter: blur(8px);
    text-align:center;
    color:white;
}

.contact-box p{
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.7;
}

.contact-column{
    width:45%;
    color:white;
    text-align:center;
}

.contact-column p{
    margin-bottom:15px;
    line-height:1.7;
}

.contact-btn{
    width:100%;
    text-align:center;
    margin-top:20px;
}

html, body{
    margin:0;
    padding:0;
    overflow-x:hidden;
}

