* 

*  {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #fff;
    color: #222;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 75px;
    background: #0f172a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    z-index: 1000;
}

.logo-container {
            display: flex;
            align-items: center;
            cursor: pointer;
            overflow: hidden;
            text-decoration: none;
        }

        .logo {
            width: 42px;
            height: 42px;
            background: #1e293b;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: bold;
            font-size: 18px;
        }

        .logo-text {
            max-width: 0;
            overflow: hidden;
            white-space: nowrap;
            color: #fff;
            font-size: 20px;
            margin-left: 14px;
            transition: max-width 0.6s ease;
        }

        .logo-container:hover .logo-text {
            max-width: 240px;
        }

nav a {
    color: #cbd5e1;
    text-decoration: none;
    margin-left: 30px;
    font-size: 15px;
}

nav a:hover {
    color: #fff;
}

main {
    padding-top: 110px;
    min-height: calc(100vh - 150px);
    padding-left: 40px;
    padding-right: 40px;
}

footer {
    background: #0f172a;
    color: #9ca3af;
    text-align: center;
    padding: 25px;
    font-size: 14px;
}
/* CONTACTO */
.contacto {
    max-width: 1100px;
    margin: auto;
    padding: 40px 0;
}

.contacto h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contacto-descripcion {
    color: #555;
    margin-bottom: 40px;
}

.contacto-contenedor {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}


.contacto-info {
    background: #f1f5f9;
    padding: 30px;
    border-radius: 8px;
}

.contacto-info h2 {
    margin-bottom: 15px;
}

.contacto-info p {
    margin-bottom: 10px;
    color: #333;
}



.whatsapp-contacto {
    display: inline-block;
    margin-top: 20px;
    background: #25d366;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}
.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    background: #25d366;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 2000;
}

.whatsapp-float:hover {
    background: #1ebe5d;
}
