/*
Theme Name: TemaRodrigo
Theme URI: https://wordpress.org/themes/twentytwenty/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor. Organizations and businesses have the ability to create dynamic landing pages with endless layouts using the group and column blocks. The centered content column and fine-tuned typography also makes it perfect for traditional blogs. Complete editor styles give you a good idea of what your content will look like, even before you publish. You can give your site a personal touch by changing the background colors and the accent color in the Customizer. The colors of all elements on your site are automatically calculated based on the colors you pick, ensuring a high, accessible color contrast for your visitors.
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks, accessibility-ready
Version: 1.3
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: temaRodrigo
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

a, u {
    text-decoration: none !important;
}

.wp-block-search__label{
    display: none;
}

.wp-block-search__inside-wrapper {
    margin-bottom: 20px;
}

button.wp-block-search__button.wp-element-button {
    border-radius: 5px;
}

#wp-calendar tbody { 
    color: #aaa;
}

#wp-calendar tbody td:hover { 
    background: #fff;
}

.footer-bottom {
    min-height: 100vh;
}

.footer-bottom > div > div > div > div{
    margin-top: -11px;
}

/* maque */

.mx-widht {
    position: absolute;
    left: 0;
    right: 0;
    max-width: none;
    height: 60px;
}

.mx-widht > .e-con-inner {
    max-width: none;
}

.mx-widht > .e-con-inner > div {
    position: absolute;
    left: 0;
    right: 0;
    max-width: none;
    
}

.marquee-text-second {
    overflow: clip;
  }
  
.marquee-text-track-second {
    display: flex;
    padding-left: 4.8rem;
    gap: 4.8rem;
    width: max-content;
    animation: marquee-move-text var(--speed, 20s) linear infinite var(
        --direction,
        forwards
      );
  }
  .marquee-text {
    overflow: clip;
  }
  .marquee-text-track {
    display: flex;
    padding-left: 4.8rem;
    gap: 4.8rem;
    width: max-content;
    animation: marquee-move-text var(--speed, 20s) reverse linear infinite var(
        --direction,
        forwards
      );
  }
  
  .marquee-text h2 {
      color: black;
  }
  
  @keyframes marquee-move-text {
    to {
      transform: translateX(-50%);
    }
  }
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1; /* Asegúrate de que la tarjeta tenga una capa alta */
}

.card:hover {
  transform: scale(1.15);
  z-index: 10; /* La tarjeta se elevará visualmente */
}

/* Asegúrate de que la visibilidad en el carrusel sea fluida */
.carousel .carousel-inner {
  overflow: visible;
}


@media (max-width: 768px) {
  .card {
    transform: scale(1); /* Desactiva la escala en dispositivos móviles */
    transition: none; /* Opcional: evita animaciones en móvil */
  }

  .card:hover {
    transform: none; /* Asegúrate de que no intente escalar */
  }

  .carousel .carousel-inner {
    overflow: hidden; /* Oculta cualquier desbordamiento */
  }
}

@media (max-width: 1326px) {
    .carousel-control-prev{
        margin: 0 !important;
        width: 30px;
        height: 30px;
        top: 430px !important;
    }
    .carousel-control-next{
        margin: 0 !important;
        width: 30px;
        height: 30px;
        top: 430px !important;
    }
}

.info_map {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: auto;
    width: 30%;
}

.item {
    display: flex;
    align-items: center;
    background: #222222;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.item i {
    font-size: 24px;
    color: #ffffff;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ffffff;
}

.title {
    font-size: 14px;
    font-weight: bold;
    color: #d39e5a;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.content {
    font-size: 16px;
    color: #ffffff;
}

.rodri-text .content {
    color: #ffffff;
}

.item > div > .content{
    margin:0;
}

.item > div > .title{
    margin:0;
}

/* Contenedor del formulario */
.wpcf7-form {
    width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Contenedor de los inputs */
.form-group {
    display: flex;
    gap: 10px;
}

.form-group input {
    flex: 1;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea  {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: none;
    background: #eee;
    border-radius: 30px;
    outline: none;
    color: #666;
    transition: 0.3s;
}

.wpcf7-form textarea {
    border-radius: 20px;
    resize: none;
    height: 150px;
}

/* Placeholder estilizado */
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: #999;
    font-weight: 500;
}

/* Estilo al enfocar */
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    background: #ddd;
}

/* Botón de enviar */
.wpcf7-form input[type="submit"] {
    width: 150px;
    background: #adb5bd;
    color: #222222;
    font-size: 16px;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
    align-self: center;
}

.wpcf7-form input[type="submit"]:hover {
    background: #eeeeee;
}

.form-row {
    display: flex;
    gap: 15px;
}

/* Para que los inputs ocupen el mismo espacio */
.form-row .wpcf7-form-control-wrap {
    flex: 1;
}

@media screen and (max-width: 768px) {
    .wpcf7-form {
         width: 100%;
    }

    .form-row {
        flex-direction: column; /* Inputs en columna en móviles */
    }

}