/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/


.faq-accordion .faq-item {
    margin-bottom: 10px;
}

.faq-title {
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 900;
    border: 1px solid #260809;
    padding: 5px;
    background:#fff;
    -webkit-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    -ms-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}
.faq-title:hover {
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 900;
    border: 1px solid #EB2B2E;
    color:#EB2B2E;
    background:#fff;
}
.faq-title.active {
    color: #EB2B2E;
    border: 1px solid #EB2B2E;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease-in-out;
    -moz-transition: max-height 0.3s ease-in-out;
    -ms-transition: max-height 0.3s ease-in-out;
    -o-transition: max-height 0.3s ease-in-out;
    transition: max-height 0.3s ease-in-out;
    border: none;
    padding: 0px;
    margin-top: -1px;
}


.faq-content.open {
    max-height: 200px;
    padding: 10px;
    border: 1px solid #EB2B2E;
}

/* Estilo base para el formulario */
.wpcf7-form {
    max-width: 600px;
    margin: auto;
    background-color: #260809;
    padding: 20px;
    border-radius: 0px;
    color: #fff;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
} 

/* Estilo para los campos del formulario */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #260809;
    border-radius: 0px;
    margin-bottom: 15px;
    color: #260809;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #EB2B2E;
}

/* Estilo para el botón de enviar */
.wpcf7-form input[type="submit"] {
    background-color: #EB2B2E;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.wpcf7-form input[type="submit"]:hover {
    background-color: #FFFFFF;
    color: #260809;
}

/* Si hay mensajes de error o éxito */
.wpcf7-response-output {
    margin-top: 15px;
}

.wpcf7-not-valid-tip {
    color: #EB2B2E;
}

.wpcf7-form input[type="text"][name="your-name"],
.wpcf7-form input[type="email"][name="your-email"],
.wpcf7-form input[type="email"][name="tu-telefono"],
.wpcf7-form input[type="email"][name="tu-asunto"] {
    width: 48%; 
    float: left;
    margin-right: 2%; 
}

.wpcf7-form input[type="email"][name="your-email"] {
    margin-right: 0; 
}

.wpcf7-form .wpcf7-submit {
    clear: both;
}

.wpcf7-form textarea {
    height: 100px; /* Ajusta este valor según tus necesidades */
}


@media (max-width: 768px) {
    .wpcf7-form input[type="text"][name="your-name"],
    .wpcf7-form input[type="email"][name="your-email"] {
        width: 100%; 
        float: none; 
        margin-right: 0;
    }
}

