*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    min-height:100vh;
    background:#fdf7fa;
    position:relative;
    overflow-x:hidden;
}

/* Fondo institucional */
body::before{
    content:"";
    position:fixed;
    inset:0;

    background:url("images/fondo.jpg") no-repeat center center;
    background-size:cover;

    opacity:0.50;
    filter:blur(1px);

    z-index:0;
    pointer-events:none;
}
/* Overlay color vino */
body::after{
    content:"";
    position:fixed;
    inset:0;

    background:linear-gradient(
        135deg,
        rgba(133,3,55,0.10),
        rgba(133,3,55,0.03)
    );

    z-index:1;
    pointer-events:none;
}

/* CONTENIDO */
.wrapper{
    position:relative;
    z-index:2;
    text-align:center;
    padding:60px 20px;
}

/* LOGO */
.logo{
    width:120px;
    margin-bottom:15px;
}

/* titulo */
.title{
    font-size:clamp(2rem, 5vw, 3rem);
    color:#000;
    font-weight:900;
    margin-bottom:12px;
    letter-spacing:0.5px;
}

/* SUBTITULO */
.subtitle{
    color:#6a1b3d;
    font-size:16px;
    margin-bottom:40px;
}

/* GRID */
.card-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(240px,1fr));
    gap:25px;

    max-width:800px;
    margin:auto;
}

/* CARD */
.card{
    background:rgba(255,255,255,0.95);
    border-radius:18px;

    padding:30px 25px;

    border-top:6px solid #850337;

    box-shadow:0 10px 25px rgba(133,3,55,0.10);

    display:flex;
    flex-direction:column;
    align-items:center;

    transition:0.3s ease;
}

/* HOVER */
.card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(133,3,55,0.20);
}

/* ICONO */
.icon{
    width:80px;
    height:80px;

    border-radius:50%;

    background:rgba(133,3,55,0.10);

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:18px;
}

.icon i{
    font-size:38px;
    color:#850337;
}

/* titulo de la tarjeta */
.card h2{
    color:#000;
    margin-bottom:12px;
    font-size:1.4rem;
    font-weight:700;
}

/* TEXTO */
.card p{
    color:#5c3748;
    font-size:14px;
    text-align:center;
    margin-bottom:20px;
    line-height:1.5;
}

/* BOTON */
button{
    background:#850337;
    color:white;

    border:none;
    border-radius:10px;

    padding:12px 22px;

    font-size:14px;
    font-weight:bold;

    cursor:pointer;

    transition:0.25s;
}

/* HOVER BOTON */
button:hover{
    background:#a8004a;
    transform:scale(1.05);
}

/* DESHABILITADO */
.disabled{
    opacity:0.6;
}

.disabled button{
    background:#999;
    cursor:not-allowed;
}