/* Estilos generales */
* {font-family: "Roboto", sans-serif; box-sizing: border-box;}
body {
    font-family: "Roboto", sans-serif !important;
    background-color: #fff;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Estilos para el encabezado */
.landing-header {
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 35px;
	height:350px;
}
.landing-header section {max-width: 350px; margin: auto; border-radius: 20px; padding: 55px 20px;}
.img-cabecera {display:none;}
.section-text article {background: #fff; width: 150px; height: 150px; margin:-90px auto 0; border: 2px solid #999; border-radius:50%; overflow: hidden; display:flex; align-items: center; padding:15px;}

.landing-logo {
    width: 100% !important;
}
@media (max-width: 700px) {
	.section-text article {width:120px; height:120px; margin:-70px auto 0;}
	.section-text h2 {margin-top: 10px;}
	.img-cabecera {display:block; max-height:50vh; object-fit:cover;}
	.landing-header {display:none;}
}
@media (max-width: 550px) {
.landing-header {padding: 70px 35px 0;}
.landing-header section {padding: 20px;}
.landing-header article {width: 100px; height: 100px; padding:15px ;}
h1 {font-size: 1.6rem !important;}
h2 {font-size: 1.45rem !important;}
.section-text p {font-size: 0.9em;}
.landing-main {margin-top: 20px;}
.review-section {margin-bottom: 30px;}
  }

h1 {
    margin: 0;
    font-size: 1.9rem;
    color: #333;
}

h3 {
    margin: 10px 0 20px;
    font-size: 1rem;
    font-weight: 300;
    color: #333;
}

/* Estilos para el contenido principal */
.landing-main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 20px;
    margin-top: 40px;
}

.section-text {width: 100%; margin: auto; text-align: center; line-height: 1.7; padding: 10px 20px 20px; background: #ededed;}
.review-section {
    background-color: #ffffff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    padding: 20px;
    max-width: 700px;
    width: 100%;
    margin-bottom: 50px;;
}

h2 {
    color: #333333;
    margin-bottom: 20px;
    font-size: 1.75rem;
}

/* Estilos para el formulario */
#step-treatment #review_treatment {
    font-size: 16px;
  }
.review-form {
    display: flex;
    flex-direction: column;
}

.review-form #step-treatment div select {margin-top: 10px !important;}

#review_star {border: none;}
#review_star label {margin-right: 20px;}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.btn-submit {
    background-color: #4285F4;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 35px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: fit-content;
    font-weight: bold;
}

.btn-submit:hover {
    background-color: #4285F4;
}

footer {background-color: #ededed; color: #1e50cc; padding: 20px; margin: 20px auto 0; flex-shrink: 0; width:100%; margin: auto;}
.footer-logo {display: flex; justify-content: end; align-items: center; width:100%; max-width: 1200px; margin: auto;}
.footer-logo p {margin:0}
.footer-logo img {width:140px;}

.flash-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}


.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    font-size: 2em;
    cursor: pointer;
}

.star-rating input {
    display: none;
}

.star-rating label {
    color: #ddd;
    font-size: 1.8em;
    transition: color 0.2s ease-in-out;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #FBBC06;
}

@media (max-width: 991px) {
.footer-logo img {width:100px;}
.footer-logo p {font-size:14px;}
  }