/* MIXED CSS PACK */
/* Template: eneryurie6e-oficial.com.ar/index.html */
/* Template mtime: 2025-11-10 17:44:25 */

/* external link (no embedded): https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap */

/* ===== INLINE <style> BLOCK #1 ===== */
:root {
      --brand-dark: #124C3A;
      --brand: #1F7A5C;
      --brand-light: #2A9D78;
      --accent-blue: #2E6BFF;
      --accent-pink: #FF2E7E;
      --accent-yellow: #FFCA18;
      --accent-orange: #FF7A1A;
      --bg: #ffffff;
      --bg-light: #f8fdfa;
      --text: #121212;
      --muted: #6b7280;
      --radius: 16px;
      --radius-lg: 24px;
      --shadow: 0 10px 30px rgba(0,0,0,.06);
      --shadow-lg: 0 20px 40px rgba(0,0,0,.08);
      --transition: all 0.3s ease;
    }

    * {
      box-sizing: border-box;
    }

    html, body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, .section-title {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
    }

    .btn-brand {
      background: linear-gradient(135deg, var(--brand), var(--brand-light));
      border: none;
      color: white;
      font-weight: 600;
      padding: 0.75rem 1.5rem;
      border-radius: 50px;
      transition: var(--transition);
      box-shadow: 0 4px 15px rgba(31, 122, 92, 0.3);
    }

    .btn-brand:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(31, 122, 92, 0.4);
      color: white;
    }

    .text-brand {
      color: var(--brand);
    }

    .badge-chip {
      border-radius: 999px;
      padding: .4rem .75rem;
      font-weight: 600;
      font-size: 0.8rem;
      letter-spacing: 0.5px;
    }

    .chip-blue {
      background: rgba(46,107,255,.1);
      color: var(--accent-blue);
    }

    .chip-pink {
      background: rgba(255,46,126,.1);
      color: var(--accent-pink);
    }

    .chip-green {
      background: rgba(31,122,92,.1);
      color: var(--brand);
    }

    .chip-yellow {
      background: rgba(255,202,24,.14);
      color: #A97800;
    }

    .chip-orange {
      background: rgba(255,122,26,.12);
      color: #A64A00;
    }

    /* Navbar */
    .navbar {
      backdrop-filter: saturate(180%) blur(12px);
      background: rgba(255, 255, 255, 0.9) !important;
      transition: var(--transition);
      padding: 1rem 0;
    }

    .navbar.scrolled {
      padding: 0.5rem 0;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .navbar .nav-link {
      font-weight: 500;
      position: relative;
      margin: 0 0.5rem;
      transition: var(--transition);
    }

    .navbar .nav-link:after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background: linear-gradient(90deg, var(--brand), var(--brand-light));
      transition: var(--transition);
    }

    .navbar .nav-link:hover:after,
    .navbar .nav-link.active:after {
      width: 100%;
    }

    .navbar-brand {
      font-weight: 800;
      letter-spacing: .2px;
      color: var(--brand-dark) !important;
      font-size: 1.5rem;
    }

    /* Hero */
    .hero {
      padding-top: 120px;
      padding-bottom: 80px;
      background: linear-gradient(135deg, #f8fdfa 0%, #ffffff 100%);
      position: relative;
      overflow: hidden;
    }

    .hero:before {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(31, 122, 92, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
      top: -200px;
      right: -200px;
      z-index: 0;
    }

    .hero:after {
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(255, 202, 24, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
      bottom: -150px;
      left: -150px;
      z-index: 0;
    }

    .hero .hero-img-wrap {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: linear-gradient(135deg, #f6faf8 0%, #ffffff 100%);
      box-shadow: var(--shadow-lg);
      transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
      transition: var(--transition);
      z-index: 1;
    }

    .hero .hero-img-wrap:hover {
      transform: perspective(1000px) rotateY(0) rotateX(0);
    }

    .hero .hero-img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      aspect-ratio: 4/3;
    }

    .hero h1 {
      font-size: 3.5rem;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, var(--brand-dark), var(--brand));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero .lead {
      font-size: 1.25rem;
      line-height: 1.6;
    }

    /* Section helpers */
    .section {
      padding: 100px 0;
      position: relative;
    }

    .section:nth-child(even) {
      background: var(--bg-light);
    }

    .section-title {
      font-weight: 800;
      letter-spacing: .2px;
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .section-sub {
      color: var(--muted);
      font-size: 1.1rem;
      margin-bottom: 2rem;
    }

    .card-soft {
      border: 1px solid rgba(236, 239, 243, 0.7);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      background: #fff;
      transition: var(--transition);
      overflow: hidden;
    }

    .card-soft:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    /* Por qué elegirnos */
    .why-card {
      transition: var(--transition);
    }

    .why-card:hover {
      transform: translateY(-5px);
    }

    .why-card .icon {
      width: 64px;
      height: 64px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      background: linear-gradient(135deg, #f6faf8, #ffffff);
      color: var(--brand);
      box-shadow: var(--shadow);
      margin-bottom: 1.5rem;
      transition: var(--transition);
    }

    .why-card:hover .icon {
      transform: scale(1.1);
      background: linear-gradient(135deg, var(--brand-light), var(--brand));
      color: white;
    }

    /* ====== Galería / Ticker ====== */
    .ticker-wrap {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(236, 239, 243, 0.7);
      background: #fff;
      box-shadow: var(--shadow);
    }

    .ticker-track {
      display: flex;
      gap: 16px;
      align-items: center;
      padding: 16px;
      will-change: transform;
    }

    .ticker-item {
      flex: 0 0 auto;
      width: min(500px, 86vw);
      height: min(500px, 86vw);
      border-radius: 16px;
      background: #f7f9fb;
      display: grid;
      place-items: center;
      border: 1px solid rgba(231, 236, 242, 0.7);
      overflow: hidden;
      transition: var(--transition);
      position: relative;
    }

    .ticker-item:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
      opacity: 0;
      transition: var(--transition);
      z-index: 1;
    }

    .ticker-item:hover {
      transform: scale(1.02);
    }

    .ticker-item:hover:before {
      opacity: 1;
    }

    .ticker-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      background: #fff;
      transition: transform .5s ease;
    }

    .ticker-item:hover img {
      transform: scale(1.05);
    }

    .ticker-ctrl {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 3;
      width: 48px;
      height: 48px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(229, 231, 235, 0.7);
      cursor: pointer;
      user-select: none;
      transition: var(--transition);
      backdrop-filter: blur(10px);
    }

    .ticker-ctrl:hover {
      background: white;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transform: translateY(-50%) scale(1.1);
    }

    .ticker-prev {
      left: 16px;
    }

    .ticker-next {
      right: 16px;
    }

    /* Modal galería */
    .gallery-modal .modal-dialog {
      max-width: min(980px, 96vw);
    }

    .gallery-stage {
      background: #000;
      border-radius: 12px;
      overflow: hidden;
      display: grid;
      place-items: center;
    }

    .gallery-stage img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      max-height: 80vh;
      background: #000;
    }

    /* Contacto */
    .contact-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 1.5rem;
      border-radius: var(--radius);
      transition: var(--transition);
    }

    .contact-item:hover {
      background: rgba(246, 250, 248, 0.5);
    }

    .contact-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #f6faf8, #ffffff);
      color: var(--brand);
      border: 1px solid rgba(231, 239, 233, 0.7);
      box-shadow: var(--shadow);
      flex-shrink: 0;
    }

    /* Footer */
    footer {
      background: linear-gradient(180deg, #f7faf8 0%, #ffffff 100%);
      border-top: 1px solid rgba(234, 240, 234, 0.7);
      padding: 3rem 0 1.5rem;
    }

    .footer-links a {
      color: #374151;
      text-decoration: none;
      margin: 0 .5rem;
      transition: var(--transition);
      font-weight: 500;
    }

    .footer-links a:hover {
      color: var(--brand);
    }

    /* Small tweaks */
    .shadow-soft {
      box-shadow: var(--shadow);
    }

    .shadow-lg-soft {
      box-shadow: var(--shadow-lg);
    }

    .rounded-2xl {
      border-radius: var(--radius-lg);
    }

    /* Animaciones personalizadas */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in-up {
      animation: fadeInUp 0.6s ease forwards;
    }

    .delay-1 {
      animation-delay: 0.1s;
    }

    .delay-2 {
      animation-delay: 0.2s;
    }

    .delay-3 {
      animation-delay: 0.3s;
    }

    .delay-4 {
      animation-delay: 0.4s;
    }

    /* Form styling */
    .form-control {
      border-radius: 10px;
      padding: 0.75rem 1rem;
      border: 1px solid rgba(229, 231, 235, 0.7);
      transition: var(--transition);
    }

    .form-control:focus {
      box-shadow: 0 0 0 3px rgba(31, 122, 92, 0.1);
      border-color: var(--brand);
    }

    /* Accordion styling */
    .accordion-button {
      border-radius: 10px !important;
      font-weight: 600;
      padding: 1rem 1.25rem;
    }

    .accordion-button:not(.collapsed) {
      background-color: rgba(31, 122, 92, 0.05);
      color: var(--brand-dark);
    }

    .accordion-button:focus {
      box-shadow: 0 0 0 3px rgba(31, 122, 92, 0.1);
    }

    /* Floating elements */
    .floating {
      animation: floating 3s ease-in-out infinite;
    }

    @keyframes floating {
      0% { transform: translate(0, 0px); }
      50% { transform: translate(0, -10px); }
      100% { transform: translate(0, 0px); }
    }

    /* Responsive adjustments */
    @media (min-width: 992px) {
      .hero {
        padding-bottom: 120px;
      }
      
      .hero h1 {
        font-size: 4rem;
      }
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .section {
        padding: 60px 0;
      }
    }

