 body { font-family: Arial, sans-serif; margin: 0; padding: 0; background: #111; color: #fff; line-height: 1.6; }
    header.hero { position: relative; overflow: hidden; text-align: center; color: white; background: #000; }
    video.bg-video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translate(-50%, -50%); object-fit: cover; z-index: -2; }
    .overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); z-index: -1; }
    .hero-content { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100%; padding: 20px; }
    h1 { margin: 0; text-transform: uppercase; text-shadow: 3px 3px 12px black; }
    .price { font-size: clamp(2rem, 7vw, 4rem); color: #ff0; margin: 20px 0; text-shadow: 2px 2px 8px black; }
    .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
    section { margin-bottom: 50px; background: #b30903; padding: 25px; border-radius: 10px;     border: 3px solid #fff; }
    h2 { color: #fff; border-bottom: 3px solid #f2e710; padding-bottom: 6px; }
    .cta-button { display: inline-block; background: #25D366; color: white; padding: 16px 40px; font-size: 1.4em; text-decoration: none; border-radius: 50px; margin: 20px 0; box-shadow: 0 6px 15px rgba(0,0,0,0.6); transition: transform 0.3s; }
    .cta-button:hover { transform: scale(1.08); }
    .profiles { display: flex; flex-wrap: wrap; gap: 25px; justify-content: center; padding: 30px; }
    .profile-card { background: #194d84; width: 240px; padding: 12px; text-align: center; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.5); border:2.5px solid #fff }
    .profile-card img { width: 100%; height: auto; border-radius: 8px; object-fit: cover; aspect-ratio: 3/4; }
    .video-banner { width: 100%; max-width: 800px; margin: 40px auto; background: #000; border-radius: 12px; overflow: hidden; position: relative; box-shadow: 0 10px 30px rgba(255,51,102,0.4); }
    .video-banner video { width: 100%; display: block; }
    .video-overlay { position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%); text-align: center; color: white; text-shadow: 2px 2px 6px black; z-index: 2; }
    footer { background: #000; text-align: center; padding: 25px; font-size: 1em; }
    a { color: #5391eb; text-decoration: none;}
    a :hover { color: #f3ef20; }
    @media (max-width: 768px) { .hero-content { padding: 15px; } }
    footer {
      background: linear-gradient(to bottom, #1a0000, #000000);
      border-top: 4px solid #c00;
      padding: 50px 20px 0 20px;
      font-size: 0.95em;
      position: relative;
    }
    p { text-align: justify; padding: 7px; }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 20px;
    }
    .footer-section {
      flex: 1;
      min-width: 220px;
      padding: 0 15px;
      box-sizing: border-box;
    }
    /* Vertical dotted separators on desktop */
    @media (min-width: 769px) {
      .footer-section:not(:last-child) {
        border-right: 1px dotted #888;
      }
    }
    .footer-section h3 {
      color: #fff;
      margin-bottom: 20px;
      font-size: 1.25em;
      font-weight: bold;
      border-left: 3px solid #fff;
      padding-left: 10px;
      text-transform: uppercase;
      text-align: left;
    }
    .footer-section p {
      color: #ccc;
      font-size: 0.95em;
      line-height: 1.6;
      margin: 0;
      padding: 0 0 10px 0;
      text-align: left;
    }
    .footer-section a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-section a:hover {
      color: #ff3366;
    }
    .footer-links a {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 10px 0;
      color: #ccc;
      text-align: left;
    }
    .footer-links a i, .footer-section i {
      color: #fff;
      font-size: 0.9em;
    }
    .footer-locations-list {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: left;
    }
    .footer-locations-list li {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 10px 0;
      color: #ccc;
    }
    .footer-contact-list {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: left;
    }
    .footer-contact-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 12px 0;
      color: #ccc;
    }
    .social-divider {
      border-top: 1px dotted #888;
      margin: 30px auto 15px auto;
      max-width: 1200px;
    }
    .social-container {
      display: flex;
      justify-content: center;
      gap: 15px;
      padding: 10px 0;
    }
    .social-circle {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      color: #fff !important;
      font-size: 1.2em;
      transition: transform 0.3s;
    }
    .social-circle:hover {
      transform: scale(1.15);
    }
    .social-circle.facebook {
      background-color: #3b5998;
    }
    .social-circle.whatsapp {
      background-color: #25d366;
    }
    .social-circle.instagram {
      background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    }
    .social-divider-bottom {
      border-bottom: 1px dotted #888;
      margin: 15px auto 0 auto;
      max-width: 1200px;
    }
    .disclaimer {
      max-width: 1200px;
      margin: 20px auto 0 auto;
      font-size: 0.8em;
      color: #888;
      text-align: center;
      padding: 10px 20px;
      line-height: 1.5;
    }
    .copyright-bar {
      background-color: #000;
      color: #fff;
      padding: 12px 20px;
      text-align: center;
      font-size: 0.9em;
      margin-top: 15px;
      font-weight: bold;
    }
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        gap: 30px;
      }
      .footer-section {
        width: 100%;
        border-right: none !important;
        border-bottom: 1px dotted #444;
        padding-bottom: 20px;
      }
      .footer-section:last-child {
        border-bottom: none;
        padding-bottom: 0;
      }
    }
/* Horizontal Navbar */

.top-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 30px;
    background:rgba(0,0,0,0.75);
    backdrop-filter:blur(10px);
    border-bottom:2px solid #ff0066;
    z-index:9999;
    box-sizing:border-box;
}

.logo{
    color:#ff69b4;
    font-size:32px;
    font-weight:bold;
    text-transform:uppercase;
    letter-spacing:1px;
}

.navbar{
    display:flex;
    align-items:center;
    gap:25px;
}

.navbar a{
    color:#fff;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    padding:10px 18px;
    border-radius:30px;
    transition:0.3s;
}

.navbar a:hover{
    background:linear-gradient(45deg,#ff0066,#ff69b4);
    box-shadow:0 0 15px rgba(255,0,102,0.7);
}

/* Mobile Responsive */

@media(max-width:768px){

    .top-header{
        flex-direction:column;
        padding:15px;
    }

    .navbar{
        margin-top:15px;
        flex-wrap:wrap;
        justify-content:center;
        gap:12px;
    }

    .navbar a{
        font-size:14px;
        padding:8px 12px;
    }

    .logo{
        font-size:24px;
    }

}
<!------>