﻿body{
    background: black;
    font-family: "Inter";
}


.cintillo{
    background: black;
}

nav a{
    color: white;
    text-decoration: none;
}
nav ul{
    list-style: none;
    padding: 0;
}
nav ul li{
    width: 25%;
    float: left;
}
.menu{
    text-align: center;
    font-size: 17px;
    padding: 6px 0;
}


.efecto{
    background: url(../images/efecto.png) no-repeat center center;
    background-size: cover;
    color: white;
    font-size: 70px;
    font-weight: bold;
    padding-top: 100px;
    padding-bottom: 100px;
}
.efecto h1{
    font-size: 50px;
    font-weight: bold;
}
.efecto strong{
    color: #55dbab;
}

.btn-trans{
    border: 3px solid white;
    color: #55dbab;
    font-size: 20px;
    font-weight: lighter;
    padding: 7px 20px;
    border-radius: 30px;

    transition: all 0.5s easy;
}
.btn-trans:hover{
    border: 3px solid white;
    font-weight: bold;
    color: #55dbab;
}

.logotipo img{
    width: 100%;
}


.productos{
    background: white;
    padding-top: 40px;
    padding-bottom: 40px;
}
.productos a{
    text-decoration: none;
}


.pro{
    margin-bottom: 40px;
}


.pro img{
    width: 100%;
}

.p1{
    color: gray;
    font-size: 20px;
}

.desc{
    text-align: center;
    font-size: 16px;
    margin-top: -30px;
}
.desc span, .desc b{
    width: 100%;
    display:inline-block;
}


.lienzo{
    text-align: center;
}

.b{
    border: 1px solid black;
    width: 35px;
    height: 35px;
    display: inline-block;

    border-radius: 50%;
}

.b1{background: #a31729;}
.b2{background: #1d3046;}
.b3{background: #f9bb61;}
.b4{background: white;}
.b5{background: #222222;}


.negro2{
    background: black;
    color: white;
    font-family: Alef;
    font-size: 22px;
    padding-top: 50px;
    padding-bottom: 50px;
}


.fondo-about{
    background: url(../images/fondo-about.png) no-repeat center center;
    background-size: cover;
}
.fondo-contact{
    background: url(../images/fondo-contact.png) no-repeat center center;
    background-size: cover;
}
.fondo-faqs{
    background: url(../images/fondo-faqs.png) no-repeat center center;
    background-size: cover;
}


.faqs{
    background: black;
    color: white;
    font-family: Alef;
    padding-top: 50px;
    padding-bottom: 50px;
}

.f{
    font-size: 20px;
    margin-bottom: 30px;
}
.f strong{
    width: 100%;
    font-size: 33px;
    display: inline-block;
}
.f img{
    width: 35px;
}


@media screen and (max-width:1400px){

}

@media screen and (max-width:1200px){

}

@media screen and (max-width:992px){

}

@media screen and (max-width:768px){
    .logotipo{
        margin-bottom: 40px;
    }
}

@media screen and (max-width:576px){
    
}



:root {
    --bg: #0f0f12;
    --card: #ffffff;
    --text: #1c1f2a;
    --muted: #8f95a3;
    --line: #cfd3ff;
    --btn: #8f93f6;
    --btn-hover: #7a7fe9;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.page {
    display: grid;
    place-items: center;
    padding: 32px 16px;
}

.form-card {
    width: min(980px, 100%);
    background: var(--card);
    border-radius: 26px;
    box-shadow: var(--shadow);
    padding: 42px 56px 46px;
}

.contact-form {
    width: 100%;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px 70px;
    align-items: start;
}

.field label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.2px;
    margin-bottom: 16px;
}

.field input,
.field textarea {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: var(--text);
    padding: 10px 0 14px;
    border-bottom: 2px solid var(--line);
}

.field textarea {
    resize: none;
    padding-top: 6px;
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--muted);
}

.field input:focus,
.field textarea:focus {
    border-bottom-color: #a9adff;
}

.field-full {
    grid-column: 1 / -1;
}

.actions {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.btn2 {
    border: 0;
    cursor: pointer;
    background: var(--btn);
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 56px;
    border-radius: 10px;
    box-shadow: 0 14px 0 rgba(143, 147, 246, 0.28);
    transition: transform 0.12s ease, background 0.12s ease, box-shadow 0.12s ease;
}

.btn2:hover {
    background: var(--btn-hover);
    transform: translateY(-1px);
}

.btn2:active {
    transform: translateY(1px);
    box-shadow: 0 10px 0 rgba(143, 147, 246, 0.22);
}

/* Responsive */
@media (max-width: 820px) {
    .form-card {
        padding: 28px 22px 30px;
        border-radius: 22px;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .actions {
        margin-top: 26px;
    }

    .btn2 {
        width: 100%;
        max-width: 320px;
    }
}