/* ======= RESET ======= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background: #111;
    color: #fff;
}



/* --- BARRA DE NAVEGACIÓN --- */
.fuego-navbar {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
}

.fuego-logo {
    display: flex;
    align-items: center;
    flex-direction: column;
}

/* Logo simulado con CSS (Círculo con F) */
.logo-circle {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    font-weight: bold;
    color: #000;
    border: 2px solid #ff002b;
    box-shadow: 0 0 15px #ff002b;
}

.logo-text {
    margin-top: 5px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.fuego-menu {
    display: flex;
    gap: 30px;
}

.fuego-menu a {
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    padding-bottom: 5px;
}

.fuego-menu a:hover, .fuego-menu a.active {
    color: #ff002b;
    border-bottom: 2px solid #ff002b;
}

/* --- CONTENIDO CENTRAL --- */
.hero-content {
    position: relative;
    z-index: 10;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    margin-top: -50px; /* Ajuste visual para centrar mejor */
}

.main-title {
    font-size: 5rem; /* Tamaño grande para PC */
    font-weight: 700;
    color: #ff002b; /* Color naranja rojizo */
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 0 20px rgba(255, 51, 0, 0.6);
    line-height: 1;
}

.sub-title {
    font-size: 2rem;
    font-weight: 400;
    margin: 10px 0;
    letter-spacing: 2px;
}

.cta-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-transform: uppercase;
}
 i{
    color: #363636;
 }

/* ======= HERO ======= */
.hero {
    position: relative;
    height: 90vh;
    background: url("fond.jpg") center/cover fixed;
    display: flex;
    justify-content: center;
    align-items: center; /* ✔ Centrado vertical */
    text-align: center;
}

.heromv {
    position: relative;
    height: 90vh;
    background: url("vivo.jpg") center/cover fixed;
    display: flex;
    justify-content: center;
    align-items: center; /* ✔ Centrado vertical */
    text-align: center;
}

.herod {
    position: relative;
    height: 90vh;
    background: url("disco.jpg") center/cover fixed;
    display: flex;
    justify-content: center;
    align-items: center; /* ✔ Centrado vertical */
    text-align: center;
}

.herov {
    position: relative;
    height: 90vh;
    background: url("violin.jpg") center/cover fixed;
    display: flex;
    justify-content: center;
    align-items: center; /* ✔ Centrado vertical */
    text-align: center;
}

.heroma {
    position: relative;
    height: 90vh;
    background: url("mati.jpg") center/cover fixed;
    display: flex;
    justify-content: center;
    align-items: center; /* ✔ Centrado vertical */
    text-align: center;
}

.heroso {
    position: relative;
    height: 90vh;
    background: url("sombre.jpg") center/cover fixed;
    display: flex;
    justify-content: center;
    align-items: center; /* ✔ Centrado vertical */
    text-align: center;
}

.herowe {
    position: relative;
    height: 90vh;
    background: url("weddi.jpg") center/cover fixed;
    display: flex;
    justify-content: center;
    align-items: center; /* ✔ Centrado vertical */
    text-align: center;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.63);
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-content h1 {
    font-size: 55px;
}
.hero-content h2 {
    margin-top: 10px;
    font-size: 26px;
    opacity: 0.9;
}
.cta-btn {
    margin-top: 20px;
    display: inline-block;
    padding: 12px 25px;
    background: #ff002b;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

/* ======= SERVICIOS ======= */
.servicios {
    padding: 80px 40px;
    text-align: center;
    background: #000;
}
.section-title {
    font-size: 35px;
    margin-bottom: 40px;
}
.bac{
    max-width: 1366px;
    width: 100%;
    margin: 0 auto;
}

/* FLEXBOX CENTRADO */
.servicios-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;   /* CENTRA FILAS */
    gap: 30px;
}

.servicio-item {
    background: #1a1a1a;
    padding: 25px 20px;
    border-radius: 10px;
    width: 250px;              /* 🔥 ancho fijo, NO se deforman */
    text-align: center;
    transition: 0.3s;
}

.servicio-item img {
    width: 60px;
}

.servicio-item:hover {
    background: #262626;
}
.both{
text-decoration: none;
color: #fff;
}

/* ======= CONTACTO ======= */
.contacto {
    padding: 80px 40px;
    background: #111;
    text-align: center;
}
.formulario {
    max-width: 450px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.formulario input,
.formulario select {
    padding: 10px;
    border-radius: 5px;
    border: none;
}
.wa-btn {
    background: #25d366;
    color: white;
    padding: 12px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

/* ======= ANIMACIONES ======= */
.fade-in {
    animation: fadeIn 1.2s ease forwards;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.slide-up {
    animation: slideUp 1.3s ease forwards;
}
@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ======= RESPONSIVE ======= */
@media(max-width: 768px) {
    .hero-content h1 {
        font-size: 40px;
    }
}

@media(max-width: 1366px) {
    .bac{
 width: 100%;   
}
}

@media (max-width: 768px) {
    .fuego-navbar {
        flex-direction: column;
        padding: 20px;
        background: rgba(0,0,0,0.8); /* Fondo más oscuro en móvil */
    }

    .fuego-menu {
        margin-top: 20px;
        gap: 15px;
        font-size: 0.9rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .fuego-menu a {
    font-size: 0.9rem;
}

    .main-title {
        font-size: 3rem; /* Título más pequeño en móvil */
    }

    .sub-title {
        font-size: 1.5rem;
    }

    .cta-text {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .hero-btn {
        width: 80%; /* Botón ancho en móvil */
        padding: 15px;
    }
}

.footer-social {
    background: #0d0d0d;
    padding: 40px 20px;
    text-align: center;
}

.footer-social h3 {
    color: #b3b1b1;
    font-size: 22px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 500;
}

.footer-social .social-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;

}

.footer-social .social-icons a {
    background: #ffffff15;
    border: 1px solid #ffffff30;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    transition: 0.3s ease;
    text-decoration: none;
}

.footer-social .social-icons a:hover {
    background: #bb840e;
    color: #000000;
    transform: translateY(-4px);
    box-shadow: 0 4px 12px #ffcc0070;
}

/* Responsive */
@media (max-width: 480px) {
    .footer-social h3 {
        font-size: 18px;
    }
    .footer-social .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
