@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


body {
    background-color: #0b1220;
    color: #ea580c;
    line-height: 1.6;
}


header {
    background: linear-gradient(135deg, #020617, #0b1220);
    text-align: center;
    padding: 70px 20px;
    border-bottom: 3px solid #f97316;
}

header h1 {
    font-size: 3rem;
    color: #ea580c;
}

header p {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #ea580c;
}


main {
    padding: 60px 8%;
}


h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: #ea580c;
}


.productos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}


.producto {
    background-color: #020617;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: 0.3s;
    padding: 20px;
}

.producto:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(249,115,22,0.4);
}

.producto img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 12px;
}


.producto h3 {
    margin-top: 15px;
    margin-bottom: 10px;
    color: #ea580c;
    font-size: 1.3rem;
}

.producto p {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #ea580c;
}
.producto {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.producto .btn-carrito {
    margin-top: auto;
}

#contacto {
    margin-top: 90px;
    text-align: center;
}

#contacto button {
    margin-top: 20px;
    padding: 15px 40px;
    border: none;
    border-radius: 40px;
    background: #f97316;
    color: #020617;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

#contacto button:hover {
    background: #ea580c;
    transform: scale(1.05);
}


.footer {
    margin-top: 80px;
    background: #020617;
    padding: 60px 8%;
}

.footer-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
}

.footer-links h4 {
    color: #f97316;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
    color: #ea580c;
    font-size: 0.95rem;
}


.social-links a {
    display: inline-block;
    margin-right: 12px;
    font-size: 1.4rem;
    color: #e5e7eb;
    transition: 0.3s;
}

.social-links a:hover {
    color: #f97316;
    transform: scale(1.2);
}


@media (max-width: 600px) {
    header h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .producto img {
        height: 160px;
    }
}


#tercerizados {
    margin-top: 90px;
}

.tercerizados-box {
    max-width: 900px;
    margin: auto;
    background: #020617;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.tercerizados-box p {
    margin-bottom: 15px;
    color: #ea580c;
}

.tercerizados-box ul {
    list-style: none;
    margin: 20px 0;
}

.tercerizados-box ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.nota {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #f97316;
    font-weight: 600;
}

.contacto-botones {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-wsp {
    background: #ea580c;
    color: #020617;
    border: none;
    padding: 15px 35px;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-wsp:hover {
    background: #ea580c;
    transform: scale(1.05);
}

.btn-mail {
    background: #ea580c;
    color: black;
    border: none;
    padding: 15px 35px;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-mail:hover {
    background: #ea580c;
    transform: scale(1.05);
}


#zonas {
    padding: 70px 20px;
    background: transparent;
    text-align: center;
}

.zonas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 30px auto;
}

.zona {
    background: #020617;
    border: 1px solid #f97316;
    color: #ea580c;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(249,115,22,0.2);
}

.zona:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

.zonas-extra {
    margin-top: 20px;
    font-style: italic;
    color: #94a3b8;
}

#zonas h2 {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 15px;
    color: #f97316;
    font-size: 2.2rem;
    font-weight: 800;
}

.zonas-contenido {
    background: #020617;
    padding: 40px 20px;
    border-radius: 20px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 0 25px #00000055;
}


.aviso-mail {
    background: #020617;
    border: 1px solid #f97316;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,.2);
    color: #94a3b8;
    font-size: 14px;
    margin-top: 12px;
}
#carrito {
    background: #020617;
    padding: 25px;
    border-radius: 12px;
    max-width: 500px;
    margin: 40px auto;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

#lista-carrito li {
    margin: 8px 0;
    display: flex;
    justify-content: space-between;
}

.btn-carrito {
    margin-top: 10px;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: #22c55e;
    color: black;
    font-weight: bold;
}

.btn-carrito:hover {
    opacity: 0.8;
}
#carrito-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ea580c;
    color: black;
    padding: 15px 18px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 0 15px black;
    z-index: 1000;
}

#panel-carrito {
    position: fixed;
    right: -400px;
    top: 0;
    height: 100vh;
    width: 320px;
    background: #020617;
    padding: 20px;
    transition: 0.3s;
    z-index: 999;
    box-shadow: -5px 0 15px black;
}

#panel-carrito.activo {
    right: 0;
}

#panel-carrito h2 {
    text-align: center;
}

#lista-carrito li {
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
}

.form-carrito input,
.form-carrito select {
    width: 100%;
    margin: 6px 0;
    padding: 8px;
    border-radius: 6px;
    border: none;
}

.btn-carrito {
    margin-top: 10px;
    padding: 10px;
    background: #ea580c;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;

}


#panel-carrito {
    background: rgba(2,6,23,0.97);
    border-left: 2px solid rgba(249,115,22,0.3);
}


.form-carrito .btn-wsp {
    margin-bottom: 18px;
}


.form-carrito .btn-vaciar {
    background: #ef4444;
    color: white;
}

.form-carrito .btn-vaciar:hover {
    background: #dc2626;
}


.form-carrito input,
.form-carrito select {
    background: #0b1220;
    color: #e5e7eb;
    border: 1px solid rgba(249,115,22,0.2);
}

#lista-carrito li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}


#panel-carrito .btn-wsp {
    margin-top: 20px;
}

#panel-carrito .btn-mail {
    margin-top: 10px;
}