/* MIXED CSS PACK */
/* Template: vuelveamilado.com/index.html */
/* Template mtime: 2025-08-21 12:59:39 */

/* external link (no embedded): https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css */
/* external link (no embedded): https://unpkg.com/aos@2.3.1/dist/aos.css */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap */

/* ===== INLINE <style> BLOCK #1 ===== */
:root {
      --primary: #ff4d8d;
      --primary-dark: #c2185b;
      --primary-light: #ffe6f0;
      --secondary: #6c757d;
      --light: #f8f9fa;
      --dark: #212529;
      --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      --transition: all 0.3s ease;
    }
    
    body {
      font-family: 'Montserrat', sans-serif;
      color: var(--dark);
      line-height: 1.7;
      overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      color: var(--dark);
    }
    
    a {
      text-decoration: none;
      transition: var(--transition);
    }
    
    /* Navbar */
    .navbar {
      background-color: white;
      box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
      padding: 15px 0;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      transition: var(--transition);
    }
    
    .navbar.scrolled {
      padding: 10px 0;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-brand {
      font-weight: 700;
      color: var(--primary-dark) !important;
      font-size: 1.5rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .navbar-brand img {
      transition: var(--transition);
    }
    
    .navbar.scrolled .navbar-brand img {
      height: 30px;
    }
    
    .nav-link {
      color: var(--dark) !important;
      font-weight: 500;
      padding: 8px 15px !important;
      margin: 0 5px;
      position: relative;
    }
    
    .nav-link:before {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: var(--primary);
      visibility: hidden;
      transition: var(--transition);
    }
    
    .nav-link:hover:before,
    .nav-link.active:before {
      visibility: visible;
      width: 100%;
    }
    
    .nav-link:hover,
    .nav-link.active {
      color: var(--primary) !important;
    }
    
    /* Hero Section */
    .hero {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('img/hero.png') center/cover no-repeat fixed;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      position: relative;
      padding-top: 80px;
    }
    
    .hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      animation: fadeInUp 1s ease;
    }
    
    .hero p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 30px;
      animation: fadeInUp 1s ease 0.2s forwards;
      opacity: 0;
    }
    
    .btn-hero {
      background: var(--gradient);
      color: white;
      border: none;
      padding: 12px 30px;
      font-weight: 600;
      border-radius: 50px;
      box-shadow: 0 5px 15px rgba(194, 24, 91, 0.4);
      transition: var(--transition);
      animation: fadeInUp 1s ease 0.4s forwards;
      opacity: 0;
    }
    
    .btn-hero:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(194, 24, 91, 0.5);
      color: white;
    }
    
    /* About Section */
    .about {
      padding: 100px 0;
      background-color: white;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }
    
    .section-title h2 {
      font-size: 2.5rem;
      position: relative;
      display: inline-block;
      padding-bottom: 15px;
    }
    
    .section-title h2:after {
      content: '';
      position: absolute;
      width: 70px;
      height: 3px;
      background: var(--gradient);
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
    }
    
    .about-card {
      background: white;
      border-radius: 15px;
      padding: 30px;
      box-shadow: var(--shadow);
      transition: var(--transition);
      height: 100%;
      border-top: 4px solid var(--primary);
    }
    
    .about-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
    
    .about-card h4 {
      color: var(--primary-dark);
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .about-card h4:after {
      content: '';
      position: absolute;
      width: 40px;
      height: 2px;
      background: var(--primary);
      bottom: 0;
      left: 0;
    }
    
    /* Services Section */
    .services {
      padding: 100px 0;
      background-color: var(--primary-light);
    }
    
    .service-card {
      background: white;
      border-radius: 15px;
      padding: 40px 30px;
      text-align: center;
      box-shadow: var(--shadow);
      transition: var(--transition);
      margin-bottom: 30px;
      height: 100%;
    }
    
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
    
    .service-icon {
      font-size: 3rem;
      color: var(--primary);
      margin-bottom: 20px;
      display: inline-block;
      background: var(--primary-light);
      width: 90px;
      height: 90px;
      line-height: 90px;
      border-radius: 50%;
      transition: var(--transition);
    }
    
    .service-card:hover .service-icon {
      background: var(--gradient);
      color: white;
      transform: rotateY(180deg);
    }
    
    .service-card h5 {
      margin-bottom: 15px;
      font-weight: 600;
    }
    
    /* Gallery Section */
    .gallery {
      padding: 100px 0;
      background: white;
      overflow: hidden;
    }
    
    .ticker-wrapper {
      position: relative;
      overflow: hidden;
      padding: 50px 0;
    }
    
    .ticker-track {
      display: flex;
      gap: 30px;
      width: max-content;
      animation: ticker 30s linear infinite;
    }
    
    .ticker-track img {
      width: 300px;
      height: 200px;
      object-fit: cover;
      border-radius: 15px;
      border: 4px solid white;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }
    
    .ticker-track img:hover {
      transform: scale(1.05);
    }
    @media (max-width: 576px) {
  .hero .btn {
    padding: 8px 16px !important;
    font-size: 0.9rem !important;
    border-radius: 30px !important;
  }

  .hero .btn i {
    font-size: 1rem !important;
  }
}

    @keyframes ticker {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    
    /* Contact Section */
    .contact {
      padding: 100px 0;
      background: var(--primary-light);
    }
    
    .chat-container {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: var(--shadow);
      height: 100%;
    }
    
    .chat-header {
      background: var(--gradient);
      color: white;
      padding: 15px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    
    .chat-header .status {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9rem;
    }
    
    .status-dot {
      width: 10px;
      height: 10px;
      background: #4ade80;
      border-radius: 50%;
      animation: pulse 1.5s infinite;
    }
    
    .chat-body {
      background: #f0f2f5;
      padding: 20px;
      height: 430px;
      overflow-y: auto;
    }
    
    .message {
      max-width: 70%;
      padding: 10px 15px;
      border-radius: 18px;
      margin-bottom: 15px;
      position: relative;
      animation: fadeIn 0.5s ease;
    }
    
    .received {
      background: white;
      border-top-left-radius: 5px;
      align-self: flex-start;
    }
    
    .sent {
      background: var(--primary);
      color: white;
      border-top-right-radius: 5px;
      margin-left: auto;
    }
    
    .typing-indicator {
      display: flex;
      align-items: center;
      gap: 5px;
      background: white;
      padding: 10px 15px;
      border-radius: 18px;
      width: fit-content;
      margin-top: 20px;
    }
    
    .typing-dot {
      width: 8px;
      height: 8px;
      background: var(--secondary);
      border-radius: 50%;
      opacity: 0.4;
    }
    
    .typing-dot:nth-child(1) {
      animation: typingAnimation 1s infinite;
    }
    
    .typing-dot:nth-child(2) {
      animation: typingAnimation 1s infinite 0.2s;
    }
    
    .typing-dot:nth-child(3) {
      animation: typingAnimation 1s infinite 0.4s;
    }
    
    .contact-form .form-control {
      height: 50px;
      border-radius: 10px;
      border: 1px solid #e0e0e0;
      padding-left: 20px;
      transition: var(--transition);
    }
    
    .contact-form .form-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 0.25rem rgba(255, 77, 141, 0.25);
    }
    
    .contact-form textarea.form-control {
      height: 150px;
      padding-top: 15px;
    }
    
    .btn-primary {
      background: var(--gradient);
      border: none;
      padding: 12px 30px;
      font-weight: 600;
      border-radius: 50px;
      box-shadow: 0 5px 15px rgba(194, 24, 91, 0.4);
      width: 100%;
      transition: var(--transition);
    }
    
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(194, 24, 91, 0.5);
      background: var(--gradient);
    }
    
    /* Footer */
    .footer {
      background: var(--dark);
      color: white;
      padding: 60px 0 20px;
    }
    
    .footer-logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: white;
      margin-bottom: 20px;
      display: inline-block;
    }
    
    .footer-links h5 {
      color: white;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-links h5:after {
      content: '';
      position: absolute;
      width: 40px;
      height: 2px;
      background: var(--primary);
      bottom: 0;
      left: 0;
    }
    
    .footer-links ul {
      list-style: none;
      padding: 0;
    }
    
    .footer-links li {
      margin-bottom: 10px;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      transition: var(--transition);
    }
    
    .footer-links a:hover {
      color: var(--primary);
      padding-left: 5px;
    }
    
    .social-links {
      display: flex;
      gap: 15px;
    }
    
    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      color: white;
      border-radius: 50%;
      transition: var(--transition);
    }
    
    .social-links a:hover {
      background: var(--primary);
      transform: translateY(-3px);
    }
    
    .copyright {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 20px;
      margin-top: 40px;
      text-align: center;
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.9rem;
    }
    
    /* WhatsApp Button */
    .whatsapp-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: var(--gradient);
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
      z-index: 999;
      transition: var(--transition);
      animation: pulse 2s infinite;
    }
    
    .whatsapp-btn:hover {
      transform: scale(1.1) translateY(-5px);
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
      color: white;
    }
    
    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
      70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
      100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
    }
    
    @keyframes typingAnimation {
      0% { opacity: 0.4; transform: translateY(0); }
      50% { opacity: 1; transform: translateY(-3px); }
      100% { opacity: 0.4; transform: translateY(0); }
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .hero h1 {
        font-size: 2.8rem;
      }
    }
    
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.2rem;
      }
      
      .section-title h2 {
        font-size: 2rem;
      }
      
      .about-card,
      .service-card {
        padding: 25px 20px;
      }
    }
    
    @media (max-width: 576px) {
      .hero h1 {
        font-size: 1.8rem;
      }
      
      .hero p {
        font-size: 1rem;
      }
      
      .navbar-brand {
        font-size: 1.2rem;
      }
      
      .navbar-brand img {
        height: 30px;
      }
      
      .ticker-track img {
        width: 250px;
        height: 160px;
      }
    }

/* ===== INLINE <style> BLOCK #2 ===== */
.chat-input-container {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: white;
    border-top: 1px solid #e0e0e0;
  }
  
  .chat-input {
    flex: 1;
    border-radius: 20px;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
  }
  
  .chat-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .chat-footer {
    background: #f5f5f5;
    border-top: 1px solid #e0e0e0;
  }
  
  .whatsapp-btn {
    background: #25D366;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  }

/* ===== INLINE <style> BLOCK #3 ===== */
.floating-btn {
  position: fixed;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.3rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-3px);
}

.floating-btn.ig {
  bottom: 110px;
  background: #E1306C;
}

.floating-btn.fb {
  bottom: 170px;
  background: #3b5998;
}

.floating-btn.wp {
  bottom: 50px;
  background: #25D366;
}

