.ley-intro {
	text-align: center;
	margin-bottom: 3rem;
}

.ley-tagline {
	font-size: clamp(1rem, 3vw, 1.4rem);
	font-weight: 400;
	color: #b57f50;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.5;
	padding: 0 10px;
}

.ley-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.ley-card {
	background: white;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.ley-card-header {
	background-color: #f9f5f0;
	padding: 1.5rem;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: center;
}

.ley-icon {
	font-size: 1.8rem;
	margin-right: 0.8rem;
	line-height: 1;
}

.ley-card-header h3 {
	margin: 0;
	font-size: 1.3rem;
	color: #2C3E50;
}

.ley-card-body {
	padding: 1.5rem;
	flex: 1;
}

.ley-card-body p {
	margin-top: 0;
	line-height: 1.6;
	color: #444;
}

.ley-card-body ul,
.ley-card-body ol {
	margin: 0.5rem 0;
	padding-left: 1.5rem;
	line-height: 1.6;
	color: #444;
}

.ley-card-body li {
	margin-bottom: 0.5rem;
}

.ley-card-body strong {
	color: #b57f50;
}

.ley-contact {
	background: white;
	padding: 2.5rem;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ley-contact h3 {
	color: #b57f50;
	font-size: 1.5rem;
	margin-top: 0;
}

.ley-contact p {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 2rem;
	word-wrap: break-word;
	overflow-wrap: break-word;
	max-width: 100%;
}

.ley-contact a {
	color: #b57f50;
	text-decoration: none;
	font-weight: bold;
	transition: color 0.2s;
	word-break: break-all;
}

.ley-contact a:hover {
	color: #8c6240;
	text-decoration: underline;
}

.ley-buttons {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
}

.btn-primary,
.btn-secondary {
	display: inline-block;
	padding: 0.8rem 2rem;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.btn-primary {
	background-color: #b57f50;
	color: #fff !important;
	border: 2px solid #b57f50;
}

.btn-primary:hover {
	background-color: #a06d40;
	border-color: #a06d40;
	transform: translateY(-3px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
	background-color: transparent;
	color: #b57f50;
	border: 2px solid #b57f50;
}

.btn-secondary:hover {
	background-color: #f9f5f0;
	transform: translateY(-3px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Rediseño del encabezado */
.section-header {
	padding: 2rem 1rem;
	background-color: #f9f5f0;
	border-bottom: 1px solid #eee;
}

.cheque-header {
	text-align: center;
	margin-bottom: 1.5rem;
	padding: 0 15px;
}

.section-header h2 {
	color: #2C3E50 !important;
	margin-bottom: 0.5rem;
	font-size: clamp(1.6rem, 5vw, 2.2rem);
	line-height: 1.3;
}

.section-header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.banner-container {
	text-align: center;
	width: 100%;
	max-width: 850px;
	margin: 0.5rem auto 0;
	padding: 0 15px;
}

.banner-cheque {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.banner-cheque:hover {
	transform: scale(1.02);
	transition: transform 0.3s ease;
}

/* Enhanced Responsive design */
@media (max-width: 992px) {
    .ley-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-header {
        padding: 1.5rem 0.5rem;
    }
    
    .ley-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ley-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .ley-contact {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        margin-bottom: 0.3rem;
    }
    
    .ley-card {
        border-radius: 10px;
    }
    
    .ley-card-header {
        padding: 1rem;
    }
    
    .ley-card-body {
        padding: 1rem;
    }
    
    .cheque-header {
        margin-bottom: 1rem;
    }
    
    .banner-container {
        margin-top: 0.3rem;
    }
}

/* Phone reveal button styles (copied from contacto.css) */
.phone-reveal-btn {
    background: transparent;
    color: #b57f50;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: inherit;
    font-weight: bold;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    font-family: inherit;
    text-decoration: none;
    border-radius: 3px;
}

.phone-reveal-btn:hover {
    color: #8c6240;
    background: rgba(181, 127, 80, 0.08);
    padding: 0.2rem 0.4rem;
    margin: -0.2rem -0.4rem;
    text-decoration: none;
}

.phone-reveal-btn .phone-hidden {
    display: flex;
    align-items: center;
}

.phone-reveal-btn .phone-number {
    display: flex;
    align-items: center;
}

.phone-reveal-btn .phone-number a {
    color: inherit;
    text-decoration: none;
    font-weight: bold;
}

.phone-reveal-btn .phone-number a:hover {
    text-decoration: underline;
}

.phone-revealed {
    color: #b57f50 !important;
    background: transparent !important;
    cursor: default;
    padding: 0 !important;
    margin: 0 !important;
}

.phone-revealed:hover {
    transform: none;
    color: #b57f50 !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

.phone-revealed .phone-number a:hover {
    color: #8c6240;
    text-decoration: underline;
}