* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--suyay-light-bg);
    color: var(--suyay-text-dark);
}

header {
    background-image: url(../images/seccion_logros.png);
    color:rgba(239, 245, 253, 1);
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}


header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.back-btn {
    background: rgba(239, 245, 253, 1);
    color: #000000;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
}
/* Main content */
main {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Campaña detalle */
.campania-detalle {
  display: flex;
  background-image: url(../images/seccion_beneficios.png);
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 65px;


}

.campania-detalle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.campania-detalle img {
    width: 100%;
    height: 100%;
}
.detalle-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detalle-descripcion h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.detalle-descripcion em {
    font-style: normal;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}
.detalle-info p{
    font-weight: 600;
    color: #315f33; 
}
.detalle-info p em {
    color: #2E7D32; 
    font-style: normal; 
    font-weight: 500;
}
#informacion
{
	background-image: url(../images/32.png);
	background-size: cover;
    margin: 0;

}
#informacion
{
    padding: 30px;
}
#informacion p
{
	color: white;
	text-align: center;
	font-size: 16px;
	margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    .campania-detalle {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .detalle-info {
        padding: 2rem;
    }
    
    .detalle-descripcion h3 {
        font-size: 1.5rem;
    }
    
    main {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1.5rem 1rem;
    }
    
    header h1 {
        font-size: 1.8rem;
    }
    
    .detalle-info {
        padding: 1.5rem;
    }
    
    .formulario-interes {
        padding: 1.5rem 1rem;
    }
    
    .back-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}
