:root {
            --google-purple: #fe6009;
            --bg-color: #eee;
            --card-border: #dadce0;
            --text-main: #202124;
            --error-red: #d93025;
            --success-green: #0f9d58;
        }

        body {
            background-color: var(--bg-color);
           
            margin: 0;
            padding: 20px ; 
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .form-container { width: 100%; max-width: 640px; margin-top: 20px}
        .header-strip { height: 10px; background-color: var(--google-purple); border-radius: 8px 8px 0 0; }
        
        .card {
            background: white;
            border: 1px solid var(--card-border);
            border-radius: 8px;
            margin-bottom: 12px;
            padding: 24px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .title-card { border-top: none; }
        h1 { font-size: 32px; margin: 0 0 10px 0; font-weight: 400; }
        
        .question-label {
            display: block;
            font-size: 16px;
            color: var(--text-main);
            margin-bottom: 8px;
            font-weight: 500;
        }

        .radio-group { margin: 15px 0; }
        .radio-option { display: flex; align-items: center; margin-bottom: 12px; cursor: pointer; }
        .radio-option input { margin-right: 10px; accent-color: var(--google-purple); }

        .text-input {
            width: 100%; border: none; border-bottom: 1px solid #dadce0;
            padding: 10px 0; font-size: 14px; outline: none; margin-bottom: 20px;
        }
        .text-input:focus { border-bottom: 2px solid var(--google-purple); }

        .hidden { display: none !important; }

        .btn-group { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
        
        .btn {
            padding: 10px 24px; border: none; border-radius: 4px;
            font-weight: 500; cursor: pointer; font-size: 14px;
        }
        .btn-primary { background-color: var(--google-purple); color: white; }
        .btn-secondary { background-color: #f0f0f0; color: #5f6368; }
        
        .required-star { color: var(--error-red); }
        .success-msg { color: var(--success-green); font-weight: bold; font-size: 18px; text-align: center; }
        .error-msg { color: var(--error-red); font-weight: bold; font-size: 18px; text-align: center; }
                       .navbar-scroll {
  overflow: hidden;
 /* background-color: #333;*/
}

.navbar-scroll a {
    overflow: hidden;
  float: left;
  font-size: 14px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
}

.dropdown {
  /*float: left;*/
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 14px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar-scroll a:hover, .dropdown:hover .dropbtn {
  /*background-color: #dc2f03;*/   
  font-weight: bold
}

.dropdown-content {
  
  display: none;
  position: absolute;
  background-color: #fb3809;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 16px;
}


.dropdown-content a {
  float: none;
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  border-radius: 16px;
}

.dropdown-content a:hover {
  background-color: #ff6004;
}

.dropdown:hover .dropdown-content {
  display: block;
}
@media (max-width: 602px) {
    .dropdown .dropbtn {
  font-size: 26px;  
  border: none;
  outline: none;
  color: white;
  padding: 0px ;
  background-color: inherit;
  font-family: inherit;
  margin: 16px 0 0 0;
}


.dropdown:hover .dropdown-content {
  display: contents;
}


#menuMobile a.navlink3 {
    text-decoration: none;
    color: white;
    font-size: 22px;
    margin-top: 0px;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    padding: 8px 16px;
}
}
.inicio-inscripcion {
    
    /*background: linear-gradient(to bottom, var(--tertiary), var(--primary-light));
    color: white;
    position: relative;
    text-align: center;
    padding: 20px;
    min-height: 80px;
    border-radius: 16px;*/
    position: relative;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 1;
    background-color: #fb3809;
    background: url('imagenes/barramenu.png') center;
    width: calc(100% - 24px);
    z-index: 9999;
    height: 87px;
    border-radius: 16px;
    transition: top 0.5s ease, opacity 0.5s ease;
    backdrop-filter: blur(1rem);
    background-size: cover;
}
@media (max-width: 476px) {
    .btn {
        flex: 0 0 40%;
        width: 100%;
        padding: 18px 14px;
    }
}