body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f3f4f6;
    overflow-x: hidden;
}

/* Custom Corporate Color - Actualizado al azul #004C87 */
.bg-corporate {
    background-color: #004C87;
}
.text-corporate {
    color: #004C87;
}
.border-corporate {
    border-color: #004C87;
}

/* Hero Section - Clean White Background */
.hero-section {
    background-color: #ffffff;
}

/* Form Styling */
.glass-form {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #f3f4f6;
    position: relative;
    z-index: 10;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #1f2937;
}

.form-input:focus {
    /* Focus border actualizado a #004C87 */
    border-color: #004C87;
    outline: none;
    box-shadow: 0 0 0 3px rgba(48, 55, 90, 0.1);
}

/* Checkbox customization */
.custom-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    /* Accent actualizado a #004C87 */
    accent-color: #004C87;
}

/* Floating Whatsapp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366; 
    color: #FFF; 
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

/* Slider/Marquee Animation */
.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    background: transparent;
}

.slider-track {
    display: flex;
    width: calc(200px * 12); 
    animation: scroll 30s linear infinite;
}

.slide {
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 6)); } 
}

/* Modal */
#successModal, #policyModal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

/* Utility to remove arrows from number inputs */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}