/* MIXED CSS PACK */
/* Template: modospapinamar.com.ar/index.html */
/* Template mtime: 2025-12-02 19:48:36 */

/* external link (no embedded): https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css */
/* external link (no embedded): https://unpkg.com/aos@next/dist/aos.css */

/* ===== INLINE <style> BLOCK #1 ===== */
:root {
        --primary-color: #5ac1a2;
        --primary-dark: #3a9d80;
        --primary-light: #8ad6c1;
        --secondary-color: #f6f9f8;
        --dark-color: #1a2e35;
        --light-color: #ffffff;
        --accent-color: #ff7e5f;
        --text-color: #333333;
        --text-light: #777777;
        --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, #ff9a5f 100%);
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
        --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
        --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
        --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      }

      @font-face {
        font-family: 'Montserrat';
        src: url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
      }

      @font-face {
        font-family: 'Playfair Display';
        src: url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');
      }

      html {
        scroll-behavior: smooth;
        font-size: 16px;
      }

      body {
        font-family: 'Montserrat', sans-serif;
        color: var(--text-color);
        line-height: 1.6;
        overflow-x: hidden;
        background-color: var(--secondary-color);
      }

      h1, h2, h3, h4, h5, h6 {
        font-family: 'Playfair Display', serif;
        font-weight: 600;
      }

      .navbar {
        background: rgba(255, 255, 255, 0.95);
        box-shadow: var(--shadow-sm);
        padding: 1rem 0;
        transition: var(--transition);
      }

      .navbar.scrolled {
        padding: 0.5rem 0;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-md);
      }

      .navbar-brand {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--primary-dark) !important;
        display: flex;
        align-items: center;
      }

      .navbar-brand i {
        margin-right: 0.5rem;
        font-size: 1.8rem;
      }

      .nav-link {
        color: var(--dark-color) !important;
        font-weight: 500;
        margin: 0 0.5rem;
        position: relative;
        transition: var(--transition);
      }

      .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: var(--transition);
      }

      .nav-link:hover::after {
        width: 100%;
      }

      .nav-link.active {
        color: var(--primary-color) !important;
      }

      .nav-link.active::after {
        width: 100%;
      }

      .btn-primary {
        background: var(--gradient-primary);
        border: none;
        padding: 0.75rem 1.75rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        transition: var(--transition);
        box-shadow: var(--shadow-sm);
      }

      .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
      }

      .btn-accent {
        background: var(--gradient-accent);
        color: white;
        border: none;
        padding: 0.75rem 1.75rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        transition: var(--transition);
        box-shadow: var(--shadow-sm);
      }

      .btn-accent:hover {
        background: #ff6a45;
        color: white;
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
      }

      .hero {
        background: url('img/hero3.png') center/cover no-repeat;
        min-height: 100vh;
        color: var(--light-color);
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
      }

      .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(90, 193, 162, 0.2) 0%, rgba(26, 46, 53, 0.8) 100%);
        z-index: 1;
      }

      .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
      }

      .hero h1 {
        font-size: 4rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      }

      .hero p {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
      }

      .section {
        padding: 6rem 0;
        position: relative;
      }

      .section-title {
        color: var(--primary-dark);
        font-weight: 700;
        margin-bottom: 3rem;
        position: relative;
        display: inline-block;
      }

      .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 50px;
        height: 3px;
        background: var(--accent-color);
      }

      .section-title.center::after {
        left: 50%;
        transform: translateX(-50%);
      }

      .bg-light {
        background-color: var(--secondary-color) !important;
      }

      .bg-dark {
        background-color: var(--dark-color) !important;
        color: white;
      }

      .bg-primary {
        background: var(--gradient-primary) !important;
        color: white;
      }

      .service-card {
        background: white;
        border-radius: 12px;
        padding: 2rem;
        height: 100%;
        transition: var(--transition);
        box-shadow: var(--shadow-sm);
        border: 1px solid rgba(0, 0, 0, 0.05);
      }

      .service-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
      }

      .service-card i {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        display: inline-block;
      }

      .service-card h4 {
        color: var(--primary-dark);
        margin-bottom: 1rem;
      }

      .service-card ul {
        list-style-type: none;
        padding-left: 0;
      }

      .service-card ul li {
        padding: 0.25rem 0;
        position: relative;
        padding-left: 1.5rem;
      }

      .service-card ul li::before {
        content: '\f00c';
        font-family: 'bootstrap-icons';
        position: absolute;
        left: 0;
        color: var(--primary-color);
      }

      .feature-box {
        text-align: center;
        padding: 2rem;
        transition: var(--transition);
      }

      .feature-box i {
        font-size: 3rem;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        background: rgba(90, 193, 162, 0.1);
        width: 80px;
        height: 80px;
        line-height: 80px;
        border-radius: 50%;
        display: inline-block;
        transition: var(--transition);
      }

      .feature-box:hover i {
        background: var(--primary-color);
        color: white;
        transform: scale(1.1);
      }

      .feature-box h5 {
        margin-bottom: 1rem;
      }

      .feature-box p {
        color: var(--text-light);
      }

      .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: var(--shadow-sm);
        transition: var(--transition);
      }

      .gallery-item img {
        transition: var(--transition);
        width: 100%;
        height: auto; max-height: 400px;
        object-fit: cover;
      }

      .gallery-item:hover {
        box-shadow: var(--shadow-lg);
      }

      .gallery-item:hover img {
        transform: scale(1.05);
      }

      .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(90, 193, 162, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: var(--transition);
      }

      .gallery-item:hover .gallery-overlay {
        opacity: 1;
      }

      .gallery-overlay i {
        color: white;
        font-size: 2.5rem;
      }

      .accordion-item {
        border: none;
        margin-bottom: 1rem;
        border-radius: 8px !important;
        overflow: hidden;
        box-shadow: var(--shadow-sm);
      }

      .accordion-button {
        font-weight: 600;
        padding: 1.25rem;
        background: white;
        color: var(--dark-color);
      }

      .accordion-button:not(.collapsed) {
        background: var(--primary-color);
        color: white;
      }

      .accordion-button:focus {
        box-shadow: none;
        border-color: transparent;
      }

      .accordion-body {
        padding: 1.25rem;
      }

      .booking-wrapper {
        height: 480px;
        overflow: hidden;
        position: relative;
        border: none;
        border-radius: 12px;
        box-shadow: var(--shadow-md);
      }

      .booking-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 800px;
        border: none;
      }

      .contact-form {
        background: white;
        padding: 2.5rem;
        border-radius: 12px;
        box-shadow: var(--shadow-sm);
      }

      .contact-form .form-control {
        padding: 0.75rem 1rem;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
      }

      .contact-form .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.25rem rgba(90, 193, 162, 0.25);
      }

      .contact-info {
        background: white;
        padding: 2.5rem;
        border-radius: 12px;
        box-shadow: var(--shadow-sm);
        height: 100%;
      }

      .contact-info i {
        color: var(--primary-color);
        font-size: 1.25rem;
        margin-right: 0.75rem;
        width: 24px;
        text-align: center;
      }

      .contact-info a {
        color: var(--text-color);
        text-decoration: none;
        transition: var(--transition);
      }

      .contact-info a:hover {
        color: var(--primary-color);
      }

      .map-container {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: var(--shadow-sm);
      }

      footer {
        background: var(--dark-color);
        color: white;
        padding: 4rem 0 0;
      }

      .footer-logo {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        font-size: 1.75rem;
        color: white;
        margin-bottom: 1.5rem;
        display: inline-block;
      }

      .footer-logo i {
        color: var(--primary-color);
        margin-right: 0.5rem;
      }

      .footer-links h5 {
        color: white;
        margin-bottom: 1.5rem;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
      }

      .footer-links ul {
        list-style: none;
        padding-left: 0;
      }

      .footer-links li {
        margin-bottom: 0.75rem;
      }

      .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: var(--transition);
      }

      .footer-links a:hover {
        color: var(--primary-color);
        padding-left: 5px;
      }

      .social-links a {
        display: inline-block;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border-radius: 50%;
        margin-right: 0.5rem;
        transition: var(--transition);
      }

      .social-links a:hover {
        background: var(--primary-color);
        transform: translateY(-3px);
      }

      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1.5rem 0;
        margin-top: 3rem;
      }

      /* Animations */
      .animate-float {
        animation: float 6s ease-in-out infinite;
      }

      @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
        100% { transform: translateY(0px); }
      }

      .animate-pulse {
        animation: pulse 2s ease infinite;
      }

      @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
      }

      /* Particles background */
      .particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
      }

      .particle {
        position: absolute;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        animation: float 15s infinite linear;
      }

      /* Responsive adjustments */
      @media (max-width: 992px) {
        .hero h1 {
          font-size: 3rem;
        }
        
        .hero p {
          font-size: 1.25rem;
        }
        
        .section {
          padding: 4rem 0;
        }
      }

      @media (max-width: 768px) {
        .hero h1 {
          font-size: 2.5rem;
        }
        
        .hero p {
          font-size: 1.1rem;
        }
        
        .section-title {
          font-size: 1.75rem;
        }
      }

      @media (max-width: 576px) {
        .hero h1 {
          font-size: 2rem;
        }
        
        .hero .btn {
          display: block;
          width: 100%;
          margin-bottom: 1rem;
        }
        
        .hero .btn:last-child {
          margin-bottom: 0;
        }
      }
    
