/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
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: 2.0.0
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 */

.top-bar {
    background-color: #1E73BE;
    color: white;
    font-size: 14px;
    text-align: left;
    padding: 5px 20px;
    font-weight: 600;
    width: 100%;
    box-sizing: border-box;
}

/* Ajusta el margen superior para que no haya espacio extra */
body {
    margin-top: 0;
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 12px;
        padding: 5px 10px;
    }
}

.cf7-wrapper {
  max-width: 1000px;
  margin: 40px auto;
  border: 2px solid #0263b1;
  border-radius: 10px;
  overflow: hidden;
  font-family: Arial, sans-serif;
  background: #f9f9f9;
}

.cf7-wrapper h2 {
  text-align: center;
  color: #0263b1;
  font-size: 24px;
  font-weight: bold;
  margin: 25px 0 10px;
}

.cf7-container {
  display: flex;
  flex-wrap: wrap;
}

.cf7-form {
  flex: 1 1 50%;
  padding: 30px;
}

.cf7-image {
  flex: 1 1 50%;
  display: block;
}

.cf7-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Estilos Contact Form 7 */
.cf7-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  color: #0263b1;
}

.cf7-form input[type="text"],
.cf7-form input[type="email"],
.cf7-form input[type="tel"],
.cf7-form select,
.cf7-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 2px solid #55bb40;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
}

.cf7-form input:focus,
.cf7-form textarea:focus {
  border-color: #0263b1;
  outline: none;
  box-shadow: 0 0 5px #0263b1;
}

.cf7-form input[type="submit"] {
  background-color: #55bb40;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cf7-form input[type="submit"]:hover {
  background-color: #0263b1;
}

/* Responsive: ocultar imagen en móvil */
@media (max-width: 768px) {
  .cf7-container {
    flex-direction: column;
  }
  .cf7-image {
    display: none;
  }
  .cf7-form {
    width: 100%;
    padding: 20px;
  }
}


.reseñas-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.reseña-card {
  background-color: #f9f9f9;
  border-left: 5px solid #0263b1;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  flex: 1 1 300px;
  max-width: 400px;
}

.reseña-card h3 {
  margin: 0 0 10px;
  color: #0263b1;
  font-size: 20px;
}

.reseña-stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 10px;
}

.reseña-text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .reseñas-container {
    flex-direction: column;
    align-items: center;
  }
}

