:root {
    --primary-yellow: #FBF821;
    --dark-bg: #2c2c2c;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.hero-section {
    background-color: #FBF821;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #F8F9FA;
}


.navbar {
    background-color:  #FBF821 !important;
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: bold;
    color: #000 !important;
}

.navbar-nav .nav-link {
    color: #000;
    margin: 0 1rem;
}

.hero-content {
    padding: 5rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 3rem;
    max-width: 500px;
}

.btn-dark-custom {
    background-color: #000;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
}

.btn-dark-custom:hover {
    background-color: #333;
    color: white;
}

.phone-mockup {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 500px;
    background: white;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--primary-yellow);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
}

.what-is-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    height: 100%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.feature-title {
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.pricing-section {
    padding: 5rem 0;
    background: white;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    position: relative;
}

.pricing-card.featured {
    background: var(--primary-yellow);
    transform: scale(1.05);
}

.pricing-plan {
    font-weight: bold;
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.cta-section {
    background: var(--dark-bg);
    color: white;
    padding: 5rem 0;
}

.form-control {
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.btn-yellow {
    background: var(--primary-yellow);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    width: 100%;
}

.btn-yellow:hover {
    background: #e5e01e;
    color: #000;
}

.gorillatop{
    margin-top: 100px;
    z-index: 1000;
    position:static;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .phone-mockup {
        position: relative;
        width: 250px;
        height: 400px;
        margin: 2rem auto;
        right: auto;
        top: auto;
        transform: none;
    }
    
    .hero-content {
        text-align: center;
    }
}


  .custom-modal-bg {
    background-color: #F7F62C !important;
    color: #000 !important;
  }

  .custom-modal-bg .modal-header,
  .custom-modal-bg .modal-footer {
    border-color: #000;
  }

  .custom-modal-bg .btn-close {
    filter: invert(1); /* para hacer visible la X en fondo claro */
  }

  .ingreso{
    background: #000!important;
    color:#FFF!important;
    border-radius: 5px!important;
  }