:root {
      --misto-sage: #7aa69e;
      --misto-sand: #d4ad8d;
      --misto-cream: #e4dcd1;
      --misto-dark: #3d4f4b;
      --misto-light: #f7f5f2;
    }
    
    html, body {
      height: 100%;
      width: 100%;
      margin: 0;
      padding: 0;
    }
    
    body {
      font-family: 'Nunito', sans-serif;
      background-color: var(--misto-light);
      color: var(--misto-dark);
      overflow-x: hidden;
    }
    
    .app-wrapper {
      width: 100%;
      min-height: 100%;
      overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5 {
      font-family: 'Cormorant Garamond', serif;
    }

    h5{
        font-size: 22px!important;
    }
    
    /* Navbar */
    .navbar-misto {
      background: rgba(247, 245, 242, 0.95);
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
    }
    
    .navbar-misto.scrolled {
      box-shadow: 0 2px 20px rgba(61, 79, 75, 0.1);
    }
    
    .navbar-brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 600;
      color: var(--misto-sage) !important;
      letter-spacing: 2px;
    }
    
    .nav-link {
      color: var(--misto-dark) !important;
      font-weight: 500;
      transition: color 0.3s ease;
      position: relative;
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--misto-sand);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }
    
    .nav-link:hover::after {
      width: 80%;
    }
    
    /* Hero Section */
    .botones-hero{
      display: flex;
    }

    .hero-section {
      min-height: 100vh;
      background: linear-gradient(135deg, var(--misto-cream) 0%, var(--misto-light) 50%, rgba(122, 166, 158, 0.2) 100%);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    
    .hero-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 70%;
      height: 200%;
      background: radial-gradient(ellipse, rgba(122, 166, 158, 0.15) 0%, transparent 70%);
      animation: float 20s ease-in-out infinite;
    }
    
    .hero-section::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 50%;
      height: 100%;
      background: radial-gradient(ellipse, rgba(212, 173, 141, 0.15) 0%, transparent 70%);
      animation: float 15s ease-in-out infinite reverse;
    }
    
    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(5deg); }
    }
    
    .hero-image-container {
      position: relative;
      z-index: 1;
    }
    
    .hero-image {
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
      box-shadow: 0 30px 60px rgba(61, 79, 75, 0.2);
      animation: morph 8s ease-in-out infinite;
      object-fit: cover;
      width: 100%;
      max-width: 450px;
      height: auto;
      aspect-ratio: 4/5;
    }
    
    @keyframes morph {
      0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
      50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    }
    
    .hero-content {
      position: relative;
      z-index: 2;
    }
    
    .hero-title {
      font-size: clamp(3rem, 8vw, 6rem);
      font-weight: 700;
      color: var(--misto-sage);
      letter-spacing: 8px;
      margin-bottom: 1rem;
      animation: fadeInUp 1s ease;
    }
    
    .hero-subtitle {
      font-size: clamp(1.2rem, 2.5vw, 1.6rem);
      color: var(--misto-dark);
      font-weight: 300;
      margin-bottom: 2rem;
      animation: fadeInUp 1s ease 0.2s both;
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .btn-misto {
      background: #7aa69e!important;
      color: white!important;
      border: none!important;
      padding: 15px 40px!important;
      border-radius: 50px!important;
      font-weight: 500!important;
      letter-spacing: 1px!important;
      transition: all 0.3s ease!important;
      box-shadow: 0 10px 30px rgba(122, 166, 158, 0.3)!important;
    }
    
    .btn-misto:hover {
      background: var(--misto-dark);
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(61, 79, 75, 0.3);
    }
    
    .btn-misto-outline {
      background: transparent!important;
      color: #7aa69e!important;
      border: 2px solid #7aa69e!important;
      padding: 13px 38px!important;
      border-radius: 50px!important;
      font-weight: 500!important;
      letter-spacing: 1px!important;
      transition: all 0.3s ease!important;
    }
    
    .btn-misto-outline:hover {
      background: var(--misto-sage);
      color: white;
      transform: translateY(-3px);
    }
    
    /* Sections */
    .section-padding {
      padding: 100px 0;
    }
    
    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--misto-dark);
      margin-bottom: 1.5rem;
      position: relative;
    }
    
    .section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, var(--misto-sage), var(--misto-sand));
      margin-top: 15px;
    }
    
    .section-title.text-center::after {
      margin-left: auto;
      margin-right: auto;
    }
    
    /* About Section */
    .about-section {
      background: white;
    }
    
    .about-card {
      background: linear-gradient(145deg, var(--misto-cream), white);
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 20px 50px rgba(61, 79, 75, 0.08);
      border: 1px solid rgba(122, 166, 158, 0.1);
      height: 100%;
    }
    
    .meaning-highlight {
      background: linear-gradient(90deg, var(--misto-sage), var(--misto-sand));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700;
    }
    
    /* What Section */
    .what-section {
      background: linear-gradient(180deg, var(--misto-light) 0%, white 100%);
    }
    
    .encounter-card {
      background: white;
      border-radius: 20px;
      padding: 35px;
      box-shadow: 0 15px 40px rgba(61, 79, 75, 0.08);
      transition: all 0.4s ease;
      height: 100%;
      border-left: 4px solid transparent;
    }
    
    .encounter-card:hover {
      transform: translateY(-10px);
      border-left-color: var(--misto-sage);
    }
    
    .encounter-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, var(--misto-sage), var(--misto-sand));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 1.8rem;
      color: white;
    }
    
    .practice-item {
      display: flex;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid rgba(122, 166, 158, 0.15);
    }
    
    .practice-item:last-child {
      border-bottom: none;
    }
    
    .practice-item i {
      color: var(--misto-sage);
      margin-right: 15px;
      font-size: 1.2rem;
    }
    
    /* Space Section */
    .space-section {
     /* background: var(--misto-dark);*/
     background-image: url('../img/fondo.jpg');
     background-position: center center;
     background-repeat: no-repeat;
     background-size: cover;
      color: white;
      position: relative;
      overflow: hidden;
    }
    
    .space-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237aa69e' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    
    .space-content {
      position: relative;
      z-index: 1;
    }
    
    .space-section .section-title {
      color: white;
    }
    
    .space-section .section-title::after {
      background: linear-gradient(90deg, var(--misto-sand), var(--misto-cream));
    }
    
    /* Benefits Section */
    .benefits-section {
      background: linear-gradient(135deg, var(--misto-cream) 0%, white 100%);
    }
    
    .benefit-item {
      display: flex;
      align-items: flex-start;
      padding: 20px;
      background: white;
      border-radius: 15px;
      margin-bottom: 15px;
      box-shadow: 0 10px 30px rgba(61, 79, 75, 0.06);
      transition: all 0.3s ease;
    }
    
    .benefit-item:hover {
      transform: translateX(10px);
      box-shadow: 0 15px 40px rgba(61, 79, 75, 0.12);
    }
    
    .benefit-icon {
      width: 50px;
      height: 50px;
      min-width: 50px;
      background: linear-gradient(135deg, var(--misto-sage), var(--misto-sand));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 20px;
      color: white;
      font-size: 1.3rem;
    }
    
    /* Audience Section */
    .audience-section {
      background: white;
    }
    
    .audience-card {
      background: linear-gradient(145deg, var(--misto-sage), #5d8a82);
      color: white;
      border-radius: 30px;
      padding: 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    .audience-card::before {
      content: '🌱';
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 3rem;
      opacity: 0.3;
    }
    
    .audience-card::after {
      content: '🌿';
      position: absolute;
      bottom: 20px;
      left: 30px;
      font-size: 3rem;
      opacity: 0.3;
    }
    
    /* Closing Section */
    .closing-section {
      background: linear-gradient(180deg, white 0%, var(--misto-cream) 100%);
    }
    
    .closing-card {
      background: white;
      border-radius: 30px;
      padding: 50px;
      text-align: center;
      box-shadow: 0 30px 70px rgba(61, 79, 75, 0.1);
      border: 2px solid rgba(122, 166, 158, 0.2);
    }
    
    .closing-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-style: italic;
      color: var(--misto-dark);
      margin-bottom: 30px;
    }
    
    /* Contact Section */
    .contact-section {
      background: var(--misto-dark);
      color: white;
    }
    
    .contact-form {
      background: white;
      border-radius: 25px;
      padding: 40px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    }
    
    .form-control-misto {
      border: 2px solid var(--misto-cream);
      border-radius: 12px;
      padding: 15px 20px;
      transition: all 0.3s ease;
      background: var(--misto-light);
    }
    
    .form-control-misto:focus {
      border-color: var(--misto-sage);
      box-shadow: 0 0 0 4px rgba(122, 166, 158, 0.15);
      background: white;
    }
    
    .form-label {
      color: var(--misto-dark);
      font-weight: 500;
      margin-bottom: 8px;
    }
    
    .whatsapp-card {
      background: linear-gradient(135deg, #25D366, #128C7E);
      border-radius: 20px;
      padding: 30px;
      color: white;
      text-align: center;
      transition: all 0.3s ease;
    }
    
    .whatsapp-card:hover {
      transform: scale(1.02);
      box-shadow: 0 20px 50px rgba(37, 211, 102, 0.3);
    }
    
    .whatsapp-link {
      color: white;
      text-decoration: none;
      font-size: 1.3rem;
      font-weight: 600;
    }
    
    .social-links {
      display: flex;
      gap: 15px;
      justify-content: center;
      margin-top: 30px;
    }
    
    .social-link {
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.3rem;
      transition: all 0.3s ease;
      text-decoration: none;
    }
    
    .social-link:hover {
      background: var(--misto-sand);
      color: white;
      transform: translateY(-5px);
    }
    
    /* Footer */
    .footer {
      background: #2d3b38;
      color: rgba(255, 255, 255, 0.7);
      padding: 30px 0;
      text-align: center;
    }

    .footer p{
      font-size: 16px;
    }
    
    /* Scroll to top */
    /* Floating WhatsApp Button */
    .floating-whatsapp {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #25D366, #128C7E);
      border: none;
      border-radius: 50%;
      color: white;
      font-size: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 998;
      box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
      text-decoration: none;
      animation: pulse-whatsapp 2s infinite;
    }
    
    .floating-whatsapp:hover {
      transform: scale(1.1);
      box-shadow: 0 15px 50px rgba(37, 211, 102, 0.5);
    }
    
    @keyframes pulse-whatsapp {
      0%, 100% {
        box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
      }
      50% {
        box-shadow: 0 10px 60px rgba(37, 211, 102, 0.6);
      }
    }
    
    .scroll-top {
      position: fixed;
      bottom: 30px;
      right: 100px;
      width: 50px;
      height: 50px;
      background: var(--misto-sage);
      border: none;
      border-radius: 50%;
      color: white;
      font-size: 1.2rem;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 999;
      box-shadow: 0 10px 30px rgba(122, 166, 158, 0.4);
    }
    
    .scroll-top.visible {
      opacity: 1;
      visibility: visible;
    }
    
    .scroll-top:hover {
      background: var(--misto-dark);
      transform: translateY(-5px);
    }
    
    /* Toast notification */
    .toast-notification {
      position: fixed;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%) translateY(100px);
      background: var(--misto-sage);
      color: white;
      padding: 15px 30px;
      border-radius: 50px;
      box-shadow: 0 10px 40px rgba(122, 166, 158, 0.4);
      z-index: 1000;
      opacity: 0;
      transition: all 0.4s ease;
    }
    
    .toast-notification.show {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
    }
    
    .toast-notification.error {
      background: #e74c3c;
    }
    
    /* Animations */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }
    
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    /* Decorative leaf */
    .leaf-decoration {
      font-size: 2rem;
      opacity: 0.6;
    }
    
    /* Loading spinner */
    .spinner-border-sm {
      width: 1rem;
      height: 1rem;
    }
    
    /* Responsive adjustments */
    @media (max-width: 991.98px) {
      .hero-section {
        text-align: center;
        padding-top: 100px;
      }
      
      .hero-image-container {
        margin-top: 40px;
      }
      
      .hero-image {
        max-width: 300px;
      }
      
      .section-padding {
        padding: 60px 0;
      }
      
      .audience-card {
        padding: 40px 30px;
      }
    }
    
    @media (max-width: 767.98px) {
      .navbar-brand {
        font-size: 1.5rem;
      }
      
      .hero-title {
        letter-spacing: 4px;
      }
      
      .encounter-card {
        padding: 25px;
      }
      
      .contact-form {
        padding: 30px 20px;
      }
      
      .closing-card {
        padding: 30px 20px;
      }
      .botones-hero{
        display: block;
        margin-bottom: 3rem;
      }
      .footer p{
        font-size: 14px;
      }
      .hero-content{
        padding-top: 5rem;
      }
      .logo{
        max-width: 140px;
      }
    }

body { box-sizing: border-box; }



.logo{
    max-height: 130px;
}
p{
    font-size: 18px;
}

.h3 .h4{
    font-size: 24px;
}

.about-card2{
    background: #ffffff;
    box-shadow: none;
    border: none;
}