body {
    background: linear-gradient(to right, #e0f7fa, #e0f2f1);
    font-family: 'Encode Sans', sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2 {
    text-shadow: 2px 2px 4px #aaa;
}

.container {
    margin-top: 20px;
}

.header-container {
    padding: 5px 0;
    background: linear-gradient(to right, #00796b, #004d40);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.logo-container {
    max-width: 125px;
    max-height: 125px;
    min-width: 75px;
    min-height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.title-container {
    text-align: left;
    color: #fff;
    max-width: 19ch; /* Limita el ancho del contenedor del título a aproximadamente 12 caracteres */
}

.title-container h1 {
    font-size: 2em;
    font-weight: 700;
    margin: 0;
    text-shadow: none;
    word-wrap: break-word; /* Asegura que las palabras se rompan en varias líneas */
}

.navbar {
    background: none;
    width: 100%;
}

.navbar .navbar-toggler {
    border-color: rgba(255,255,255,0.1);
    border-bottom: 3px solid #e0f7fa;
}

.navbar .navbar-nav .nav-link {
    color: #fff !important;
    font-weight: bold;
}

.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.active {
    color: #e0f7fa !important;
    border-bottom: 3px solid #e0f7fa;
}

.footer {
    background: linear-gradient(to right, #00796b, #004d40);
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer p {
    margin: 0;
    font-size: 0.9em;
}

.footer .row div {
    margin-bottom: 10px;
}

.form-label {
    font-weight: bold;
    color: #00796b;
}

.btn-primary {
    background: linear-gradient(to right, #00796b, #004d40);
    border: none;
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background 0.3s, transform 0.3s;
}

.btn-primary:hover {
    background: linear-gradient(to right, #004d40, #00796b);
    transform: translateY(-2px);
}

.section-title {
    font-size: 2.5em;
    color: #004d40;
    margin-bottom: 20px;
    font-weight: bold;
}



.section-description {
    font-size: 1.2em;
    color: #00796b;
    margin-bottom: 30px;
}

.info-box {
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
    flex: 1 1 100%;
}

.info-box.no-hover:hover {
    transform: none;
}

.info-box i {
    font-size: 36px;
    color: #00796b;
    margin-bottom: 10px;
}

.info-box h3 {
    font-size: 24px;
    color: #004d40;
    font-weight: bold;
}

.info-box p {
    font-size: 16px;
    color: #004d40;
}

.custom-comparison-box {
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: left;
    margin-bottom: 20px;
    height: 100%;
}

.custom-comparison-box .comparison-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.custom-comparison-box .comparison-item i {
    font-size: 24px;
    color: #00796b;
    margin-right: 15px;
}

.custom-comparison-box .comparison-item strong {
    font-size: 1.2em;
    color: #004d40;
    margin-right: 10px;
    display: inline-block;
}

.custom-comparison-box .comparison-item p {
    margin: 0;
    color: #004d40;
    flex: 1 1 100%;
}

.custom-comparison-box .sub-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.custom-comparison-box .sub-item strong {
    display: inline;
}

.custom-comparison-box .sub-item i {
    margin-right: 5px;
}

.custom-comparison-box .sub-item p {
    text-align: justify;
    margin-left: 20px;
    flex: 1 1 100%;
}

.text-shadow {
    text-shadow: 2px 2px 4px #aaa;
}



