/* /Components/AgentGoyBuru.razor.rz.scp.css */
.justly-law-firm-container[b-84hrm8uxpa] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 100px 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
    padding-top:4rem;
}

.content[b-84hrm8uxpa] {
    display: flex;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    padding: 0 20px;
}

.text-content[b-84hrm8uxpa] {
    flex: 1;
    padding-right: 50px;
}

.welcome-section[b-84hrm8uxpa] {
    margin-bottom: 20px;
}

.welcome-heading[b-84hrm8uxpa] {
    font-size: 14px;
    color: #666;
    letter-spacing: 2px;
    margin: 0;
}

.firm-name[b-84hrm8uxpa] {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin: 10px 0 0;
}

.underline[b-84hrm8uxpa] {
    width: 50px;
    height: 3px;
    background-color: #2d6cdf;
    margin-top: 10px;
}

.intro-text[b-84hrm8uxpa] {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}

.lorem-ipsum[b-84hrm8uxpa] {
    font-size: 14px;
    color: #777;
    line-height: 1.8;
    margin-bottom: 30px;
}

.read-more-button[b-84hrm8uxpa] {
    background-color: #d4af37; /* Gold color */
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

    .read-more-button:hover[b-84hrm8uxpa] {
        background-color: #b8860b;
    }

.signature[b-84hrm8uxpa] {
    width: 150px;
    margin-top: 20px;
}

.image-content[b-84hrm8uxpa] {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.lawyer-image[b-84hrm8uxpa] {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
}
/* /Components/Cards.razor.rz.scp.css */
/* ===== Base ===== */
.featured-properties[b-4r4x4snwb3] {
    padding: 4rem 8%;
    font-family: Arial, sans-serif;
    background: #fff;
}

.section-header[b-4r4x4snwb3] {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

    .section-header .subtitle[b-4r4x4snwb3] {
        color: #3f8efc;
        font-size: 0.9rem;
        text-decoration: none;
    }

    .section-header h2[b-4r4x4snwb3] {
        font-size: 2rem;
        margin: 0.5rem 0;
        font-weight: bold;
        color: #222;
    }

    .section-header p[b-4r4x4snwb3] {
        color: #666;
        font-size: 0.95rem;
    }

/* ===== Grid ===== */
.properties-grid[b-4r4x4snwb3] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* ===== Card ===== */
.property-card[b-4r4x4snwb3] {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    /* quité max-width fijo */
    width: 100%;
}

    .property-card:hover[b-4r4x4snwb3] {
        transform: translateY(-5px);
    }

.property-image[b-4r4x4snwb3] {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

    .property-image img[b-4r4x4snwb3] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .property-image .tag[b-4r4x4snwb3] {
        position: absolute;
        top: 10px;
        left: 10px;
        background: #3f8efc;
        color: white;
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
        border-radius: 4px;
    }

/* ===== Card Info ===== */
.property-info[b-4r4x4snwb3] {
    padding: 1rem;
}

    .property-info h3[b-4r4x4snwb3] {
        font-size: 1rem;
        margin-bottom: 0.3rem;
        color: #222;
    }

    .property-info .location[b-4r4x4snwb3] {
        color: #777;
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

.price[b-4r4x4snwb3] {
    font-size: 1.1rem;
    font-weight: bold;
    color: #3f8efc;
    margin-bottom: 0.8rem;
}

.details[b-4r4x4snwb3] {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #555;
}

/* ===== Responsivo ===== */

/* Móviles pequeños */
@media (max-width: 600px) {
    .featured-properties[b-4r4x4snwb3] {
        padding: 2rem 5%;
    }

    .section-header h2[b-4r4x4snwb3] {
        font-size: 1.5rem;
    }

    .property-image[b-4r4x4snwb3] {
        height: 150px;
    }
}

/* Tablets */
@media (min-width: 601px) and (max-width: 1024px) {
    .properties-grid[b-4r4x4snwb3] {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas */
    }

    .property-card[b-4r4x4snwb3] {
        max-width: 100%;
    }
}

/* Desktop grande */
@media (min-width: 1200px) {
    .properties-grid[b-4r4x4snwb3] {
        grid-template-columns: repeat(3, 1fr); /* 3 columnas fijas */
    }

    .property-card[b-4r4x4snwb3] {
        max-width: 100%; /* ocupa toda la celda */
    }

    .section-header h2[b-4r4x4snwb3] {
        font-size: 2.2rem;
    }
}
/* /Components/CardServices.razor.rz.scp.css */
.values-section[b-r24k38in3p] {
	background-color: #f9f9f9;
	padding: 60px 20px;
	text-align: center;
}

.container[b-r24k38in3p] {
	max-width: 1200px;
	margin: 0 auto;
}

.section-header h2[b-r24k38in3p] {
	font-size: 2em;
	margin-bottom: 10px;
}

.section-header p[b-r24k38in3p] {
	font-size: 1em;
	color: #555;
}

/* GRID PRINCIPAL */
.highlight-grid[b-r24k38in3p] {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 35px;
	margin-top: 40px;
}

/* CARD PRINCIPAL DESTACADA */
.main-card[b-r24k38in3p] {
	background: white;
	padding: 50px 30px;
	border-radius: 14px;
	max-width: 600px;
	width: 100%;
	box-shadow: 0px 10px 25px rgba(0,0,0,0.1);
	transform: scale(1.05);
}

	.main-card h3[b-r24k38in3p] {
		font-size: 1.8em;
		color: #3f8efc;
	}

/* SUB GRID */
.sub-grid[b-r24k38in3p] {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 25px;
	width: 100%;
}

.feature-card[b-r24k38in3p] {
	background: white;
	padding: 30px 20px;
	border-radius: 12px;
	transition: 0.3s;
}

	.feature-card:hover[b-r24k38in3p] {
		transform: translateY(-5px);
		box-shadow: 0px 10px 25px rgba(0,0,0,0.1);
	}

/* ICONS */
.icon-wrapper[b-r24k38in3p] {
	background: #3f8efc;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin-bottom: 25px;
}

.material-icons[b-r24k38in3p] {
	font-size: 40px;
	color: white;
}

/* TEXT */
h3[b-r24k38in3p] {
	font-size: 1.3em;
	margin-bottom: 10px;
}

p[b-r24k38in3p] {
	font-size: 0.95em;
	color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.main-card[b-r24k38in3p] {
		padding: 40px 20px;
	}

		.main-card h3[b-r24k38in3p] {
			font-size: 1.5em;
		}
}
/* /Components/ContactForm.razor.rz.scp.css */
.contact-section[b-epjvzg29mx] {
    padding: 40px 20px;
   
}

.contact-container[b-epjvzg29mx] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
    background-color: #fff;
  
}

.contact-details[b-epjvzg29mx] {
    flex: 1 1 400px;
    background-color: #2d6cdf; /* Dark background similar to the image */
    color: #fff;
    padding: 30px;
    border-radius: 8px;
}

    .contact-details h3[b-epjvzg29mx] {
        color: #cfcfcf; /* Light grey text */
        font-size: 1rem;
        margin-bottom: 5px;
        text-transform: uppercase;
    }

    .contact-details h2[b-epjvzg29mx] {
        font-size: 1.8rem;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .contact-details p[b-epjvzg29mx] {
        color: #ffff; /* Slightly lighter grey */
        line-height: 1.7;
        margin-bottom: 30px;
        font-size: 0.95rem;
    }

.contact-info-list .info-item[b-epjvzg29mx] {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

    .contact-info-list .info-item .material-icons[b-epjvzg29mx] {
        color: #ffff; /* Green icon color */
        margin-right: 15px;
        font-size: 1.5rem;
    }

    .contact-info-list .info-item span[b-epjvzg29mx] {
        display: block;
        font-size: 0.85rem;
        color: #a0aec0;
        margin-bottom: 5px;
    }

    .contact-info-list .info-item a[b-epjvzg29mx],
    .contact-info-list .info-item address[b-epjvzg29mx] {
        color: #fff;
        text-decoration: none;
        font-style: normal;
        font-size: 1rem;
    }

.send-message-form[b-epjvzg29mx] {
    flex: 1 1 400px;
    padding: 30px;
    border-radius: 8px;
    background-color: #fff; /* White background for the form */
}

    .send-message-form h3[b-epjvzg29mx] {
        color: #2d6cdf;
        font-size: 0.9rem;
        margin-bottom: 5px;
        text-transform: uppercase;
    }

    .send-message-form h2[b-epjvzg29mx] {
        font-size: 1.9rem;
        margin-bottom: 20px;
        font-weight: 500;
        color: #2d3748; /* Dark grey text */
    }

    .send-message-form p[b-epjvzg29mx] {
        color: #4a5568;
        line-height: 1.7;
        margin-bottom: 30px;
        font-size: 0.95rem;
    }

.contact-form[b-epjvzg29mx] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

    .contact-form .form-group[b-epjvzg29mx] {
        position: relative;
    }

        .contact-form .form-group.full-width[b-epjvzg29mx] {
            grid-column: 1 / -1;
        }

    .contact-form input[b-epjvzg29mx],
    .contact-form textarea[b-epjvzg29mx] {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #e2e8f0; /* Light border */
        border-radius: 5px;
        font-size: 1rem;
        color: #2d3748;
        background-color: #edf2f7; /* Light background */
        box-sizing: border-box;
        outline: none;
        transition: border-color 0.2s ease-in-out;
    }

        .contact-form input:focus[b-epjvzg29mx],
        .contact-form textarea:focus[b-epjvzg29mx] {
            border-color: #2d6cdf;
        }

    .contact-form textarea[b-epjvzg29mx] {
        min-height: 120px;
    }

.submit-button[b-epjvzg29mx] {
    grid-column: 1 / -1;
    text-align: left; /* Align button to the left */
}

.primary-button[b-epjvzg29mx] {
    background-color: #48bb78; /* Green button color */
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

    .primary-button:hover[b-epjvzg29mx] {
        background-color: #38a169;
    }

.primary-button[b-epjvzg29mx] {
    cursor: pointer;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1.2rem;
    border-radius: 0.25rem;
    background-color: #007bff !important;
    color: white !important;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 2px solid transparent;
}

    .primary-button:hover[b-epjvzg29mx] {
        color: #007bff !important;
        background-color: transparent !important;
        border: 2px solid #007bff;
        transform: translateY(-4px);
    }

.location-map[b-epjvzg29mx] {
    max-width: 1500px;
    margin: 30px auto 0;
    padding: 10px;
    background-color: #fff;
    text-align: center;
}

    .location-map h3[b-epjvzg29mx] {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #2d3748;
    }

.map-responsive[b-epjvzg29mx] {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
}

    .map-responsive iframe[b-epjvzg29mx] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        border: 0;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-container[b-epjvzg29mx] {
        flex-direction: column;
    }

    .contact-details[b-epjvzg29mx],
    .send-message-form[b-epjvzg29mx] {
        width: 100%;
    }

    .contact-form[b-epjvzg29mx] {
        grid-template-columns: 1fr;
    }
}
/* /Components/CustomDropdown.razor.rz.scp.css */
/* Etiqueta arriba del control */
.search-item[b-02yfwo5q4r] {
    display: flex;
    flex-direction: column;
    font-family: system-ui, Arial, sans-serif;
}

    .search-item > label[b-02yfwo5q4r] {
        font-size: .8rem;
        color: #777;
        margin-bottom: .35rem;
    }

/* Contenedor y botón del dropdown */
.dd[b-02yfwo5q4r] {
    position: relative;
    width: 200px;
    outline: none;
}

.dd-toggle[b-02yfwo5q4r] {
    width: 100%;
    padding: .55rem 2.2rem .55rem 1rem;
    background: #f9fafb;
    border: 1px solid #e6e6e6;
    border-radius: 22px;
    font-weight: 800;
    font-size: 1rem;
    color: #111;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

    .dd-toggle:hover[b-02yfwo5q4r] {
        border-color: #0d3b66;
        box-shadow: 0 0 0 3px rgba(13,59,102,.08);
    }

/* Chevron */
.dd-chevron[b-02yfwo5q4r] {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    rotate: 45deg;
    transition: transform .2s ease;
}

.dd.open .dd-chevron[b-02yfwo5q4r] {
    transform: translateY(-50%) rotate(225deg);
}

/* Menú */
.dd-menu[b-02yfwo5q4r] {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(0,0,0,.12);
    padding: .35rem;
    margin: 0;
    list-style: none;
    max-height: 260px;
    overflow: auto;
    z-index: 50;
}

/* Opción */
.dd-option[b-02yfwo5q4r] {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    padding: .6rem .7rem;
    border-radius: 8px;
    font-size: .95rem;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}

    .dd-option:hover[b-02yfwo5q4r] {
        background: #f0f6ff;
    }

    .dd-option.active[b-02yfwo5q4r] {
        background: #0d3b66;
        color: #fff;
    }
/* /Components/Gallery.razor.rz.scp.css */
/* styles.css */

/* Estilos Generales */
body[b-lueuzpxb40] {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #222;
    color: #eee;
}

.projects-section[b-lueuzpxb40] {
    padding: 50px 20px;
    text-align: center;
}

.content-wrapper[b-lueuzpxb40] {
    max-width: 1200px;
    margin: 0 auto;
}

.section-subtitle[b-lueuzpxb40] {
    color: #aaa;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.section-title[b-lueuzpxb40] {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-description[b-lueuzpxb40] {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Estilos de la Cuadrícula de Tarjetas */
.cards-grid[b-lueuzpxb40] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Estilos de las Tarjetas */
.card[b-lueuzpxb40] {
    position: relative;
    width: 100%;
    /* Ajuste clave para hacerla vertical y rectangular */
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.1);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.6s ease-in-out;
}

/* Imagen dentro de la tarjeta */
.card-image[b-lueuzpxb40] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease-in-out;
}

/* Efecto Hover de la Tarjeta */
.card:hover[b-lueuzpxb40] {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

    .card:hover .card-image[b-lueuzpxb40] {
        transform: scale(1.1);
    }

.card__content[b-lueuzpxb40] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(63, 142, 252, 0.8);
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    text-align: left;
}

.card:hover .card__content[b-lueuzpxb40] {
    transform: translateY(0%);
}

.card__title[b-lueuzpxb40] {
    margin: 0 0 5px;
    font-size: 1.2em;
    font-weight: 700;
    color: #fff;
}

.card__description[b-lueuzpxb40] {
    margin: 0;
    font-size: 0.9em;
    color: #fff;
    line-height: 1.4;
}

/* Media Queries para Responsividad */
@media (max-width: 768px) {
    .section-title[b-lueuzpxb40] {
        font-size: 2em;
    }

    .cards-grid[b-lueuzpxb40] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Header.razor.rz.scp.css */
.hero-banner[b-0iesf0w0ro] {
    position: relative;
    height: 200px;
    background-image: url('/images/about/conferecia-goy-guru-1.jpg'); /* Cambia por tu imagen */
    background-size: cover;
    background-position: center;
    color: white;
}

.overlay[b-0iesf0w0ro] {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.content[b-0iesf0w0ro] {
    position: relative;
    padding: 50px;
    z-index: 1;
}

.title[b-0iesf0w0ro] {
    margin: 0;
    font-size: 2rem;
}

.breadcrumbs[b-0iesf0w0ro] {
    margin-top: 5px;
    font-size: 0.9rem;
}

    .breadcrumbs a[b-0iesf0w0ro] {
        color: white;
        text-decoration: none;
    }

        .breadcrumbs a:hover[b-0iesf0w0ro] {
            text-decoration: underline;
        }

    .breadcrumbs span[b-0iesf0w0ro] {
        margin: 0 5px;
    }
/* /Components/HomeSearch.razor.rz.scp.css */
/* Base styles for larger screens (already provided in the previous response) */
.search-section[b-0qm98mlb40] {

    padding-top:4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.search-form[b-0qm98mlb40] {
    display: flex;
    border-radius: 50px;
}

.search-input[b-0qm98mlb40] {
    width: 400px;
    padding: 15px 25px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 16px;
    outline: none;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.1);
}

.search-button[b-0qm98mlb40] {
    padding: 15px 30px;
    border: none;
    border-radius: 0 50px 50px 0;
    background-color: #3f8efc;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

/* * Responsive styles for screens smaller than 768px 
 * This is the new part for responsiveness
 */
@media (max-width: 768px) {
    .search-form[b-0qm98mlb40] {
        /* Changes the layout from a row to a column */
        flex-direction: column;
        /* Aligns items to be full-width */
        align-items: stretch;
        /* Adjusts the border radius for a block look */
        border-radius: 10px;
    }

    .search-input[b-0qm98mlb40] {
        /* Ensures the input takes up the full width of the form */
        width: auto;
        /* Rounds all corners for a block-like design */
        border-radius: 10px;
        /* Adds space between the input and the button */
        margin-bottom: 10px;
        /* Centers the text */
        text-align: center;
    }

    .search-button[b-0qm98mlb40] {
        /* Rounds all corners to match the input */
        border-radius: 10px;
    }
}
/* /Components/HouseModal.razor.rz.scp.css */
body[b-rk09ibi5vw] {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

.zillow-listing[b-rk09ibi5vw] {
    max-width: 1000px;
    margin: 20px auto;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header[b-rk09ibi5vw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    flex-wrap: wrap;
}

.back-link a[b-rk09ibi5vw] {
    color: #007bff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.contact-agent button[b-rk09ibi5vw] {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.gallery[b-rk09ibi5vw] {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-image[b-rk09ibi5vw] {
    width: 100%;
    height: 350px;
    max-width: 500px;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
    object-position: center;
}

.thumbnails-container[b-rk09ibi5vw] {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
}

.thumbnail[b-rk09ibi5vw] {
    width: 100px;
    height: auto;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.3s;
    flex-shrink: 0;
}

    .thumbnail:hover[b-rk09ibi5vw], .thumbnail.active[b-rk09ibi5vw] {
        border-color: #007bff;
    }

.listing-details[b-rk09ibi5vw] {
    display: flex;
    flex-direction: column;
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.price[b-rk09ibi5vw] {
    font-size: 2em;
    font-weight: bold;
    color: #2399ff;
}

.address[b-rk09ibi5vw] {
    font-size: 1.2em;
    color: #333;
    margin-top: 5px;
}

.key-features[b-rk09ibi5vw] {
    display: flex;
    align-items: center;
    margin-left: auto;
    flex-wrap: wrap;
}

    .key-features div[b-rk09ibi5vw] {
        display: flex;
        align-items: center;
        margin: 0 10px;
        text-align: center;
    }

    .key-features span[b-rk09ibi5vw] {
        font-size: 0.8em;
        color: #777;
        display: block;
        margin-left: 5px;
    }

    .key-features .material-icons[b-rk09ibi5vw] {
        font-size: 1.5em;
        color: #555;
    }

.section[b-rk09ibi5vw] {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.section-title[b-rk09ibi5vw] {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.show-more[b-rk09ibi5vw] {
    color: #007bff;
    text-decoration: none;
    display: block;
    margin-top: 10px;
}

.features-grid[b-rk09ibi5vw] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-card[b-rk09ibi5vw] {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

    .feature-card h3[b-rk09ibi5vw] {
        display: flex;
        align-items: center;
        font-size: 1.1em;
        margin-top: 0;
        margin-bottom: 10px;
        color: #333;
    }

        .feature-card h3 .material-icons[b-rk09ibi5vw] {
            margin-right: 8px;
            font-size: 1.5em;
            color: #007bff;
        }

    .feature-card ul[b-rk09ibi5vw] {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .feature-card ul li[b-rk09ibi5vw] {
            padding: 5px 0;
            border-bottom: 1px dashed #e0e0e0;
            font-size: 0.9em;
            color: #555;
        }

            .feature-card ul li:last-child[b-rk09ibi5vw] {
                border-bottom: none;
            }

.map-container[b-rk09ibi5vw] {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

    .map-container iframe[b-rk09ibi5vw] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

.fixed-button[b-rk09ibi5vw] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

    .fixed-button button[b-rk09ibi5vw] {
        background-color: #007bff;
        border: none;
        color: #fff;
        padding: 15px;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        .fixed-button button:hover[b-rk09ibi5vw] {
            background-color: #0056b3;
        }

    .fixed-button .material-icons[b-rk09ibi5vw] {
        font-size: 32px;
        color: #fff;
    }

.contact-container[b-rk09ibi5vw] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
    background-color: #fff;
}

.contact-details[b-rk09ibi5vw] {
    flex: 1 1 400px;
    background-color: #2d6cdf;
    color: #fff;
    padding: 30px;
    border-radius: 8px;
}

    .contact-details h3[b-rk09ibi5vw] {
        color: #cfcfcf;
        font-size: 1rem;
        margin-bottom: 5px;
        text-transform: uppercase;
    }

    .contact-details h2[b-rk09ibi5vw] {
        font-size: 1.8rem;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .contact-details p[b-rk09ibi5vw] {
        color: #ffff;
        line-height: 1.7;
        margin-bottom: 30px;
        font-size: 0.95rem;
    }

.contact-info-list .info-item[b-rk09ibi5vw] {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

    .contact-info-list .info-item .material-icons[b-rk09ibi5vw] {
        color: #ffff;
        margin-right: 15px;
        font-size: 1.5rem;
    }

    .contact-info-list .info-item span[b-rk09ibi5vw] {
        display: block;
        font-size: 0.85rem;
        color: #a0aec0;
        margin-bottom: 5px;
    }

    .contact-info-list .info-item a[b-rk09ibi5vw],
    .contact-info-list .info-item address[b-rk09ibi5vw] {
        color: #fff;
        text-decoration: none;
        font-style: normal;
        font-size: 1rem;
    }

/* --- Estilo del formulario de contacto ajustado --- */
.send-message-form[b-rk09ibi5vw] {
    flex: 1 1 350px; /* Reducido para que el formulario sea más pequeño */
    padding: 30px;
    border-radius: 8px;
    background-color: #fff;
}

    .send-message-form h3[b-rk09ibi5vw] {
        color: #2d6cdf;
        font-size: 0.9rem;
        margin-bottom: 5px;
        text-transform: uppercase;
    }

    .send-message-form h2[b-rk09ibi5vw] {
        font-size: 1.9rem;
        margin-bottom: 20px;
        font-weight: 500;
        color: #2d3748;
    }

    .send-message-form p[b-rk09ibi5vw] {
        color: #4a5568;
        line-height: 1.7;
        margin-bottom: 30px;
        font-size: 0.95rem;
    }

.contact-form[b-rk09ibi5vw] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

    .contact-form .form-group[b-rk09ibi5vw] {
        position: relative;
    }

        .contact-form .form-group.full-width[b-rk09ibi5vw] {
            grid-column: 1 / -1;
        }

    .contact-form input[b-rk09ibi5vw],
    .contact-form textarea[b-rk09ibi5vw] {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #e2e8f0;
        border-radius: 5px;
        font-size: 1rem;
        color: #2d3748;
        background-color: #edf2f7;
        box-sizing: border-box;
        outline: none;
        transition: border-color 0.2s ease-in-out;
    }

        .contact-form input:focus[b-rk09ibi5vw],
        .contact-form textarea:focus[b-rk09ibi5vw] {
            border-color: #2d6cdf;
        }

    .contact-form textarea[b-rk09ibi5vw] {
        min-height: 120px;
    }

.submit-button[b-rk09ibi5vw] {
    grid-column: 1 / -1;
    text-align: left;
}

.primary-button[b-rk09ibi5vw] {
    cursor: pointer;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1.2rem;
    border-radius: 0.25rem;
    background-color: #007bff !important;
    color: white !important;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 2px solid transparent;
}

    .primary-button:hover[b-rk09ibi5vw] {
        color: #007bff !important;
        background-color: transparent !important;
        border: 2px solid #007bff;
        transform: translateY(-4px);
    }

.location-map[b-rk09ibi5vw] {
    max-width: 1500px;
    margin: 30px auto 0;
    padding: 10px;
    background-color: #fff;
    text-align: center;
}

    .location-map h3[b-rk09ibi5vw] {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #2d3748;
    }

.map-responsive[b-rk09ibi5vw] {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 56.25%;
}

    .map-responsive iframe[b-rk09ibi5vw] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        border: 0;
    }
/* Responsive adjustments */
@media (max-width: 768px) {
    .zillow-listing[b-rk09ibi5vw] {
        margin: 0;
        border-radius: 0;
    }

    .header[b-rk09ibi5vw] {
        flex-direction: column;
        align-items: stretch;
    }

    .back-link[b-rk09ibi5vw] {
        margin-bottom: 10px;
    }

    .contact-agent[b-rk09ibi5vw] {
        width: 100%;
    }

        .contact-agent button[b-rk09ibi5vw] {
            width: 100%;
        }

    .listing-details[b-rk09ibi5vw] {
        flex-direction: column;
        align-items: flex-start;
    }

    .key-features[b-rk09ibi5vw] {
        margin-top: 15px;
        margin-left: 0;
    }

    .features-grid[b-rk09ibi5vw] {
        grid-template-columns: 1fr;
    }

    .contact-container[b-rk09ibi5vw] {
        flex-direction: column;
        padding: 15px;
    }

    .contact-details[b-rk09ibi5vw],
    .send-message-form[b-rk09ibi5vw] {
        width: 100%; /* Ocupa todo el ancho disponible */
        max-width: 100%; /* Evita que se pasen del viewport */
        flex-basis: auto;
        box-sizing: border-box; /* Incluye padding en el cálculo */
    }

    .contact-form[b-rk09ibi5vw] {
        grid-template-columns: 1fr;
    }
}



/* Fondo del modal */
.modal-overlay[b-rk09ibi5vw] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    overflow-y: auto;
    padding: 20px; /* margen en móviles */
}

/* Ajustes del modal */
.modal-content[b-rk09ibi5vw] {
    background: #fff;
    border-radius: 8px;
    max-width: 1000px;
    width: 100%;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    animation: fadeInUp-b-rk09ibi5vw 0.3s ease;
}

/* Animación de entrada */
@keyframes fadeInUp-b-rk09ibi5vw {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




.agent-card[b-rk09ibi5vw] {
    display: flex;
    align-items: center;
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #f9f9f9;
}

.agent-photo[b-rk09ibi5vw] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.agent-info[b-rk09ibi5vw] {
    display: flex;
    flex-direction: column;
}

.agent-name[b-rk09ibi5vw] {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.agent-role[b-rk09ibi5vw] {
    margin: 2px 0 0;
    color: #555 !important;
    font-size: 0.9rem;
}
/* /Components/Loading.razor.rz.scp.css */
.loading-overlay[b-fjiosk4gmx] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
}

.spinner[b-fjiosk4gmx] {
    width: 60px;
    height: 60px;
    border: 6px solid #ccc;
    border-top: 6px solid #3f8efc;
    border-radius: 50%;
    animation: spin-b-fjiosk4gmx 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin-b-fjiosk4gmx {
    100% {
        transform: rotate(360deg);
    }
}



/* From Uiverse.io by Admin12121 */
.loader[b-fjiosk4gmx] {
    --duration: 3s;
    --primary: rgba(39, 94, 254, 1);
    --primary-light: #2f71ff;
    --primary-rgba: rgba(39, 94, 254, 0);
    width: 200px;
    height: 320px;
    position: relative;
    transform-style: preserve-3d;
}

@media (max-width: 480px) {
    .loader[b-fjiosk4gmx] {
        zoom: 0.44;
    }
}

.loader[b-fjiosk4gmx]:before, .loader[b-fjiosk4gmx]:after {
    --r: 20.5deg;
    content: "";
    width: 320px;
    height: 140px;
    position: absolute;
    right: 32%;
    bottom: -11px;
    /* change the back groung color on switching from light to dark mood */
    background: #e8e8e8;
    transform: translateZ(200px) rotate(var(--r));
    -webkit-animation: mask var(--duration) linear forwards infinite;
    animation: mask-b-fjiosk4gmx var(--duration) linear forwards infinite;
}

.loader[b-fjiosk4gmx]:after {
    --r: -20.5deg;
    right: auto;
    left: 32%;
}

.loader .ground[b-fjiosk4gmx] {
    position: absolute;
    left: -50px;
    bottom: -120px;
    transform-style: preserve-3d;
    transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
}

    .loader .ground div[b-fjiosk4gmx] {
        transform: rotateX(90deg) rotateY(0deg) translate(-48px, -120px) translateZ(100px) scale(0);
        width: 200px;
        height: 200px;
        background: var(--primary);
        background: linear-gradient(45deg, var(--primary) 0%, var(--primary) 50%, var(--primary-light) 50%, var(--primary-light) 100%);
        transform-style: preserve-3d;
        -webkit-animation: ground var(--duration) linear forwards infinite;
        animation: ground-b-fjiosk4gmx var(--duration) linear forwards infinite;
    }

        .loader .ground div[b-fjiosk4gmx]:before, .loader .ground div[b-fjiosk4gmx]:after {
            --rx: 90deg;
            --ry: 0deg;
            --x: 44px;
            --y: 162px;
            --z: -50px;
            content: "";
            width: 156px;
            height: 300px;
            opacity: 0;
            background: linear-gradient(var(--primary), var(--primary-rgba));
            position: absolute;
            transform: rotateX(var(--rx)) rotateY(var(--ry)) translate(var(--x), var(--y)) translateZ(var(--z));
            -webkit-animation: ground-shine var(--duration) linear forwards infinite;
            animation: ground-shine-b-fjiosk4gmx var(--duration) linear forwards infinite;
        }

        .loader .ground div[b-fjiosk4gmx]:after {
            --rx: 90deg;
            --ry: 90deg;
            --x: 0;
            --y: 177px;
            --z: 150px;
        }

.loader .box[b-fjiosk4gmx] {
    --x: 0;
    --y: 0;
    position: absolute;
    -webkit-animation: var(--duration) linear forwards infinite;
    animation: var(--duration) linear forwards infinite;
    transform: translate(var(--x), var(--y));
}

    .loader .box div[b-fjiosk4gmx] {
        background-color: var(--primary);
        width: 48px;
        height: 48px;
        position: relative;
        transform-style: preserve-3d;
        -webkit-animation: var(--duration) ease forwards infinite;
        animation: var(--duration) ease forwards infinite;
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }

        .loader .box div[b-fjiosk4gmx]:before, .loader .box div[b-fjiosk4gmx]:after {
            --rx: 90deg;
            --ry: 0deg;
            --z: 24px;
            --y: -24px;
            --x: 0;
            content: "";
            position: absolute;
            background-color: inherit;
            width: inherit;
            height: inherit;
            transform: rotateX(var(--rx)) rotateY(var(--ry)) translate(var(--x), var(--y)) translateZ(var(--z));
            filter: brightness(var(--b, 1.2));
        }

        .loader .box div[b-fjiosk4gmx]:after {
            --rx: 0deg;
            --ry: 90deg;
            --x: 24px;
            --y: 0;
            --b: 1.4;
        }

    .loader .box.box0[b-fjiosk4gmx] {
        --x: -220px;
        --y: -120px;
        left: 58px;
        top: 108px;
    }

    .loader .box.box1[b-fjiosk4gmx] {
        --x: -260px;
        --y: 120px;
        left: 25px;
        top: 120px;
    }

    .loader .box.box2[b-fjiosk4gmx] {
        --x: 120px;
        --y: -190px;
        left: 58px;
        top: 64px;
    }

    .loader .box.box3[b-fjiosk4gmx] {
        --x: 280px;
        --y: -40px;
        left: 91px;
        top: 120px;
    }

    .loader .box.box4[b-fjiosk4gmx] {
        --x: 60px;
        --y: 200px;
        left: 58px;
        top: 132px;
    }

    .loader .box.box5[b-fjiosk4gmx] {
        --x: -220px;
        --y: -120px;
        left: 25px;
        top: 76px;
    }

    .loader .box.box6[b-fjiosk4gmx] {
        --x: -260px;
        --y: 120px;
        left: 91px;
        top: 76px;
    }

    .loader .box.box7[b-fjiosk4gmx] {
        --x: -240px;
        --y: 200px;
        left: 58px;
        top: 87px;
    }

.loader .box0[b-fjiosk4gmx] {
    -webkit-animation-name: box-move0;
    animation-name: box-move0-b-fjiosk4gmx;
}

    .loader .box0 div[b-fjiosk4gmx] {
        -webkit-animation-name: box-scale0;
        animation-name: box-scale0-b-fjiosk4gmx;
    }

.loader .box1[b-fjiosk4gmx] {
    -webkit-animation-name: box-move1;
    animation-name: box-move1-b-fjiosk4gmx;
}

    .loader .box1 div[b-fjiosk4gmx] {
        -webkit-animation-name: box-scale1;
        animation-name: box-scale1-b-fjiosk4gmx;
    }

.loader .box2[b-fjiosk4gmx] {
    -webkit-animation-name: box-move2;
    animation-name: box-move2-b-fjiosk4gmx;
}

    .loader .box2 div[b-fjiosk4gmx] {
        -webkit-animation-name: box-scale2;
        animation-name: box-scale2-b-fjiosk4gmx;
    }

.loader .box3[b-fjiosk4gmx] {
    -webkit-animation-name: box-move3;
    animation-name: box-move3-b-fjiosk4gmx;
}

    .loader .box3 div[b-fjiosk4gmx] {
        -webkit-animation-name: box-scale3;
        animation-name: box-scale3-b-fjiosk4gmx;
    }

.loader .box4[b-fjiosk4gmx] {
    -webkit-animation-name: box-move4;
    animation-name: box-move4-b-fjiosk4gmx;
}

    .loader .box4 div[b-fjiosk4gmx] {
        -webkit-animation-name: box-scale4;
        animation-name: box-scale4-b-fjiosk4gmx;
    }

.loader .box5[b-fjiosk4gmx] {
    -webkit-animation-name: box-move5;
    animation-name: box-move5-b-fjiosk4gmx;
}

    .loader .box5 div[b-fjiosk4gmx] {
        -webkit-animation-name: box-scale5;
        animation-name: box-scale5-b-fjiosk4gmx;
    }

.loader .box6[b-fjiosk4gmx] {
    -webkit-animation-name: box-move6;
    animation-name: box-move6-b-fjiosk4gmx;
}

    .loader .box6 div[b-fjiosk4gmx] {
        -webkit-animation-name: box-scale6;
        animation-name: box-scale6-b-fjiosk4gmx;
    }

.loader .box7[b-fjiosk4gmx] {
    -webkit-animation-name: box-move7;
    animation-name: box-move7-b-fjiosk4gmx;
}

    .loader .box7 div[b-fjiosk4gmx] {
        -webkit-animation-name: box-scale7;
        animation-name: box-scale7-b-fjiosk4gmx;
    }

@-webkit-keyframes box-move0 {
    12% {
        transform: translate(var(--x), var(--y));
    }

    25%, 52% {
        transform: translate(0, 0);
    }

    80% {
        transform: translate(0, -32px);
    }

    90%, 100% {
        transform: translate(0, 188px);
    }
}

@keyframes box-move0-b-fjiosk4gmx {
    12% {
        transform: translate(var(--x), var(--y));
    }

    25%, 52% {
        transform: translate(0, 0);
    }

    80% {
        transform: translate(0, -32px);
    }

    90%, 100% {
        transform: translate(0, 188px);
    }
}

@-webkit-keyframes box-scale0 {
    6% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }

    14%, 100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

@keyframes box-scale0-b-fjiosk4gmx {
    6% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }

    14%, 100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

@-webkit-keyframes box-move1 {
    16% {
        transform: translate(var(--x), var(--y));
    }

    29%, 52% {
        transform: translate(0, 0);
    }

    80% {
        transform: translate(0, -32px);
    }

    90%, 100% {
        transform: translate(0, 188px);
    }
}

@keyframes box-move1-b-fjiosk4gmx {
    16% {
        transform: translate(var(--x), var(--y));
    }

    29%, 52% {
        transform: translate(0, 0);
    }

    80% {
        transform: translate(0, -32px);
    }

    90%, 100% {
        transform: translate(0, 188px);
    }
}

@-webkit-keyframes box-scale1 {
    10% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }

    18%, 100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

@keyframes box-scale1-b-fjiosk4gmx {
    10% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }

    18%, 100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

@-webkit-keyframes box-move2 {
    20% {
        transform: translate(var(--x), var(--y));
    }

    33%, 52% {
        transform: translate(0, 0);
    }

    80% {
        transform: translate(0, -32px);
    }

    90%, 100% {
        transform: translate(0, 188px);
    }
}

@keyframes box-move2-b-fjiosk4gmx {
    20% {
        transform: translate(var(--x), var(--y));
    }

    33%, 52% {
        transform: translate(0, 0);
    }

    80% {
        transform: translate(0, -32px);
    }

    90%, 100% {
        transform: translate(0, 188px);
    }
}

@-webkit-keyframes box-scale2 {
    14% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }

    22%, 100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

@keyframes box-scale2-b-fjiosk4gmx {
    14% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }

    22%, 100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

@-webkit-keyframes box-move3 {
    24% {
        transform: translate(var(--x), var(--y));
    }

    37%, 52% {
        transform: translate(0, 0);
    }

    80% {
        transform: translate(0, -32px);
    }

    90%, 100% {
        transform: translate(0, 188px);
    }
}

@keyframes box-move3-b-fjiosk4gmx {
    24% {
        transform: translate(var(--x), var(--y));
    }

    37%, 52% {
        transform: translate(0, 0);
    }

    80% {
        transform: translate(0, -32px);
    }

    90%, 100% {
        transform: translate(0, 188px);
    }
}

@-webkit-keyframes box-scale3 {
    18% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }

    26%, 100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

@keyframes box-scale3-b-fjiosk4gmx {
    18% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }

    26%, 100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

@-webkit-keyframes box-move4 {
    28% {
        transform: translate(var(--x), var(--y));
    }

    41%, 52% {
        transform: translate(0, 0);
    }

    80% {
        transform: translate(0, -32px);
    }

    90%, 100% {
        transform: translate(0, 188px);
    }
}

@keyframes box-move4-b-fjiosk4gmx {
    28% {
        transform: translate(var(--x), var(--y));
    }

    41%, 52% {
        transform: translate(0, 0);
    }

    80% {
        transform: translate(0, -32px);
    }

    90%, 100% {
        transform: translate(0, 188px);
    }
}

@-webkit-keyframes box-scale4 {
    22% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }

    30%, 100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

@keyframes box-scale4-b-fjiosk4gmx {
    22% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }

    30%, 100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

@-webkit-keyframes box-move5 {
    32% {
        transform: translate(var(--x), var(--y));
    }

    45%, 52% {
        transform: translate(0, 0);
    }

    80% {
        transform: translate(0, -32px);
    }

    90%, 100% {
        transform: translate(0, 188px);
    }
}

@keyframes box-move5-b-fjiosk4gmx {
    32% {
        transform: translate(var(--x), var(--y));
    }

    45%, 52% {
        transform: translate(0, 0);
    }

    80% {
        transform: translate(0, -32px);
    }

    90%, 100% {
        transform: translate(0, 188px);
    }
}

@-webkit-keyframes box-scale5 {
    26% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }

    34%, 100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

@keyframes box-scale5-b-fjiosk4gmx {
    26% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }

    34%, 100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

@-webkit-keyframes box-move6 {
    36% {
        transform: translate(var(--x), var(--y));
    }

    49%, 52% {
        transform: translate(0, 0);
    }

    80% {
        transform: translate(0, -32px);
    }

    90%, 100% {
        transform: translate(0, 188px);
    }
}

@keyframes box-move6-b-fjiosk4gmx {
    36% {
        transform: translate(var(--x), var(--y));
    }

    49%, 52% {
        transform: translate(0, 0);
    }

    80% {
        transform: translate(0, -32px);
    }

    90%, 100% {
        transform: translate(0, 188px);
    }
}

@-webkit-keyframes box-scale6 {
    30% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }

    38%, 100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

@keyframes box-scale6-b-fjiosk4gmx {
    30% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }

    38%, 100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

@-webkit-keyframes box-move7 {
    40% {
        transform: translate(var(--x), var(--y));
    }

    53%, 52% {
        transform: translate(0, 0);
    }

    80% {
        transform: translate(0, -32px);
    }

    90%, 100% {
        transform: translate(0, 188px);
    }
}

@keyframes box-move7-b-fjiosk4gmx {
    40% {
        transform: translate(var(--x), var(--y));
    }

    53%, 52% {
        transform: translate(0, 0);
    }

    80% {
        transform: translate(0, -32px);
    }

    90%, 100% {
        transform: translate(0, 188px);
    }
}

@-webkit-keyframes box-scale7 {
    34% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }

    42%, 100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

@keyframes box-scale7-b-fjiosk4gmx {
    34% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }

    42%, 100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

@-webkit-keyframes ground {
    0%, 65% {
        transform: rotateX(90deg) rotateY(0deg) translate(-48px, -120px) translateZ(100px) scale(0);
    }

    75%, 90% {
        transform: rotateX(90deg) rotateY(0deg) translate(-48px, -120px) translateZ(100px) scale(1);
    }

    100% {
        transform: rotateX(90deg) rotateY(0deg) translate(-48px, -120px) translateZ(100px) scale(0);
    }
}

@keyframes ground-b-fjiosk4gmx {
    0%, 65% {
        transform: rotateX(90deg) rotateY(0deg) translate(-48px, -120px) translateZ(100px) scale(0);
    }

    75%, 90% {
        transform: rotateX(90deg) rotateY(0deg) translate(-48px, -120px) translateZ(100px) scale(1);
    }

    100% {
        transform: rotateX(90deg) rotateY(0deg) translate(-48px, -120px) translateZ(100px) scale(0);
    }
}

@-webkit-keyframes ground-shine {
    0%, 70% {
        opacity: 0;
    }

    75%, 87% {
        opacity: 0.2;
    }

    100% {
        opacity: 0;
    }
}

@keyframes ground-shine-b-fjiosk4gmx {
    0%, 70% {
        opacity: 0;
    }

    75%, 87% {
        opacity: 0.2;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes mask {
    0%, 65% {
        opacity: 0;
    }

    66%, 100% {
        opacity: 1;
    }
}

@keyframes mask-b-fjiosk4gmx {
    0%, 65% {
        opacity: 0;
    }

    66%, 100% {
        opacity: 1;
    }
}
/* /Components/SecAboutHome.razor.rz.scp.css */
.insurance-section[b-dfr3flutn5] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color: #313131;
    color: white;
}

.insurance-image[b-dfr3flutn5] {
    flex: 1;
    padding-right: 20px;
}

    .insurance-image img[b-dfr3flutn5] {
        width: 100%;
        height: auto;
        border-radius: 8px;
        object-fit: cover;
    }

.insurance-content[b-dfr3flutn5] {
    flex: 1;
    padding-left: 20px;
    padding-bottom:20px;
}

    .insurance-content h2[b-dfr3flutn5] {
        font-size: 1.8rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .insurance-content .highlight[b-dfr3flutn5] {
        color: #2d6cdf; /* Azul destacado */
        font-weight: bold;
    }

    .insurance-content p[b-dfr3flutn5] {
        margin-bottom: 15px;
        color: #ccc;
    }


    /* Botones */
.btn-primary[b-dfr3flutn5] {
    cursor: pointer;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1.2rem;
    border-radius: 0.25rem;
    background-color: #007bff !important;
    color: white !important;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 2px solid transparent;
}

    .btn-primary:hover[b-dfr3flutn5] {
        color: #ffff !important;
        background-color: transparent !important;
        border: 2px solid #007bff;
        transform: translateY(-4px);
    }



/* Responsive */
@media (max-width: 768px) {
    .insurance-section[b-dfr3flutn5] {
        flex-direction: column;
        text-align: center;
    }

    .insurance-image[b-dfr3flutn5] {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .insurance-content[b-dfr3flutn5] {
        padding-left: 0;
    }
}
/* /Components/WhyChoose.razor.rz.scp.css */
.values-section[b-kc9k48j00h] {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.container[b-kc9k48j00h] {
    max-width: 1400px; /* soporte para pantallas grandes */
    margin: 0 auto;
}

.section-header h2[b-kc9k48j00h] {
    font-size: 2em;
    margin-bottom: 10px;
}

.section-header p[b-kc9k48j00h] {
    font-size: 1em;
    color: #555;
}

/* ====== GRID LAYOUT ====== */
.features-grid[b-kc9k48j00h] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-card[b-kc9k48j00h] {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    transition: 0.3s;
}

    .feature-card:hover[b-kc9k48j00h] {
        transform: translateY(-5px);
        box-shadow: 0px 10px 25px rgba(0,0,0,0.1);
    }

/* ====== ICON ====== */
.icon-wrapper[b-kc9k48j00h] {
    background: #3f8efc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 25px;
}

.material-icons[b-kc9k48j00h] {
    font-size: 40px;
    color: white;
}

/* ====== TEXT ====== */
h3[b-kc9k48j00h] {
    font-size: 1.3em;
    margin-bottom: 10px;
}

p[b-kc9k48j00h] {
    font-size: 0.95em;
    color: #555;
}

/* ====== RESPONSIVE ====== */

/* Pantallas pequeñas (móvil) */
@media (max-width: 600px) {
    .section-header h2[b-kc9k48j00h] {
        font-size: 1.6em;
    }

    .features-grid[b-kc9k48j00h] {
        grid-template-columns: 1fr; /* cards en columna */
    }

    .icon-wrapper[b-kc9k48j00h] {
        width: 65px;
        height: 65px;
    }

    .material-icons[b-kc9k48j00h] {
        font-size: 30px;
    }
}

/* Pantallas medianas (tablets) */
@media (min-width: 601px) and (max-width: 1024px) {
    .features-grid[b-kc9k48j00h] {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas */
    }
}

/* Pantallas grandes (desktop y widescreen) */
@media (min-width: 1200px) {
    .features-grid[b-kc9k48j00h] {
        grid-template-columns: repeat(3, 1fr); /* 3 columnas */
    }

    .feature-card[b-kc9k48j00h] {
        padding: 40px 25px;
    }

    .icon-wrapper[b-kc9k48j00h] {
        width: 90px;
        height: 90px;
    }

    .material-icons[b-kc9k48j00h] {
        font-size: 45px;
    }

    h3[b-kc9k48j00h] {
        font-size: 1.4em;
    }
}
/* /Layout/Footer.razor.rz.scp.css */
:root[b-cstqio61ci] {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --text-color: #ecf0f1;
    --hover-color: #2980b9;
    --bg-color: #1a252f;
    --border-color: rgba(255, 255, 255, 0.1);
}

*[b-cstqio61ci] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-cstqio61ci] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.goyburu-footer[b-cstqio61ci] {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 3rem 0 0;
    margin-top: 3rem;
}

.footer-container[b-cstqio61ci] {
    max-width: 1200px; /* ✅ ancho corregido */
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-brand[b-cstqio61ci] {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* logo a la izquierda */
    justify-content: center;
    margin-bottom: 1.5rem;
}

    .footer-brand .logo-container[b-cstqio61ci] {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 1rem;
    }

.footer-brand-logo[b-cstqio61ci] {
    max-width: 180px; /* ✅ controla el tamaño del logo */
    height: auto;
}

.footer-slogan[b-cstqio61ci] {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links[b-cstqio61ci] {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.links-column[b-cstqio61ci] {
    flex: 1;
    min-width: 150px;
}

    .links-column h3[b-cstqio61ci] {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        position: relative;
        padding-bottom: 0.5rem;
    }

        .links-column h3[b-cstqio61ci]::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: var(--secondary-color);
        }

    .links-column ul[b-cstqio61ci] {
        list-style: none;
    }

        .links-column ul li[b-cstqio61ci] {
            margin-bottom: 0.5rem;
        }

            .links-column ul li a[b-cstqio61ci] {
                color: var(--text-color);
                text-decoration: none;
                transition: color 0.3s ease;
                font-size: 0.9rem;
                opacity: 0.8;
            }

                .links-column ul li a:hover[b-cstqio61ci] {
                    color: var(--secondary-color);
                    opacity: 1;
                }

.footer-social h3[b-cstqio61ci] {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.social-icons[b-cstqio61ci] {
    display: flex;
    gap: 1rem;
}

    .social-icons a[b-cstqio61ci] {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--text-color);
        transition: all 0.3s ease;
        font-size: 18px;
    }

        .social-icons a:hover[b-cstqio61ci] {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }

.footer-bottom[b-cstqio61ci] {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 0;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .footer-bottom p[b-cstqio61ci] {
        opacity: 0.7;
    }

    .footer-bottom .fa-heart[b-cstqio61ci] {
        color: #e74c3c;
    }

/* 📱 Responsive */
@media (max-width: 768px) {
    .footer-container[b-cstqio61ci] {
        grid-template-columns: 1fr;
    }

    .footer-links[b-cstqio61ci] {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-brand[b-cstqio61ci] {
        text-align: center;
        align-items: center; /* ✅ centra el logo */
    }

        .footer-brand .logo-container[b-cstqio61ci] {
            justify-content: center;
        }

    .footer-brand-logo[b-cstqio61ci] {
        max-width: 150px; /* ✅ logo más pequeño en móvil */
    }

    .footer-social h3[b-cstqio61ci] {
        text-align: center;
    }

    .social-icons[b-cstqio61ci] {
        justify-content: center;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar[b-2m51x13gwl] {
    background-color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-container[b-2m51x13gwl] {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo img[b-2m51x13gwl] {
    height: 40px;
}

.navbar-links[b-2m51x13gwl] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

    .navbar-links a[b-2m51x13gwl] {
        color: black;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        transition: color 0.3s ease;
    }

        .navbar-links a:hover[b-2m51x13gwl] {
            color: #007bff;
        }

.navbar-buttons[b-2m51x13gwl] {
    display: flex;
    gap: 0.75rem;
}

/* Botones */
.btn-started[b-2m51x13gwl] {
    cursor: pointer;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    background-color: #007bff !important;
    color: white !important;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 2px solid transparent;
}

    .btn-started:hover[b-2m51x13gwl] {
        color: #007bff !important;
        background-color: white !important; 
        border: 2px solid #007bff;
        transform: translateY(-2px);
    }

.btn-members[b-2m51x13gwl] {
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    background-color: transparent;
    border: 2px solid #007bff;
    color: #007bff !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .btn-members:hover[b-2m51x13gwl] {
        background-color: #007bff !important;
        color: white !important;
        transform: translateY(-2px);
    }

/* Icono hamburguesa */
.hamburger[b-2m51x13gwl] {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

    .hamburger span[b-2m51x13gwl] {
        background: black;
        height: 3px;
        width: 25px;
        border-radius: 2px;
    }

/* Sidebar */
.sidebar[b-2m51x13gwl] {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: right 0.3s ease;
    z-index: 1100;
}

    .sidebar.open[b-2m51x13gwl] {
        right: 0;
    }

    .sidebar a[b-2m51x13gwl] {
        text-decoration: none;
        color: black;
        font-size: 1rem;
        font-weight: 500;
    }

    .sidebar .close-btn[b-2m51x13gwl] {
        background: none;
        border: none;
        font-size: 1.5rem;
        align-self: flex-end;
        cursor: pointer;
    }

.sidebar-overlay[b-2m51x13gwl] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1000;
    border-radius:10px;
}

    .sidebar-overlay.show[b-2m51x13gwl] {
        opacity: 1;
        visibility: visible;
    }


    /*color del modo responvibo forzado */


    .white[b-2m51x13gwl]{
        color:white;
    }



/* Navbar responsive */
@media (max-width: 900px) {
    .navbar-container[b-2m51x13gwl] {
        max-width: 100%; /* ocupa todo el ancho */
        padding: 0 1rem; /* menos padding en m�viles */
    }

    .navbar-logo img[b-2m51x13gwl] {
        height: 40px; /* reducimos tama�o del logo */
    }

    .navbar-links[b-2m51x13gwl] {
        display: none; /* ocultamos links en m�vil */
    }

    .navbar-buttons[b-2m51x13gwl] {
        display: none; /* botones principales van al sidebar */
    }

    .mobile-only[b-2m51x13gwl] {
        display: flex; /* el men� hamburguesa aparece */
        margin-left: auto; /* lo empuja a la derecha */
    }
}

/* Sidebar en m�viles */
.sidebar[b-2m51x13gwl] {
    width: 80%; /* que ocupe 80% del ancho de la pantalla */
    max-width: 260px; /* pero nunca m�s de 260px */
}
/* /Layout/SiderBar.razor.rz.scp.css */
body[b-3f3x3gageh] {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f8fafc;
    display: flex;
}

/* Sidebar */
.sidebar[b-3f3x3gageh] {
    width: 240px;
    background: #111827;
    color: #fff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    left: 0;
    top: 0;
}

.sidebar-header[b-3f3x3gageh] {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .sidebar-header h2[b-3f3x3gageh] {
        margin: 0;
        font-size: 18px;
    }

    .sidebar-header small[b-3f3x3gageh] {
        font-size: 12px;
        color: #9ca3af;
    }

.menu[b-3f3x3gageh] {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

    .menu li[b-3f3x3gageh] {
        padding: 12px 20px;
        display: flex;
        align-items: center;
        color: #d1d5db;
        cursor: pointer;
        transition: background 0.2s;
    }

        .menu li:hover[b-3f3x3gageh], .menu li.active[b-3f3x3gageh] {
            background: #1f2937;
            color: #fff;
        }

        .menu li i[b-3f3x3gageh] {
            margin-right: 15px;
        }

.badge[b-3f3x3gageh] {
    background: #ec4899;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 50%;
    margin-left: auto;
}

.section-title[b-3f3x3gageh] {
    font-size: 12px;
    color: #6b7280;
    padding: 10px 20px 5px;
}

.logout[b-3f3x3gageh] {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    color: #d1d5db;
    cursor: pointer;
}

    .logout:hover[b-3f3x3gageh] {
        background: #1f2937;
        color: #fff;
    }

/* Main Content */
.main[b-3f3x3gageh] {
    margin-left: 240px;
    width: calc(100% - 240px);
    display: flex;
    flex-direction: column;
}

/* Navbar */
.navbar[b-3f3x3gageh] {
    height: 70px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 10;
}

    .navbar .search-box[b-3f3x3gageh] {
        flex: 1;
        margin: 0 20px;
    }

.search-box input[b-3f3x3gageh] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
}

.navbar-right[b-3f3x3gageh] {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .navbar-right i[b-3f3x3gageh] {
        cursor: pointer;
        color: #374151;
    }

.profile[b-3f3x3gageh] {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

    .profile img[b-3f3x3gageh] {
        width: 35px;
        height: 35px;
        border-radius: 50%;
    }

/* Content Area */
.content[b-3f3x3gageh] {
    padding: 20px;
}
/* /Pages/AboutUs.razor.rz.scp.css */
body[b-zhbo0j5mxn] {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.marketing-header[b-zhbo0j5mxn],
.marketing-content[b-zhbo0j5mxn],
.services[b-zhbo0j5mxn],
.partners[b-zhbo0j5mxn],
.stats-footer[b-zhbo0j5mxn] {
    padding: 50px 100px;
    display: flex;
}

.marketing-header[b-zhbo0j5mxn] {
    background-color: #f8f8f8;
    justify-content: space-between;
}

.header-left[b-zhbo0j5mxn] {
    flex: 1;
    padding-right: 50px;
}

    .header-left h1[b-zhbo0j5mxn] {
        font-size: 38px;
        color: #1a233b;
        margin-bottom: 20px;
    }

    .header-left p[b-zhbo0j5mxn] {
        color: #666;
        line-height: 1.6;
    }

.mission-section[b-zhbo0j5mxn] {
    display: flex;
    margin-top: 30px;
    gap: 20px;
}

.our-vision[b-zhbo0j5mxn],
.our-mission[b-zhbo0j5mxn] {
    flex: 1;
}

.mission-section h3[b-zhbo0j5mxn] {
    color: #1a233b;
}

.mission-section ul[b-zhbo0j5mxn] {
    list-style: none;
    padding: 0;
}

.mission-section li[b-zhbo0j5mxn] {
    margin-bottom: 10px;
    color: #666;
}

.mission-section i[b-zhbo0j5mxn] {
    color: #2e62ff;
    margin-right: 10px;
}

.header-right[b-zhbo0j5mxn] {
    flex: 1;
}

.image-grid[b-zhbo0j5mxn] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
}

    .image-grid img[b-zhbo0j5mxn] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

.marketing-content[b-zhbo0j5mxn] {
    background-color: #f8f8f8;
    align-items: flex-start;
}

.content-left[b-zhbo0j5mxn] {
    flex: 1;
    padding-right: 50px;
}

.marketing-image img[b-zhbo0j5mxn] {
    width: 100%;
    border-radius: 10px;
}

.content-right[b-zhbo0j5mxn] {
    flex: 1;
    padding-left: 50px;
}

.stats-box[b-zhbo0j5mxn] {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.stat[b-zhbo0j5mxn] {
    background-color: #2e62ff;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
}

    .stat span[b-zhbo0j5mxn] {
        font-size: 32px;
        font-weight: bold;
    }

    .stat p[b-zhbo0j5mxn] {
        margin: 0;
        font-size: 14px;
    }

.mission-box[b-zhbo0j5mxn] {
    background-color: #fff;
    border: 1px solid #dcdcdc;
    padding: 20px;
    border-radius: 10px;
}

    .mission-box p[b-zhbo0j5mxn] {
        margin: 0;
        font-size: 16px;
        line-height: 1.5;
        
    }

.boost-marketing h2[b-zhbo0j5mxn] {
    font-size: 28px;
    color: #1a233b;
    
}

.boost-marketing p[b-zhbo0j5mxn] {
    color: #666;
    line-height: 1.6;
    padding: 2rem;
}

.partners[b-zhbo0j5mxn] {
    flex-direction: column;
    text-align: center;
    background-color: #f0f0f0;
}

    .partners h2[b-zhbo0j5mxn] {
        color: #1a233b;
        font-size: 24px;
        margin-bottom: 30px;
    }

.partner-logos[b-zhbo0j5mxn] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

    .partner-logos img[b-zhbo0j5mxn] {
        height: 50px;
    }


/* 📱 RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .marketing-header[b-zhbo0j5mxn],
    .marketing-content[b-zhbo0j5mxn],
    .services[b-zhbo0j5mxn],
    .stats-footer[b-zhbo0j5mxn] {
        flex-direction: column;
        padding: 40px 50px;
    }

    .header-left[b-zhbo0j5mxn],
    .content-left[b-zhbo0j5mxn],
    .content-right[b-zhbo0j5mxn] {
        padding: 0;
        margin-bottom: 30px;
    }

    .mission-section[b-zhbo0j5mxn] {
        flex-direction: column;
    }

    .stats-box[b-zhbo0j5mxn] {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .marketing-header[b-zhbo0j5mxn],
    .marketing-content[b-zhbo0j5mxn],
    .services[b-zhbo0j5mxn],
    .partners[b-zhbo0j5mxn],
    .stats-footer[b-zhbo0j5mxn] {
        padding: 30px 20px;
    }

    .header-left h1[b-zhbo0j5mxn] {
        font-size: 28px;
    }

    .boost-marketing h2[b-zhbo0j5mxn] {
        font-size: 22px;
    }

    .partner-logos[b-zhbo0j5mxn] {
        gap: 20px;
    }

        .partner-logos img[b-zhbo0j5mxn] {
            height: 40px;
        }
}

@media (max-width: 480px) {
    .header-left h1[b-zhbo0j5mxn] {
        font-size: 22px;
    }

    .header-left p[b-zhbo0j5mxn],
    .boost-marketing p[b-zhbo0j5mxn],
    .mission-box p[b-zhbo0j5mxn] {
        font-size: 14px;
    }

    .stat span[b-zhbo0j5mxn] {
        font-size: 24px;
    }

    .stat p[b-zhbo0j5mxn] {
        font-size: 12px;
    }
}
/* /Pages/Agent.razor.rz.scp.css */
:root[b-yiki2mcv56] {
    --background-color: #f0f4f9;
    --card-background-color: #ffffff;
    --text-color: #333333;
    --secondary-text-color: #666666;
    --border-radius: 15px;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    --primary-color: #007bff;
}

body[b-yiki2mcv56] {
    font-family: Arial, sans-serif;
    background-color: var(--background-color);
    margin: 0;
    padding: 20px;
}

/* --- Team Section --- */
.team-section[b-yiki2mcv56] {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

.team-header[b-yiki2mcv56] {
    text-align: center;
    margin-bottom: 40px;
}

.section-title[b-yiki2mcv56] {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: bold;
}

/* --- Filter Menu --- */
.filter-menu[b-yiki2mcv56] {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-option[b-yiki2mcv56] {
    text-decoration: none;
    color: var(--secondary-text-color);
    padding: 8px 15px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

    .filter-option:hover[b-yiki2mcv56] {
        background-color: #e2eaf4;
    }

    .filter-option.active[b-yiki2mcv56] {
        background-color: var(--primary-color);
        color: white;
    }

/* --- Team Grid --- */
.team-grid[b-yiki2mcv56] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    justify-content: center;
}

.team-card[b-yiki2mcv56] {
    background-color: var(--card-background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    cursor:pointer;
}

    .team-card:hover[b-yiki2mcv56] {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

.member-photo[b-yiki2mcv56] {
    width: 100%;
    max-width: 180px;
    height: auto;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.member-info[b-yiki2mcv56] {
    width: 100%;
}

.member-name[b-yiki2mcv56] {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.member-role[b-yiki2mcv56] {
    font-size: 1rem;
    color: var(--secondary-text-color);
    margin: 5px 0 0;
}

/* --- Modal --- */
.modal-overlay[b-yiki2mcv56] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-content[b-yiki2mcv56] {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: fadeIn-b-yiki2mcv56 0.3s ease;
}

    .modal-content img[b-yiki2mcv56] {
        width: 150px;
        border-radius: 50%;
        margin-bottom: 1rem;
    }

.close-btn[b-yiki2mcv56] {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 1.2rem;
    cursor: pointer;
}

@keyframes fadeIn-b-yiki2mcv56 {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- Contact Info (Card & Modal) --- */
.contact-info[b-yiki2mcv56],
.modal-contact[b-yiki2mcv56] {
    display: flex;
    flex-direction: column; /* teléfono arriba, correo debajo */
    align-items: center; /* centrado horizontal */
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

    .contact-info div[b-yiki2mcv56],
    .modal-contact div[b-yiki2mcv56] {
        display: flex;
        align-items: center;
        justify-content: center; /* 🔹 centra ícono + texto */
        gap: 8px;
        color: var(--secondary-text-color);
        font-size: 0.95rem;
    }

    .contact-info .material-icons[b-yiki2mcv56],
    .modal-contact .material-icons[b-yiki2mcv56] {
        font-size: 18px;
        color: var(--primary-color);
    }

    .contact-info a[b-yiki2mcv56],
    .modal-contact a[b-yiki2mcv56] {
        text-decoration: none;
        color: inherit;
        font-size: 0.95rem;
    }

        .contact-info a:hover[b-yiki2mcv56],
        .modal-contact a:hover[b-yiki2mcv56] {
            color: var(--primary-color);
        }











.contact-icons[b-yiki2mcv56] {
    display: flex;
    justify-content: center; /* centrados en la card */
    gap: 15px;
    margin-top: 12px;
}

    .contact-icons a[b-yiki2mcv56] {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #f0f4f9;
        color: #3f8efc;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

        .contact-icons a:hover[b-yiki2mcv56] {
            background: #3f8efc;
            color: #fff;
            transform: scale(1.1);
        }

    .contact-icons .material-icons[b-yiki2mcv56] {
        font-size: 22px;
    }





.modal-contact[b-yiki2mcv56] {
    display: flex;
    justify-content: center; /* Centra de izquierda a derecha */
   
    margin-top: 1.5rem;
}

    .modal-contact .contact-item[b-yiki2mcv56] {
        display: flex;
        align-items: center;
        gap: 0.5rem; /* Espaciado entre ícono y texto */
        font-size: 1rem;
    }

    .modal-contact .material-icons[b-yiki2mcv56] {
        font-size: 20px;
        color: #3f8efc; /* Azul para destacar */
    }











.modal-contact[b-yiki2mcv56] {
    display: flex;
    justify-content: center;
    
    margin: 1rem 0;
}

.contact-item[b-yiki2mcv56] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cita[b-yiki2mcv56] {
    background: #3f8efc;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
    transition: background 0.3s;
}

    .btn-cita:hover[b-yiki2mcv56] {
        background: #2c6ed6;
    }

.appointment-iframe[b-yiki2mcv56] {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

    











.btn-submit[b-yiki2mcv56] {
    background: #28a745;
    color: #fff;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

    .btn-submit:hover[b-yiki2mcv56] {
        background: #218838;
    }




.btn-cita[b-yiki2mcv56] {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* espacio entre ícono y texto */
    background-color: #3f8efc;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

    .btn-cita:hover[b-yiki2mcv56] {
        background-color: #2f6edc;
    }

    .btn-cita .material-icons[b-yiki2mcv56] {
        font-size: 20px;
    }






.description[b-yiki2mcv56] {
    padding: 1rem;
    margin: 1rem;
    word-wrap: break-word;
    text-align: justify;
}


.alto-booking[b-yiki2mcv56] {
    height: 400px;
}






















.finable-team[b-yiki2mcv56] {
    padding: 5rem 2rem;
    background-color: #f8f8f8; /* Un color de fondo similar al de la imagen */
    font-family: Arial, sans-serif;
}

.finable-team-content[b-yiki2mcv56] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.finable-team-text[b-yiki2mcv56] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .finable-team-text h2[b-yiki2mcv56] {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1a2a53; /* Color de texto oscuro similar al de la imagen */
        margin: 0;
    }

    .finable-team-text h3[b-yiki2mcv56] {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1a2a53;
        margin: 0;
    }

.finable-team-content p[b-yiki2mcv56] {
    flex: 1;
    font-size: 1rem;
    color: #6a6a6a; /* Color de texto gris similar al de la imagen */
    line-height: 1.6;
}

/* Media Query para pantallas más pequeñas */
@media (max-width: 768px) {
    .finable-team-content[b-yiki2mcv56] {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

        .finable-team-content p[b-yiki2mcv56] {
            text-align: left; /* Mantiene el texto del párrafo alineado a la izquierda */
        }

    .finable-team-text[b-yiki2mcv56] {
        align-items: center;
    }

        .finable-team-text h2[b-yiki2mcv56],
        .finable-team-text h3[b-yiki2mcv56] {
            font-size: 2rem;
        }
}
/* /Pages/Contact.razor.rz.scp.css */
/* styles.css */

/* --- General Styles --- */
body[b-hupn3si1mw] {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.help-section[b-hupn3si1mw] {
    display: flex;
    justify-content: space-between;
    padding: 60px 100px;
}

.faq-content[b-hupn3si1mw] {
    flex: 1;
    max-width: 45%;
}

.faq-title[b-hupn3si1mw] {
    color: #4a4a4a;
    font-size: 14px;
    margin-bottom: 5px;
}

.faq-subtitle[b-hupn3si1mw] {
    font-size: 36px;
    margin: 0;
}

.faq-text[b-hupn3si1mw] {
    font-size: 16px;
    color: #757575;
    margin-bottom: 3rem;
}

.contact-btn[b-hupn3si1mw] {
    background-color: #2e62ff;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.5s ease;
}

    .contact-btn:hover[b-hupn3si1mw] {
        background-color: #1e52ef;
    }

/* --- FAQ List and Items --- */
.faq-list[b-hupn3si1mw] {
    flex: 1;
    max-width: 50%;
}

.faq-item[b-hupn3si1mw] {
    border-bottom: 1px solid #dcdcdc;
    padding: 15px 0;
    position: relative;
    cursor: pointer;
    overflow: hidden; /* Essential for the max-height transition */
    transition: background-color 0.3s ease;
}

    .faq-item:hover[b-hupn3si1mw] {
        background-color: #f9f9f9;
    }

    .faq-item h3[b-hupn3si1mw] {
        margin: 0;
        font-size: 16px;
        font-weight: normal;
        color: #4a4a4a;
        transition: color 0.3s ease;
    }

    .faq-item.active[b-hupn3si1mw] {
        border-top: 1px solid #dcdcdc;
        border-bottom: none;
    }

        .faq-item.active h3[b-hupn3si1mw] {
            color: #2e62ff;
        }

        /* The paragraph is now an immediate child of faq-answer for better control */
        .faq-item.active .faq-answer p[b-hupn3si1mw] {
            margin-top: 10px;
            font-size: 14px;
            color: #4a4a4a;
            line-height: 1.5;
        }

    /* --- Toggle Icon Animation --- */
    .faq-item[b-hupn3si1mw]::before {
        content: '+';
        position: absolute;
        right: 0;
        top: 15px;
        color: #2e62ff;
        font-size: 20px;
        transition: transform 0.3s ease-in-out;
    }

    .faq-item.active[b-hupn3si1mw]::before {
        content: '-';
        transform: rotate(180deg); /* Use rotate for a smoother transition than 'content' change */
    }

/* --- Answer Content Animation --- */
.faq-answer[b-hupn3si1mw] {
    max-height: 0; /* Starts collapsed */
    opacity: 0;
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.faq-item.active .faq-answer[b-hupn3si1mw] {
    max-height: 500px; /* Expands to show content (adjust as needed) */
    opacity: 1;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .help-section[b-hupn3si1mw] {
        flex-direction: column;
        padding: 40px;
    }

    .faq-content[b-hupn3si1mw] {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .faq-list[b-hupn3si1mw] {
        max-width: 100%;
    }
}
/* /Pages/FindYourHome.razor.rz.scp.css */
/* Fondo general */
.find-home-container[b-57pv4g6loe] {
    position: relative;
    width: 100%;
    height: 100vh; /* ocupa toda la pantalla */
    background: radial-gradient(circle at 20% 20%, #0d1b2a, #000);
    overflow: hidden; /* evita scroll */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Animaciones */
@keyframes snow-b-57pv4g6loe {
    0% {
        opacity: 0;
        transform: translateY(0px);
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: translateY(650px);
    }
}

@keyframes astronaut-b-57pv4g6loe {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Cajas de estrellas */
.box-of-star1[b-57pv4g6loe],
.box-of-star2[b-57pv4g6loe],
.box-of-star3[b-57pv4g6loe],
.box-of-star4[b-57pv4g6loe] {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 700px;
}

.box-of-star1[b-57pv4g6loe] {
    animation: snow-b-57pv4g6loe 5s linear infinite;
}

.box-of-star2[b-57pv4g6loe] {
    animation: snow-b-57pv4g6loe 5s -1.64s linear infinite;
}

.box-of-star3[b-57pv4g6loe] {
    animation: snow-b-57pv4g6loe 5s -2.30s linear infinite;
}

.box-of-star4[b-57pv4g6loe] {
    animation: snow-b-57pv4g6loe 5s -3.30s linear infinite;
}

/* Estrellas */
.star[b-57pv4g6loe] {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #FFF;
    position: absolute;
    opacity: 0.7;
}

    .star[b-57pv4g6loe]:before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: #FFF;
        position: absolute;
        top: 80px;
        left: 70px;
        opacity: .7;
    }

    .star[b-57pv4g6loe]:after {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #FFF;
        position: absolute;
        top: 8px;
        left: 170px;
        opacity: .9;
    }

/* Posiciones de estrellas */
.star-position1[b-57pv4g6loe] {
    top: 30px;
    left: 20px;
}

.star-position2[b-57pv4g6loe] {
    top: 110px;
    left: 25%;
}

.star-position3[b-57pv4g6loe] {
    top: 60px;
    left: 40%;
}

.star-position4[b-57pv4g6loe] {
    top: 120px;
    left: 60%;
}

.star-position5[b-57pv4g6loe] {
    top: 20px;
    left: 75%;
}

.star-position6[b-57pv4g6loe] {
    top: 90px;
    left: 85%;
}

.star-position7[b-57pv4g6loe] {
    top: 30px;
    left: 95%;
}

/* Astronauta */
.astronaut[b-57pv4g6loe] {
    width: 250px;
    height: 300px;
    position: absolute;
    animation: astronaut-b-57pv4g6loe 5s linear infinite;
}

/* Mochila */
.schoolbag[b-57pv4g6loe] {
    width: 100px;
    height: 150px;
    position: absolute;
    z-index: 1;
    top: calc(50% - 75px);
    left: calc(50% - 50px);
    background-color: #94b7ca;
    border-radius: 50px 50px 0 0 / 30px 30px 0 0;
}

/* Cabeza */
.head[b-57pv4g6loe] {
    width: 97px;
    height: 80px;
    position: absolute;
    z-index: 3;
    background: linear-gradient(to right, #e3e8eb 50%, #fbfdfa 50%);
    border-radius: 50%;
    top: 34px;
    left: calc(50% - 47.5px);
}

    .head[b-57pv4g6loe]:after {
        content: "";
        width: 60px;
        height: 50px;
        position: absolute;
        top: calc(50% - 25px);
        left: calc(50% - 30px);
        background: linear-gradient(to bottom, #15aece 50%, #0391bf 50%);
        border-radius: 15px;
    }

    .head[b-57pv4g6loe]:before {
        content: "";
        width: 12px;
        height: 25px;
        position: absolute;
        top: calc(50% - 12.5px);
        left: -4px;
        background-color: #618095;
        border-radius: 5px;
        box-shadow: 92px 0px 0px #618095;
    }

/* Cuerpo */
.body[b-57pv4g6loe] {
    width: 85px;
    height: 100px;
    position: absolute;
    z-index: 2;
    border-radius: 40px / 20px;
    top: 105px;
    left: calc(50% - 41px);
    background: linear-gradient(to right, #e3e8eb 50%, #fbfdfa 50%);
}

.panel[b-57pv4g6loe] {
    width: 60px;
    height: 40px;
    position: absolute;
    top: 20px;
    left: calc(50% - 30px);
    background-color: #b7cceb;
}

    .panel[b-57pv4g6loe]:before {
        content: "";
        width: 30px;
        height: 5px;
        position: absolute;
        top: 9px;
        left: 7px;
        background-color: #fbfdfa;
        box-shadow: 0px 9px 0px #fbfdfa, 0px 18px 0px #fbfdfa;
    }

    .panel[b-57pv4g6loe]:after {
        content: "";
        width: 8px;
        height: 8px;
        position: absolute;
        top: 9px;
        right: 7px;
        background-color: #fbfdfa;
        border-radius: 50%;
        box-shadow: 0px 14px 0px 2px #fbfdfa;
    }

/* Brazos */
.arm[b-57pv4g6loe] {
    width: 80px;
    height: 30px;
    position: absolute;
    top: 121px;
    z-index: 2;
}

.arm-left[b-57pv4g6loe] {
    left: 30px;
    background-color: #e3e8eb;
    border-radius: 0 0 0 39px;
}

.arm-right[b-57pv4g6loe] {
    right: 30px;
    background-color: #fbfdfa;
    border-radius: 0 0 39px 0;
}

    .arm-left[b-57pv4g6loe]:before,
    .arm-right[b-57pv4g6loe]:before {
        content: "";
        width: 30px;
        height: 70px;
        position: absolute;
        top: -40px;
    }

.arm-left[b-57pv4g6loe]:before {
    border-radius: 50px 50px 0px 120px / 50px 50px 0 110px;
    left: 0;
    background-color: #e3e8eb;
}

.arm-right[b-57pv4g6loe]:before {
    border-radius: 50px 50px 120px 0 / 50px 50px 110px 0;
    right: 0;
    background-color: #fbfdfa;
}

.arm-left[b-57pv4g6loe]:after,
.arm-right[b-57pv4g6loe]:after {
    content: "";
    width: 30px;
    height: 10px;
    position: absolute;
    top: -24px;
}

.arm-left[b-57pv4g6loe]:after {
    background-color: #6e91a4;
    left: 0;
}

.arm-right[b-57pv4g6loe]:after {
    right: 0;
    background-color: #b6d2e0;
}

/* Piernas */
.leg[b-57pv4g6loe] {
    width: 30px;
    height: 40px;
    position: absolute;
    z-index: 2;
    bottom: 70px;
}

.leg-left[b-57pv4g6loe] {
    left: 76px;
    background-color: #e3e8eb;
    transform: rotate(20deg);
}

.leg-right[b-57pv4g6loe] {
    right: 73px;
    background-color: #fbfdfa;
    transform: rotate(-20deg);
}

    .leg-left[b-57pv4g6loe]:before,
    .leg-right[b-57pv4g6loe]:before {
        content: "";
        width: 50px;
        height: 25px;
        position: absolute;
        bottom: -26px;
    }

.leg-left[b-57pv4g6loe]:before {
    left: -20px;
    background-color: #e3e8eb;
    border-radius: 30px 0 0 0;
    border-bottom: 10px solid #6d96ac;
}

.leg-right[b-57pv4g6loe]:before {
    right: -20px;
    background-color: #fbfdfa;
    border-radius: 0 30px 0 0;
    border-bottom: 10px solid #b0cfe4;
}



/* Mensaje Coming Soon */
.coming-soon-message[b-57pv4g6loe] {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    z-index: 20;
    font-family: Arial, sans-serif;
}

    .coming-soon-message h1[b-57pv4g6loe] {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        text-shadow: 0 0 10px rgba(255,255,255,0.8);
    }

    .coming-soon-message p[b-57pv4g6loe] {
        font-size: 1.2rem;
        opacity: 0.8;
    }
/* /Pages/Home.razor.rz.scp.css */
.hero-carousel[b-2kntcdzs84] {
    position: relative;
    height: 100vh;
    min-height: 500px; /* asegura altura mínima en móviles */
    overflow: hidden;
}

.carousel-track[b-2kntcdzs84] {
    display: flex;
    height: 100%;
    transition: transform 1.5s ease-in-out;
}

.carousel-image[b-2kntcdzs84] {
    flex: 0 0 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.hero-overlay[b-2kntcdzs84] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

/* Contenido principal */
.hero-content[b-2kntcdzs84] {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 5;
    max-width: 600px;
}

.hero-text h1[b-2kntcdzs84] {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.hero-text p[b-2kntcdzs84] {
    margin-bottom: 1.5rem;
    line-height: 1.5;
    color: white;
    font-size: 1rem;
}

/* Botones */
.btn-primary[b-2kntcdzs84] {
    cursor: pointer;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1.2rem;
    border-radius: 0.25rem;
    background-color: #007bff !important;
    color: white !important;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 2px solid transparent;
}

    .btn-primary:hover[b-2kntcdzs84] {
        color: #ffff !important;
        background-color: transparent !important;
        border: 2px solid #007bff;
        transform: translateY(-4px);
    }

/* Stats */
.stats[b-2kntcdzs84] {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    color: white;
}

    .stats h3[b-2kntcdzs84] {
        font-size: 1.4rem;
    }

    .stats p[b-2kntcdzs84] {
        font-size: 0.9rem;
        opacity: 0.85;
    }
/* ----- Responsivo ----- */

/* Tablets y laptops pequeñas */
@media (max-width: 1024px) {
    .hero-carousel[b-2kntcdzs84] {
        height: 80vh; /* menos alto que en desktop */
    }

    .carousel-image[b-2kntcdzs84] {
        height: 80vh;
        width: 100%;
       
        object-fit: cover; /* recorta si es necesario */
    }

    .hero-text h1[b-2kntcdzs84] {
        font-size: 2.5rem;
    }

    .hero-text p[b-2kntcdzs84] {
        font-size: 0.95rem;
    }
}



/* Móviles pequeños */
@media (max-width: 480px) {
    .hero-carousel[b-2kntcdzs84] {
        
    }

    .carousel-image[b-2kntcdzs84] {
        width: 100%;
        height: auto;
        object-fit: cover; /* recorta si es necesario */
    }

    .hero-content[b-2kntcdzs84] {
        left: 5%;
        max-width: 90%;
    }

    .hero-text h1[b-2kntcdzs84] {
        font-size: 1.6rem;
    }

    .hero-text p[b-2kntcdzs84] {
        font-size: 0.85rem;
    }

    .btn-primary[b-2kntcdzs84] {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
}
/* /Pages/login.razor.rz.scp.css */
/* From Uiverse.io by R1SH4BH81 */
.formulario[b-bnkrd21t2d] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #ffffff;
    padding: 30px;
    width: 450px;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

[b-bnkrd21t2d]::placeholder {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.formulario button[b-bnkrd21t2d] {
    align-self: flex-end;
}

.columna-flexible > label[b-bnkrd21t2d] {
    color: #151717;
    font-weight: 600;
}

.contenedor-input[b-bnkrd21t2d] {
    border: 1.5px solid #ecedec;
    border-radius: 10px;
    height: 50px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    transition: 0.2s ease-in-out;
}

.input[b-bnkrd21t2d] {
    margin-left: 10px;
    border-radius: 10px;
    border: none;
    width: 85%;
    height: 100%;
}

    .input:focus[b-bnkrd21t2d] {
        outline: none;
    }

.contenedor-input:focus-within[b-bnkrd21t2d] {
    border: 1.5px solid #2d79f3;
}

.fila-flexible[b-bnkrd21t2d] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

    .fila-flexible > div > label[b-bnkrd21t2d] {
        font-size: 14px;
        color: black;
        font-weight: 400;
    }

.enlace[b-bnkrd21t2d] {
    font-size: 14px;
    margin-left: 5px;
    color: #2d79f3;
    font-weight: 500;
    cursor: pointer;
}

.boton-enviar[b-bnkrd21t2d] {
    margin: 20px 0 10px 0;
    background-color: #151717;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    height: 50px;
    width: 100%;
    cursor: pointer;
}

    .boton-enviar:hover[b-bnkrd21t2d] {
        background-color: #252727;
    }

.parrafo[b-bnkrd21t2d] {
    text-align: center;
    color: black;
    font-size: 14px;
    margin: 5px 0;
}

.boton[b-bnkrd21t2d] {
    margin-top: 10px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    gap: 10px;
    border: 1px solid #ededef;
    background-color: white;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

    .boton:hover[b-bnkrd21t2d] {
        border: 1px solid #2d79f3;
    }
/* /Pages/Singup.razor.rz.scp.css */
/* From Uiverse.io by R1SH4BH81 */
.form[b-tf4zmg5oef] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #ffffff;
    padding: 30px;
    width: 450px;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

[b-tf4zmg5oef]::placeholder {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.form button[b-tf4zmg5oef] {
    align-self: flex-end;
}

.flex-column > label[b-tf4zmg5oef] {
    color: #151717;
    font-weight: 600;
}

.inputForm[b-tf4zmg5oef] {
    border: 1.5px solid #ecedec;
    border-radius: 10px;
    height: 50px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    transition: 0.2s ease-in-out;
}

.input[b-tf4zmg5oef] {
    margin-left: 10px;
    border-radius: 10px;
    border: none;
    width: 85%;
    height: 100%;
}

    .input:focus[b-tf4zmg5oef] {
        outline: none;
    }

.inputForm:focus-within[b-tf4zmg5oef] {
    border: 1.5px solid #2d79f3;
}

.flex-row[b-tf4zmg5oef] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

    .flex-row > div > label[b-tf4zmg5oef] {
        font-size: 14px;
        color: black;
        font-weight: 400;
    }

.span[b-tf4zmg5oef] {
    font-size: 14px;
    margin-left: 5px;
    color: #2d79f3;
    font-weight: 500;
    cursor: pointer;
}

.button-submit[b-tf4zmg5oef] {
    margin: 20px 0 10px 0;
    background-color: #151717;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    height: 50px;
    width: 100%;
    cursor: pointer;
}

    .button-submit:hover[b-tf4zmg5oef] {
        background-color: #252727;
    }

.p[b-tf4zmg5oef] {
    text-align: center;
    color: black;
    font-size: 14px;
    margin: 5px 0;
}

.btn[b-tf4zmg5oef] {
    margin-top: 10px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    gap: 10px;
    border: 1px solid #ededef;
    background-color: white;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

    .btn:hover[b-tf4zmg5oef] {
        border: 1px solid #2d79f3;
    }
