/* Estilos gerais */
:where([class^="ri-"])::before { content: "\f3c2"; }

body {
    font-family: 'Inter', sans-serif;
}

.hero-gradient {
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.9) 40%, rgba(255,255,255,0) 100%);
}

input:focus {
    outline: none;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Estilos para checkbox personalizado */
.custom-checkbox {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
}

.custom-checkbox:hover input ~ .checkmark {
    border-color: #0077cc;
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: #0077cc;
    border-color: #0077cc;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Estilos para switch personalizado */
.custom-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.custom-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e5e7eb;
    transition: .4s;
    border-radius: 24px;
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .switch-slider {
    background-color: #0077cc;
}

input:checked + .switch-slider:before {
    transform: translateX(24px);
}

/* Estilos para a página empresa */
.hero-section {
    background-image: url('https://readdy.ai/api/search-image?query=Modern%20healthcare%20clinic%20with%20doctors%20and%20patients%20in%20a%20bright%2C%20clean%20environment%20with%20blue%20accents.%20The%20left%20side%20of%20the%20image%20has%20a%20smooth%20gradient%20to%20white%20for%20text%20placement.%20Professional%20medical%20setting%20with%20subtle%20medical%20technology%20visible.%20Soft%20lighting%20and%20professional%20atmosphere.&width=1920&height=800&seq=123456&orientation=landscape');
    background-size: cover;
    background-position: center;
}

.hero-content {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 0) 100%);
}

.custom-shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.step-card:hover {
    transform: translateY(-5px);
} 