/*
Theme Name: Hello Wind
Theme URI: https://ivonfilho.com/
Author: Ivon Filho
Author URI: https://ivonfilho.com/
Description: Um tema WordPress minimalista utilizando TailwindCSS + Alpine.js.
Version: 4.0.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hellowind
Tags: custom-logo, custom-menu, featured-images, responsive-layout
*/


body {
    overflow-x: hidden;
}

.container {
    max-width: var(--container);
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.1;
    margin-bottom: 20px; 

}



a {
    transition: color 0.3s ease;
}

a:hover {
    color: var(--e-global-color-accent);
}

button,
select {
    cursor: pointer;
}

option {
    color: black;
}

/* Enfeites */

.duas-colunas ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .tres-colunas ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .quatro-colunas ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  