* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-family: 'Inter', sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

a {
    display: inline-block;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

html {
    font-size: 62.5%;
    background-color: var(--gray-900);
    color: var(--light-100);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-style: normal;
    line-height: 120%;
}

h1, h2, h3, h4 {
    font-weight: 700;
}

h5, h6 {
    font-weight: 600;
}


/*Tamanho das fonts de título*/
h1 {

    font-size: 5.6rem;
}

h2 {
    font-size: 4.8rem;
}

h3 {
    font-size: 4rem;
}

h4 {

    font-size: 2.8rem;
}

h5 {

    font-size: 2.4rem;
}

h6 {
    font-size: 2.2rem;
}

p {
    font-size: 1.8rem;
    line-height: 150%;
}

.container {
    width: 100%;
    max-width: 124.6rem;
    margin: auto;
    padding: 0 1.5rem;
}

/* Aviso de Cookies */
.cookie-notice {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: var(--white);
    padding: var(--spacing-md);
    z-index: 9999;
    transition: bottom var(--transition-slow);
}

.cookie-notice.active {
    bottom: 0;
}

.cookie-notice-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-notice p {
    margin: 0;
    padding-right: 20px;
    flex: 1;
}

.cookie-notice a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

.cookie-accept,
.cookie-reject {
    padding: var(--spacing-sm) var(--spacing-md);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
}

.cookie-accept {
    background-color: var(--primary);
    color: var(--white);
}

.cookie-reject {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

/* Popup de WhatsApp */
.whatsapp-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

/* Classe para mostrar o popup */
.whatsapp-popup.active {
    opacity: 1;
    visibility: visible;
}

.whatsapp-popup-content {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.whatsapp-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.whatsapp-popup h2 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 4rem;
}

.whatsapp-popup p {
    margin-bottom: 20px;
    color: #666;
}

.whatsapp-form .form-group {
    margin-bottom: 15px;
}

.whatsapp-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
    font-size: 1.2rem;
}

.whatsapp-form input,
.whatsapp-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    /*font-size: inherit;*/
}

.whatsapp-submit {
    background-color: var(--green-dark);
    color: var(--light-100);
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.whatsapp-submit i {
    margin-right: 8px;
}

/* Botão flutuante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--green-dark);
    color: var(--light-100);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: transform 0.3s, background-color 0.3s;
}

.whatsapp-float i {
    font-size: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: var(--green-light);
    border-color: var(--green-light);
    box-shadow: 0 0 2px var(--green-light),
    0 0 8px var(--green-light),
    0 0 12px var(--green-light);
}
