/*=========================================================
  CONFIAM SAS
  Corporate Reporting Architecture
  Version : 1.0
  Autor   : CONFIAM SAS
  Diseño  : Proyecto ARCA Framework
==========================================================*/
/* ======================================================
   CONFIAM 2027
   Arquitectura e Integración de Reportes Corporativos
====================================================== */

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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f7f9fc;
    color:#333;
    line-height:1.6;
}

header{
    background:#0033cc;
    color:white;
    text-align:center;
    padding:50px 20px;
}

header h1{
    font-size:42px;
    margin-bottom:10px;
}

header p{
    font-size:22px;
    opacity:.95;
}

.hero{

    background:white;
    text-align:center;
    padding:70px 10%;
}

.hero h2{

    font-size:42px;
    color:#0033cc;
    margin-bottom:25px;

}

.hero p{

    max-width:900px;
    margin:auto;
    font-size:22px;
    color:#555;

}

.button{

    display:inline-block;

    margin-top:35px;

    background:#0033cc;

    color:white;

    padding:15px 35px;

    text-decoration:none;

    border-radius:8px;

    font-weight:bold;

    transition:.3s;

}

.button:hover{

    background:#002299;

}

.container{

    width:90%;

    max-width:1200px;

    margin:auto;

}

.section{

    padding:70px 0;

}

.section h2{

    text-align:center;

    color:#0033cc;

    margin-bottom:40px;

    font-size:34px;

}

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:25px;

}

.card{

    background:white;

    border-radius:12px;

    padding:30px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.card:hover{

    transform:translateY(-8px);

}

.card h3{

    color:#0033cc;

    margin-bottom:15px;

}

.card p{

    color:#666;

}

footer{

    background:#0033cc;

    color:white;

    text-align:center;

    padding:35px;

    margin-top:60px;

}

footer a{

    color:white;

    text-decoration:none;

    margin:0 10px;

}

footer a:hover{

    text-decoration:underline;

}
/* ==============================
   Enlaces
==============================*/

a{
    color:#0033cc;
    text-decoration:none;
    font-weight:600;
}

a:hover{
    color:#001f99;
    text-decoration:underline;
}
.content{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}