/* General */
body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(0deg, rgb(0, 0, 0), rgb(255, 255, 255));
}



/* Header con logo */
header {
  background: #000000;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}
header img {
  max-width: 180px;
  height: auto;
}

/* Navegación */
nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  background: #000000;
  padding: 15px;
  border-bottom: 3px solid #c62828;
    border-top: 1px solid #c62828;
}
nav button {
  background: #000000;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 0px;
  transition: all 0.3s;
  font-size: 20px;
  letter-spacing: 0.7px;
}
nav button:hover {
  background: #c62828;
  transform: scale(1.05);
}
nav button.active {
  background: #c62828;
  box-shadow: 0 0 10px rgba(198,40,40,0.6);
}

/* Secciones */


.seccion {
  display: none;
  padding: 40px 20px;
  max-width: 1400px;
  margin: 40px auto;
  background: #000000;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  position: relative;
}
.seccion::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: #c62828;
  border-radius: 5px;
}
.seccion h2 {
  text-align: center;
  margin: 0 0 25px 0;
  font-weight: 600;
  color: #ffffff;
  font-size: 28px;
}

/* Galería tipo masonry */
.galeria.masonry {
  column-count: 4;
  column-gap: 15px;
}
.galeria.masonry img {
  width: 100%;
  margin-bottom: 15px;
  display: block;
  object-fit: contain; /* mantiene proporción original */
  transition: transform 0.3s, box-shadow 0.3s;
}
.galeria.masonry img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(198,40,40,0.5);
}
@media (max-width: 1000px) {
  .galeria.masonry { column-count: 3; }
}
@media (max-width: 700px) {
  .galeria.masonry { column-count: 2; }
}
@media (max-width: 500px) {
  .galeria.masonry { column-count: 1; }
}

/* Footer */
footer {
  background: #000000;
  color: #ddd;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
  font-size: 14px;
  border-top: 3px solid #c62828;
}
footer .redes {
  margin-top: 10px;
}
footer .redes a {
  margin: 0 10px;
  color: #c62828;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}
footer .redes a:hover {
  color: #fff;
}

/* ======== PHOTAREA'S ORIGINAL (Hero Style) ======== */
.original-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  min-height: 60vh;
  margin-top: 30px;
  text-align: center;
}

/* Imagen */
.original-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(198, 40, 40, 0.4);
}

.original-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.original-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 59, 59, 0.6);
}

/* Texto lateral */
.coming-side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coming-text {
  font-size: 52px;
  font-weight: 800;
  color: #ff3b3b;
  text-transform: uppercase;
  letter-spacing: 8px;
  text-shadow: 0 0 10px #ff3b3b, 0 0 20px #c62828, 0 0 35px #ff3b3b;
  animation: glow 2s infinite alternate ease-in-out, fadeIn 2s ease-in-out;
}

/* Animación puntos suspensivos */
.dots::after {
  content: '...';
  animation: dots 2s steps(3, end) infinite;
}

/* Efectos */
@keyframes dots {
  0% { content: ''; }
  33% { content: '.'; }
  66% { content: '..'; }
  100% { content: '...'; }
}

@keyframes glow {
  0% { opacity: 0.7; text-shadow: 0 0 5px #c62828; }
  100% { opacity: 1; text-shadow: 0 0 25px #ff3b3b, 0 0 45px #c62828, 0 0 60px #ff3b3b; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 900px) {
  .original-hero {
    flex-direction: column;
    gap: 30px;
  }
  .coming-text {
    font-size: 36px;
    letter-spacing: 4px;
  }
  .original-image {
    max-width: 80%;
  }
}

#btn-original {
  animation: pulseOriginal 1.5s infinite ease-in-out;
}

@keyframes pulseOriginal {
  0% { transform: scale(1); box-shadow: 0 0 10px rgba(198,40,40,0.6); }
  50% { transform: scale(1.08); box-shadow: 0 0 20px rgba(255,60,60,0.9); }
  100% { transform: scale(1); box-shadow: 0 0 10px rgba(198,40,40,0.6); }
}

/* Botón PHOTAREA'S ORIGINAL */
.original-destacado .golden-btn {
  background: linear-gradient(145deg, #111, #000);
  color: #FFD700;
  border: 1px solid rgba(255, 215, 0, 0.5);
  font-size: 20px;
  padding: 12px 28px;
  border-radius: 50px;
  letter-spacing: 2px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}
.original-destacado .golden-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.25);
  border-color: #FFD700;
}
/* Hover */
.golden-btn:hover {
  background: #c62828;
  transform: scale(1.05);
}

/* Activo */

.original-destacado {
  background: #000;
  text-align: center;
  padding: 25px 0;
}

.original-destacado .golden-btn {
  font-size: 20px;
  padding: 12px 28px;
  letter-spacing: 2px;
  font-weight: 700;
}

@keyframes premiumGlow {
  from {
    box-shadow: 0 0 10px rgba(255,215,0,0.4);
  }
  to {
    box-shadow: 0 0 30px rgba(255,215,0,0.9);
  }
}

/* ===== Empresas ===== */

.empresa-producto{
    margin-bottom:70px;
    padding-bottom:45px;
    border-bottom:1px solid rgba(255,255,255,.12);
}

.empresa-producto:last-child{
    border-bottom:none;
    margin-bottom:0;
}

.empresa-producto h3{
    color:#FFD700;
    font-size:32px;
    text-align:center;
    margin-bottom:25px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.empresa-producto .galeria{
    margin-top:20px;
}

/* ===== Barra superior ===== */

.topbar{
    background:#111;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 40px;
    border-bottom:1px solid #c62828;
    font-size:15px;
}

.topbar a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

.topbar a:hover{
    color:#c62828;
}

.topbar-right{
    display:flex;
    gap:25px;
}

@media (max-width:700px){

    .topbar{
        flex-direction:column;
        gap:10px;
        padding:12px;
        text-align:center;
    }

    .topbar-right{
        gap:15px;
    }

}

/* ===== Contacto Header ===== */

.header-contacto{
    margin-top:25px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

.header-contacto a{
    color:white;
    text-decoration:none;
    font-size:18px;
    transition:.3s;
}

.header-contacto a:hover{
    color:#c62828;
}

.header-contacto i{
    font-size:24px;
}

.header-contacto a:first-child i{
    margin-right:8px;
}

@media(max-width:700px){

    .header-contacto{
        gap:18px;
    }

    .header-contacto a{
        font-size:16px;
    }

    .header-contacto i{
        font-size:22px;
    }

}