body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
header {
    background-color: #e61919;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hamburger-menu {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.hamburger-menu svg {
    width: 26px;
    height: 29px;
}
.logo-img {
    width: auto;
    height: 42px;
    margin-left: -5px;
    margin-top: -3px;
    object-fit: contain;
}
.mi-claro-btn {
    background-color: #c41717;
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.mi-claro-btn svg {
    margin-right: 0.5rem;
}
.container {
    width: 100%;
    margin-top: 10px;
    max-width: 900px;
}
h1 {
    color: #85b8f1d7;
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: normal;
}
.line-with-arrow {
    position: relative;
    height: 2px;
    background-color: #6161612c;
    margin: 10px 0 20px;
    width: 100%;
}
.line-with-arrow::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #6161612c;
}
.texto_gris2 {
    padding: 0 15px;
}
.texto2 {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 14px;
    line-height: 1.5;
    color: #5a5a5a;
}
.dropdown {
    width: 100%;
    margin: 20px auto;
    position: relative;
}
.dropdown-toggle {
    width: 100%;
    padding: 10px 15px;
    background-color: white;
    border: 1px solid #7c7a78;
    border-radius: 5px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    font-size: 14px;
}
.dropdown-toggle:hover {
    background-color: #ec1e170a;
}
.dropdown-menu {
    display: none;
    width: 100%;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: absolute;
    z-index: 1;
}
.dropdown-item {
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 14px;
}
.dropdown-item:hover {
    background-color: #ffe8e6;
}
.dropdown-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
.loading-gif {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}
.loading-gif img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    object-fit: contain;
}
.imagen2 {
    text-align: center;
    margin-top: 50px;
    line-height: 1.4;
    font-size: 14px;
}
.vertical-list {
    display: none;
    max-width: 400px;
    margin: 20px auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.vertical-list.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.vertical-list h2 {
    text-align: center;
    margin-bottom: 15px;
}
.service-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.service-option:hover {
    background-color: #f0f0f0;
}
.service-option .radio {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-option .radio::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: transparent;
    transition: background-color 0.3s ease;
}
.service-option.selected .radio {
    border-color: #e61919;
}
.service-option.selected .radio::after {
    background-color: #e61919;
}
.service-option img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 83px;
}
.red-button, .gris-button {
    width: 100%;
    max-width: 400px;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    margin: 9px 0;
}
.red-button {
    background-color: #e61919;
    color: white;
}
.red-button:hover {
    background-color: #c41717;
}
.gris-button {
    background-color: #3d3d3d;
    color: white;
}
.cell-number-input {
    display: none;
    max-width: 400px;
    margin: 20px auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.cell-number-input.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.cell-number-input label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.cell-number-input input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
footer {
    background-color: #333333;
    color: white;
    padding: 2rem 0;
    margin-top: 3cm;
}
.footer-section {
    border-bottom: 1.5px solid #4a4a4a;
    margin-bottom: 2rem;
}
.footer-section h3 {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin: 0;
}
.footer-section h3::after {
    content: '\25BC';
    font-size: 0.8em;
    transition: transform 0.3s ease;
}
.footer-section.active h3::after {
    transform: rotate(180deg);
}
.footer-section ul {
    list-style-type: none;
    padding: 0;
    display: none;
}
.footer-section.active ul {
    display: block;
}
.footer-section li {
    padding: 0.5rem 0;
}
.footer-section a {
    color: white;
    text-decoration: none;
}
.social-icons {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 1rem;
}
.social-icons a {
    color: white;
    font-size: 1.5rem;
}
.footer-bottom {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #999;
}
.footer-bottom a {
    color: #999;
    text-decoration: none;
}
.footer-bottom a:hover {
    text-decoration: underline;
}
.error-message {
    color: #e61919;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}