/*
Theme Name: Drimset
Theme URI: https://drimset.com
Template: hello-elementor
Author: Drimset
Author URI: https://drimset.com
Description: Estudio creativo de desarrollo web y automatización con IA. Menos costos, más ventas.
Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready
Version: 2.8.1.1696792320
Updated: 2023-10-08 19:12:00
*/

/* Importar estilos del tema padre */
@import url("../hello-elementor/style.css");

/* Estilos personalizados del tema hijo */
body {
    /* Ejemplo de personalización: cambiar el color de fondo */
    background-color: #f4f4f4;
}

/* Otros estilos personalizados aquí */

/* Ejemplo de estilo personalizado para encabezados */
h1, h2, h3, h4, h5, h6 {
    color: #333;
}

/* Ejemplo de estilo personalizado para enlaces */
a {
    color: #cc3366;
    text-decoration: none;
}
a:hover, a:focus {
    color: #333366;
    text-decoration: underline;
}

/* Personalizaciones específicas para Drimset */
.header-custom {
    background-color: #ffffff;
    border-bottom: 2px solid #cc3366;
}
.footer-custom {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}
.footer-custom a {
    color: #cc3366;
}
.footer-custom a:hover {
    color: #fff;
}

/* Estilos para formularios */
input[type="text"],
input[type="email"],
textarea {
    border: 1px solid #ccc;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: #cc3366;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .header-custom {
        text-align: center;
    }
    .footer-custom {
        text-align: center;
    }
}


