/*
Theme Name: Xpongo
Theme URI: https://example.com/astra-child
Description: Tema hijo de Astra
Author: Xpongo
Author URI: https://example.com
Template: astra
Version: 1.0.0
*/


/* Tipografía general */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Enlaces */
a {
    color: #0073e6;
    text-decoration: none;
}

a:hover {
    color: #005bb5;
    text-decoration: underline;
}

/* Encabezados */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #222;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

/* Botones */
button, .button {
    background-color: #0073e6;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
}

button:hover, .button:hover {
    background-color: #005bb5;
}

/* Formularios */
input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 1rem;
}

/* Listas */
ul {
    list-style-type: disc;
    margin-left: 1.5rem;
}

ol {
    list-style-type: decimal;
    margin-left: 1.5rem;
}

/* Imágenes */
img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Tablas */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

th, td {
    padding: 0.75rem;
    border: 1px solid #ddd;
    text-align: left;
}

th {
    background-color: #f4f4f4;
}

/* Espaciado general */
.container {
    padding: 0 1.5rem;
}

.section {
    padding: 3rem 0;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

