/* CSS DE LA INTERFAZ ABOUT */
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

main {
    height: 100vh;
    background: url('/img/FondoImg.jpg');
    background-size: cover;
    background-position: center;
}

a {
    text-decoration: none;
    color: #fff;
}

.navbar {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 25px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.navbar .logo {
    font-size: 30px;
    font-weight: 700;
}

.navbar ul {
    display: flex;
}

.navbar ul li {
    position: relative;
    list-style: none;
    margin-left: 35px;
}

.navbar ul li::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .5s;
}

.navbar ul li:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar ul li a {
    font-size: 20px;
    font-weight: 500;
}

.content {
    display: flex;
    align-items: center;
    gap: 80px;
    height: 100vh;
    padding: 50px 100px 0;
    color: #fff;
}

.tag-sistema {
    position: absolute;
    top: 120px;
    left: 100px;
    padding: 12px 30px;
    background: #0b3d2e;
    color: white;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .4);
    border: 1px solid rgba(255, 255, 255, .2);
}

.about-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 100px 50px;
    color:white;
    gap:50px;
}

.about-hero h1 {
    font-size: 55px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, .8);
}

.about-hero p {
    width: 550px;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 35px;
}

.features {
    display: flex;
    gap: 20px;
}

.feature-card {
    width: 150px;
    height: 90px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(0,0,0,.2);
}

.feature-card h2 {
    font-size: 28px;
    color: #00d4aa;
    margin-bottom: 5px;
}

.feature-card span {
    font-size: 12px;
    color: white;
}

.tech-container {
    width: 550px;
    padding: 30px 30px 30px 30px;
    border-radius:20px;
    background: rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 20px rgba(0,0,0,.3);
}

.tech-container h2 {
    font-size:35px;
    margin-bottom:10px;
}

.tech-container p {
    color:#ddd;
    margin-bottom:25px;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    line-height: 1.5;
}

.tech-grid {
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap:15px;
}

.tech-card {
    height:120px;
    border-radius:15px;
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.2);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    transition:.3s;
}

.tech-card:hover {
    transform:translateY(-5px);
    background:rgba(0,212,170,.15);
}

.tech-card img {
    width:40px;
    height:40px;
    object-fit:contain;
    margin-bottom:8px;
}

.tech-card h3 {
    font-size:16px;
}

.tech-card span {
    font-size:12px;
    color:#ccc;
}

/* RESPONSIVE */