/* Floating social buttons */
.floating-social{
  position:fixed;
  bottom:20px;
  right:20px;
  z-index:1050;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.floating-social .social-btn{
  width:48px;
  height:48px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:24px;
  transition:transform .2s,box-shadow .2s;
}
.floating-social .social-btn:hover{
  transform:scale(1.1);
  box-shadow:0 2px 8px rgba(0,0,0,.3);
}
.floating-social .whatsapp{background:#25d366;}
.floating-social .instagram{background:#e1306c;}
.floating-social .facebook{background:#1877f2;}


/* --- Adjustment: lower hero content to avoid covering top on mobile/desktop --- */
.hero-content{
  padding-top:6rem;
}
@media (max-width:992px){
  .hero-content{
    padding-top:7rem;
  }
}
@media (max-width:576px){
  .hero-content{
    padding-top:8rem;
  }
}

/* ===== INLINE <style> BLOCK #2 ===== */
/* --- Further lower hero content as requested --- */
.hero-content{
  padding-top:9rem;
}
@media (max-width:992px){
  .hero-content{
    padding-top:11rem;
  }
}
@media (max-width:576px){
  .hero-content{
    padding-top:13rem;
  }
}

/* ===== INLINE <style> BLOCK #3 ===== */
/* --- Prevent horizontal overflow & further adjust hero --- */
html,body{
  overflow-x:hidden;
}
.hero-content{
  padding-top:11rem;
}
@media (max-width:992px){
  .hero-content{
    padding-top:14rem;
  }
}
@media (max-width:576px){
  .hero-content{
    padding-top:17rem;
  }
}

