/* ============================================
   VARIÁVEIS E DEFINIÇÕES GLOBAIS
============================================ */
:root {
    /* Colors */
    --color-primary: #0000c9;
    --color-secondary: #fec600;
    --color-text: #0E0FCC;
    --color-text-light-blue: #074BD9;
    --color-text-inverse: #FFFFFF;
    --color-text-light: #6BA2FD;
    --color-background: #FFFFFF;
    --color-background-inverse: #0E0FCC;
    --color-background-inverse-dark: #0000c9;
    --color-background-inverse-light: #6BA2FD;
    --color-background-light-gray: #E7E7FE;
    --color-background-box-light: #C5EAFF;
    --color-background-gray: #E1E1ED;

    /* Colors - Versões */
    --color-background-empretec: #0000c9;
    --color-background-empretec-rural: #387F3A;
    --color-background-empretec-rural-intenso: #4FAD4F;
    --color-background-empretec-rural-medio: #69D169;
    --color-background-empretec-rural-claro: #BFFABF;
    --color-background-empretec-startup: #40BBFF;
    --color-background-empretec-startup-intenso: #66D1FF;
    --color-background-empretec-startup-medio: #8CE0FF;
    --color-background-empretec-startup-claro: #C4EBFF;
    --color-background-empretec-arena: #801080;
    --color-background-empretec-arena-intenso: #AB40B2;
    --color-background-empretec-arena-medio: #CF7AD4;
    --color-background-empretec-arena-claro: #F0BAF2;

    /* Colors - Mosaico */
    --color-mosaico-top_1: #215DF4;
    --color-mosaico-top_2: #E7E7FE;
    --color-mosaico-top_3: #0000C9;
    --color-mosaico-bottom_1: #FFC600;
    --color-mosaico-bottom_2: #FFDD66;
    --color-mosaico-bottom_3: #FFEBA3;

    /* Colors - Footer Mosaico */
    --color-footer-mosaico-1: #1434E1;
    --color-footer-mosaico-2: #2569F2;
    --color-footer-mosaico-3: #C5E9FF;

    /* Font Sizes */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.5rem;
    --font-size-xxxl: 3rem;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;

    /* Container */
    --container-max-width: 1440px;
    --container-padding: 1rem;

    /* Alinhamento */
    --justify-center: center;
    --justify-between: space-between;
    --justify-around: space-around;
    --justify-evenly: space-evenly;
    --justify-start: flex-start;
    --justify-end: flex-end;
    --justify-stretch: stretch;
    --align-center: center;
    --align-start: flex-start;
    --align-end: flex-end;
    --align-stretch: stretch;

    /* Flex */
    --flex-display: flex;
    --flex-row: row;
    --flex-column: column;

    /* Slider */
    --swiper-theme-color: #ffffff !important;
}

/* ============================================
   CLASSES UTILITÁRIAS E COMPONENTES GERAIS
============================================ */
/* Blocos Gerais */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.w50 {
    width: 50%;
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

.pure__link{
    text-decoration: underline !important;
}

/* Botões */
.button {
    display: inline-block;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.button--primary, .button--secondary, .button--tertiray, .show-more-btn, .int-button__hero__rural, .int-button__hero__rural__2, .int-button__hero__startup, .int-button__hero__startup__2, .int-button__hero__arena, .int-button__hero__arena__2 {
    text-transform: uppercase;
    padding: 0.50rem 1.75rem;
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.button--primary {
    background-color: var(--color-primary);
    color: var(--color-secondary);
}

.button--secondary {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

.button--tertiray {
    background-color: var(--color-background);
    color: var(--color-text-light-blue);
}

.button__hero {
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.button__caracteristicas {
    display: var(--flex-display);
    align-items: var(--align-center);
    justify-content: var(--justify-center);
}

.button__CTA__box {
    margin-top: var(--spacing-lg);
}

/* ============================================
   HEADER E NAVEGAÇÃO
============================================ */
/* Header Desktop */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-background);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-size: var(--font-size-sm);
    padding: var(--spacing-lg) var(--spacing-xl);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.header__logo img {
    height: 45px;
}

.header__nav {
    width: 60%;
    display: var(--flex-display);
    justify-content: var(--justify-start);
}

.header__nav > ul {
    width: 80%;
    display: var(--flex-display);
    flex-direction: var(--flex-row);
    align-items: var(--align-center);
    justify-content: var(--justify-between);
}

.nav__list {
    display: var(--flex-display);
    flex-direction: var(--flex-row);
    align-items: var(--align-center);
    justify-content: var(--justify-center);
    gap: var(--spacing-lg);
}

.nav__cta {
    font-weight: 800 !important;
}

.nav__item a {
    color: var(--color-text);
    font-size: 0.70rem;
    font-weight: 400;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav__item a:hover {
    color: var(--color-primary);
}

.header__menu-mobile {
    display: none;
}

.header__buttons {
    display: var(--flex-display);
    align-items: var(--align-center);
    justify-content: var(--justify-center);
    gap: var(--spacing-md);
}

.header__button__ind {
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.header__button__ind:hover {
    opacity: 0.8;
}

/* Menu Dropdown */
.nav__item.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: var(--flex-display);
    align-items: var(--align-center);
    gap: var(--spacing-md);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 150%;
    left: -16px;
    background-color: var(--color-background);
    min-width: 130px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 8px 0;
    z-index: 1000;
}

.dropdown-menu li {
    padding: 8px 16px;
}

.dropdown-menu li a {
    display: block;
    color: var(--color-text);
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.dropdown-menu li a:hover {
    color: var(--color-primary);
}

/* Estados de Hover */
.nav__item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__item.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mobile Controls */
.header__mobile-controls {
    display: none;
    align-items: center;
    gap: var(--spacing-sm);
    justify-content: space-between;
}

.header__menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.header__menu-btn img {
    width: 40px;
    height: 40px;
}

/* Mobile Menu Drawer */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    z-index: 2000;
    transition: visibility 0.3s ease;
}

.mobile-menu.active {
    visibility: visible;
}

.mobile-menu__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu.active .mobile-menu__overlay {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu__drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background-color: var(--color-background);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: var(--spacing-xl) var(--spacing-lg);
    overflow-y: auto;
}

.mobile-menu.active .mobile-menu__drawer {
    transform: translateX(0);
}

.mobile-menu__close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: none;
    border: none;
    color: var(--color-secondary);
    padding: var(--spacing-xs);
    cursor: pointer;
}

.mobile-menu__nav {
    margin-top: var(--spacing-xl);
}

.mobile-menu__nav ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.mobile-menu__nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-sm) 0;
}

/* Ajusta apenas o item do CTA */
.mobile-menu__nav>ul>li:last-of-type {
    border-bottom: none;
    margin-top: var(--spacing-md);
}

.mobile-menu__nav a {
    color: var(--color-primary);
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    padding: var(--spacing-sm) 0;
}

/* Corrige a cor do botão secondary */
.mobile-menu__nav .button.button--secondary {
    color: var(--color-primary);
    background-color: var(--color-secondary);
    padding: var(--spacing-sm) var(--spacing-lg);
    text-align: center;
    display: inline-block;
    margin: 0 auto;
    width: auto;
}

/* Mobile Submenu */
.mobile-submenu {
    position: relative;
}

.mobile-submenu>a {
    margin-bottom: var(--spacing-xs);
}

/* Submenu items */
.mobile-submenu__items {
    display: flex !important;
    flex-direction: column;
    gap: var(--spacing-xs);
    padding-left: var(--spacing-lg);
    margin-top: var(--spacing-xs);
}

.mobile-submenu__items li {
    border-bottom: none !important;
    padding: var(--spacing-xs) 0;
    position: relative;
    padding-left: var(--spacing-lg);
}

.mobile-submenu__items li::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 51%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--color-secondary);
    border-radius: 50%;
}

.mobile-submenu__items a {
    font-size: 1rem;
    color: var(--color-primary);
    padding: var(--spacing-xs) 0;
}

/* Remove a seta do submenu */
.submenu-arrow {
    display: none;
}

/* Busca desktop no header */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.search-toggle img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.search-container.active .search-toggle img {
    transform: scale(0.9);
}

.search-input {
    position: absolute;
    right: 50px;
    width: 0;
    height: 40px;
    padding: 0;
    border: 2px solid var(--color-primary);
    border-radius: 20px;
    background-color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--color-text);
    opacity: 0;
    pointer-events: none;
    transition: width 0.3s ease, padding 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 201, 0);
}

.search-container.active .search-input {
    width: 250px;
    padding: 0 50px 0 15px; 
    opacity: 1;
    pointer-events: all;
    box-shadow: 0 4px 10px rgba(0, 0, 201, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230000c9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    background-size: 20px;
}

.search-input:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 4px 12px rgba(254, 198, 0, 0.2);
}

.search-input::placeholder {
    color: var(--color-primary);
    opacity: 0.7;
}

/* Para diferentes navegadores */
.search-input::-webkit-input-placeholder {
    color: var(--color-primary);
    opacity: 0.7;
}
.search-input::-moz-placeholder {
    color: var(--color-primary);
    opacity: 0.7;
}
.search-input:-ms-input-placeholder {
    color: var(--color-primary);
    opacity: 0.7;
}

/* Busca mobile */
.search-container-mobile {
    position: relative;
    justify-content: flex-end !important;
}

/* Overlay para o fundo quando a busca está ativa */
.search-container-mobile::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

.search-container-mobile.active::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.search-container-mobile .search-input {
    position: fixed;
    top: -60px;
    left: 5%;
    width: 90%;
    height: 50px;
    padding: 0 50px 0 15px; 
    border: 2px solid var(--color-primary);
    border-radius: 25px;
    background-color: white;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230000c9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    background-size: 20px;
    font-size: 16px;
    color: var(--color-primary);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, top 0.3s ease;
    z-index: 1001;
    box-shadow: 0 4px 10px rgba(0, 0, 201, 0);
}

.search-container-mobile.active .search-input {
    top: 30px;
    opacity: 1;
    pointer-events: all;
    box-shadow: 0 4px 10px rgba(0, 0, 201, 0.15);
}

/* ============================================
   SEÇÃO HERO
============================================ */
.hero__image--mobile {
    display: none;
}

/* Seção Call To Action Principal "Hero" */
.hero {
    display: var(--flex-display);
    align-items: var(--align-center);
    justify-content: var(--justify-center);
    padding-top: calc(80px + 32px + 32px);
    background-color: var(--color-primary);
    color: var(--color-background);
    position: relative;
}

.hero__mosaico {
    width: 50%;
    background-color: var(--color-background-inverse);
    min-height: 700px;
}

.hero__mosaico__top {
    height: 60%;
    min-height: 420px;
    width: 100%;
    background-color: var(--color-mosaico-top_1);
    display: var(--flex-display);
    flex-direction: var(--flex-row);
    align-items: var(--align-center);
    justify-content: var(--justify-center);
}

.hero__mosaico__bottom {
    height: 40%;
    min-height: 280px;
    width: 100%;
    background-color: var(--color-mosaico-top_1);
    display: var(--flex-display);
    flex-direction: var(--flex-row);
    align-items: var(--align-center);
    justify-content: var(--justify-center);
}

.hero__mosaico__top_1 {
    width: 25%;
    min-height: 420px;
    background-color: var(--color-mosaico-top_1);
}

.hero__mosaico__top_1__top {
    width: 100%;
    height: 60%;
    min-height: 252px;
    background-color: transparent;
}

.hero__mosaico__top_1__top__left {
    width: 17.5%;
    min-height: 252px;
    background-color: var(--color-mosaico-top_2);
}

.hero__mosaico__top_1__top__right {
    width: calc(100% - 17.5%);
    height: 100%;
    background-color: transparent;
}

.hero__mosaico__top_1__bottom {
    width: 100%;
    height: 40%;
    min-height: 168px;
    background-image: url(../images/EMP-Site-BannerPrincipalFoto3-194x162px.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero__mosaico__bottom_1__top {
    width: 40%;
    height: 33.33%;
    min-height: 168px;
    background-color: var(--color-mosaico-top_3);
    position: absolute;
    top: 0;
    right: 0;
}

.hero__mosaico__top_2 {
    width: 75%;
    min-height: 420px;
    background-image: url(../images/EMP-Site-BannerPrincipalFoto1-526x390px.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__mosaico__bottom_1 {
    width: 25%;
    min-height: 280px;
    background-color: transparent;
    position: relative;
}

.hero__mosaico__bottom_2 {
    width: 65.625%;
    min-height: 280px;
    background-image: url(../images/EMP-Site-BannerPrincipalFoto2-467x241px.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__mosaico__bottom_3 {
    width: 9.375%;
    min-height: 280px;
    background-color: var(--color-mosaico-bottom_1);
}

.hero__mosaico__bottom_3__1 {
    width: 100%;
    height: 60%;
    min-height: calc(280px * 0.6);
    background-color: var(--color-mosaico-bottom_1);
}

.hero__mosaico__bottom_3__2 {
    width: 100%;
    height: 30%;
    min-height: calc(280px * 0.3);
    background-color: var(--color-mosaico-bottom_2);
}

.hero__mosaico__bottom_3__3 {
    width: 100%;
    height: 10%;
    min-height: calc(280px * 0.1);
    background-color: var(--color-mosaico-bottom_3);
}

.hero_image {
    width: 50%;
}

.hero__content {
    max-width: 475px;
    width: 50%;
}

.hero__content h1 {
    color: var(--color-secondary);
    font-size: var(--font-size-xxxl);
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    margin-top: 5rem;
    font-weight: 500;
}

.hero__content__highlight {
    color: var(--color-text-inverse);
    font-weight: 300;
}

.hero__content p {
    width: 90%;
    font-size: var(--font-size-md);
    margin-bottom: 4.75rem;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Seta de navegação */
.hero__scroll-arrow {
    display: var(--flex-display);
    align-items: var(--align-center);
    justify-content: var(--justify-center);
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    transition: transform 0.3s ease;
}

.hero__scroll-arrow:hover {
    transform: translateX(-50%) translateY(5px);
}

/* ============================================
   SEÇÃO "O QUE É O EMPRETEC?"
============================================ */
.o_que_e_empretec {
    display: var(--flex-display);
    flex-direction: var(--flex-column);
    align-items: var(--align-center);
    justify-content: var(--justify-center);
    background-color: var(--color-background);
    color: var(--color-primary);
    padding: var(--spacing-xl);
    scroll-margin-top: 90px;
}

.o_que_e_empretec__content {
    display: var(--flex-display);
    flex-direction: var(--flex-row);
    align-items: var(--align-stretch);
    justify-content: var(--justify-center);
    width: 100%;
    padding: var(--spacing-lg);
}

.o_que_e_empretec__content__text {
    min-height: 100%;
    width: 50%;
}

.o_que_e_empretec__content__text h1 {
    font-size: var(--font-size-xxxl);
    font-weight: 300;
    margin-bottom: var(--spacing-sm);
}

.o_que_e_empretec__content__text h2 {
    font-size: 1.40rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

.o_que_e_empretec__content__text p {
    font-size: var(--font-size-sm);
    line-height: 1.25;
    width: 100%;
}

.o_que_e_empretec__content__text p span {
    font-weight: 600;
}

.o_que_e_empretec__grid_beneficios {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: var(--spacing-lg) 0;
    padding: var(--spacing-md) 0;
    margin-top: var(--spacing-md);
    width: 80%;
    margin-left: -30px;
}

.o_que_e_empretec__grid_beneficios__item {
    display: var(--flex-display);
    flex-direction: var(--flex-column);
    align-items: var(--align-center);
    justify-content: var(--justify-start);
    text-align: center;
}

.o_que_e_empretec__grid_beneficios__item h3 {
    font-size: var(--font-size-md);
    width: 80%;
    line-height: 1.2;
    margin: var(--spacing-sm) 0 0 0;
}

.o_que_e_empretec__grid_beneficios__item p {
    font-size: var(--font-size-sm);
    width: 85%;
}

.o_que_e_empretec__grid_beneficios__item img {
    max-width: 100px;
    object-fit: contain;
    margin-bottom: var(--spacing-sm);
}

.o_que_e_empretec__content__metodologia {
    display: var(--flex-display);
    align-items: var(--align-center);
    justify-content: var(--justify-center);
    width: 50%;
}

.o_que_e_empretec__content__metodologia__box {
    display: var(--flex-display);
    flex-direction: var(--flex-column);
    align-items: var(--align-center);
    justify-content: var(--justify-between);
    background-color: var(--color-background-inverse-dark);
    color: var(--color-text-inverse);
    padding: var(--spacing-lg) var(--spacing-lg);
    border-radius: 20px;
    width: 90%;
    height: 100%;
    text-align: center;
}

.o_que_e_empretec__content__metodologia__box h2 {
    color: var(--color-secondary);
    font-size: var(--font-size-xl);
    font-weight: 600;
    line-height: 1.2;
}

.o_que_e_empretec__content__metodologia__box h3 {
    color: var(--color-secondary);
    font-size: 2.5rem;
    font-weight: 200;
    margin-top: var(--spacing-md);
}

.o_que_e_empretec__content__metodologia__box p {
    font-size: 1.25rem;
    line-height: 1.2;
    width: 100%;
    font-weight: 400;
}

.o_que_e_empretec__content__metodologia__box__item {
    display: var(--flex-display);
    flex-direction: var(--flex-column);
    align-items: var(--align-center);
    justify-content: var(--justify-start);
}

.o_que_e_empretec__content__cta_button {
    margin-top: var(--spacing-lg);
}

/* ============================================
   SEÇÃO VERSÕES
============================================ */
.versoes-mobile {
    display: none;
}

.versoes-mobile__cta__box {
    display: none;
}

.versoes-1 {
    background-color: var(--color-background);
    padding-top: var(--spacing-lg);
    scroll-margin-top: 80px;
}

.versoes-1__content {
    display: var(--flex-display);
    flex-direction: var(--flex-column);
    align-items: var(--align-center);
    justify-content: var(--justify-center);
    padding: 0 var(--spacing-lg);
}

.versoes__content__title,
.versoes-mobile__content__title {
    color: var(--color-primary);
    display: var(--flex-display);
    flex-direction: var(--flex-row);
    align-items: var(--align-center);
    justify-content: var(--justify-start);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.versoes__content__title h1,
.versoes-mobile__content__title h1 {
    width: 100%;
    font-size: var(--font-size-xxxl);
    font-weight: 300;
    line-height: 1.2;
}

.versoes__content__title p {
    width: 40%;
    font-size: var(--font-size-lg);
    line-height: 1.2;
}

.versoes__content__title p strong {
    font-weight: 600;
}

.versoes-1__content__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 3rem;
    margin-top: var(--spacing-xl);
    scroll-margin-top: 180px;
}

.versoes-2__content__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 3rem;
    padding: 0 1rem;
}

.versoes-1__content__grid__item {
    display: var(--flex-display);
    flex-direction: var(--flex-column);
    align-items: var(--align-center);
    justify-content: var(--justify-center);
}

.versoes-1__content__grid__item__logo {
    width: 100%;
    height: 100px;
    display: var(--flex-display);
    align-items: var(--align-center);
    justify-content: var(--justify-center);
    border-radius: 20px 20px 0 0;
}

#logo-empretec,
#box-empretec,
#logo-empretec-mobile,
#box-empretec-mobile {
    background-color: var(--color-background-inverse-dark);
}

#logo-empretec-rural,
#box-empretec-rural,
#logo-empretec-rural-mobile,
#box-empretec-rural-mobile {
    background-color: var(--color-background-empretec-rural);
}

#logo-empretec-startup,
#box-empretec-startup,
#logo-empretec-startup-mobile,
#box-empretec-startup-mobile {
    background-color: var(--color-background-empretec-startup);
}

#logo-empretec-arena,
#box-empretec-arena,
#logo-empretec-arena-mobile,
#box-empretec-arena-mobile {
    background-color: var(--color-background-empretec-arena);
}

.versoes-1__content__grid__item__image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 200px;
}

#image-empretec,
#image-empretec-mobile {
    background-image: url(../images/empretec.jpg)
}

#image-empretec-rural,
#image-empretec-rural-mobile {
    background-image: url(../images/empretec-rural.jpg)
}

#image-empretec-startup,
#image-empretec-startup-mobile {
    background-image: url(../images/empretec-startup.jpg)
}

#image-empretec-arena,
#image-empretec-arena-mobile {
    background-image: url(../images/empretec-arena.jpg)
}

.versoes-1__content__grid__item__logo img {
    width: 70%;
}

.versoes-2 {
    background-color: var(--color-background-gray);
    min-height: 400px;
    color: var(--color-text-inverse);
    padding-bottom: var(--spacing-lg);
}

.versoes-2__content__grid__item {
    display: var(--flex-display);
    flex-direction: var(--flex-column);
    align-items: var(--align-center);
    justify-content: var(--justify-start);
    padding: var(--spacing-md);
    border-radius: 0 0 20px 20px;
}

.versoes-2__content__grid__item p {
    font-size: var(--font-size-md);
    line-height: 1.2;
    width: 80%;
    min-height: 100px;
    text-align: center;
}

.versoes-2__content__grid__item a {
    margin: var(--spacing-lg) auto var(--spacing-md) auto;
}

.versoes__cta__box {
    display: var(--flex-display);
    flex-direction: var(--flex-column);
    align-items: var(--align-center);
    justify-content: var(--justify-center);
    background-color: var(--color-background-inverse-light);
    padding: var(--spacing-lg);
    border-radius: 20px;
    width: 43%;
    max-width: 645px;
    margin: var(--spacing-xl) auto var(--spacing-lg) auto;
    text-align: center;
}

.versoes__cta__box h2 {
    font-size: var(--font-size-xl);
    font-weight: 600;
}

.versoes__cta__box p {
    margin-top: var(--spacing-md);
    font-size: var(--font-size-md);
    line-height: 1.2;
    width: 88%;
}

.versoes__cta__box p span {
    font-weight: 600;
}

.versoes__cta__box p {
    width: 100%;
}

/* ============================================
   SEÇÃO BENEFÍCIOS
============================================ */
.beneficios {
    background-color: var(--color-background-inverse);
    color: var(--color-text-inverse);
    padding: var(--spacing-lg) 0;
    overflow: hidden;
}

.beneficios__content {
    display: var(--flex-display);
    flex-direction: var(--flex-column);
    align-items: var(--align-center);
    justify-content: var(--justify-center);
}

.beneficios h1 {
    font-size: var(--font-size-xxxl);
    margin-bottom: var(--spacing-lg);
    margin-top: var(--spacing-md);
    font-weight: 300;
    padding: 0 var(--spacing-lg);
    width: 100%;
}

.beneficios__slider {
    position: relative;
    width: 100%;
    padding: 0 var(--spacing-lg);
    max-width: 1200px;
}

.beneficios__slider__container {
    margin: 0 -30px;
    padding: var(--spacing-md) 30px !important;
    overflow: hidden;
}

.beneficios__slider__item {
    background-color: var(--color-background);
    color: var(--color-primary);
    border-radius: 20px;
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
    min-height: 250px;
}

.beneficios__slider__item p {
    font-size: var(--font-size-md);
    line-height: 1.4;
}

.beneficios__slider__item span {
    font-weight: 600;
}

.beneficios__cta_button {
    margin-top: var(--spacing-md);
    display: var(--flex-display);
    align-items: var(--align-center);
    justify-content: var(--justify-center);
    width: 100%;
}

/* BENEFÍCIOS - Navegação do Slider */
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50% !important;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-inverse);
    background: none;
    transition: opacity 0.3s ease;
    margin: 0 !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    opacity: 0.7;
}

.swiper-button-prev {
    left: var(--spacing-lg);
}

.swiper-button-next {
    right: var(--spacing-lg);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ============================================
   SEÇÃO DEPOIMENTOS
============================================ */
.depoimentos {
    background-color: var(--color-background);
    color: var(--color-primary);
    padding: var(--spacing-xl);
    display: var(--flex-display);
    flex-direction: var(--flex-row);
    align-items: var(--align-center);
    justify-content: var(--justify-between);
}

.depoimentos__button__mobile {
    display: none;
}

.depoimentos__content__CTA {
    display: var(--flex-display);
    flex-direction: var(--flex-column);
    align-items: var(--align-start);
    justify-content: var(--justify-start);
    text-align: center;
    width: 37%;
}

.depoimentos__content__container {
    display: var(--flex-display) !important;
    flex-direction: var(--flex-row) !important;
    align-items: var(--align-center) !important;
    justify-content: var(--justify-between) !important;
    width: 100% !important;
}

.depoimentos__content__CTA h1 {
    font-size: var(--font-size-xxxl);
    font-weight: 300;
    line-height: 1.1;
    text-align: left;
}

.depoimentos__content__CTA p {
    font-size: var(--font-size-lg);
    line-height: 1.25;
    text-align: left;
    margin: var(--spacing-md) 0;
}

.depoimentos__content__CTA p span {
    font-weight: 600;
}

.depoimentos__content__CTA a {
    margin-top: var(--spacing-md);
}

.depoimentos__slider {
    position: relative;
    width: 60%;
    display: var(--flex-display);
    flex-direction: var(--flex-row);
    align-items: var(--align-center);
    justify-content: var(--justify-center);
}

.depoimentos__slider__container {
    width: 87.5%;
    margin: 0 auto;
}

.depoimentos__content__slider__item {
    display: flex !important;
    flex-direction: var(--flex-column);
    align-items: var(--align-center);
    justify-content: var(--justify-center);
    background-color: var(--color-background-light-gray);
    border-radius: 20px;
    padding: var(--spacing-lg) var(--spacing-xl);
    text-align: center;
    min-height: 245px;
}

.depoimentos__content__slider__item p {
    font-weight: 500;
}

.depoimentos__content__slider__item p:first-of-type {
    font-size: var(--font-size-lg);
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
}

/* Navegação do Slider de Depoimentos */
.depoimentos-prev,
.depoimentos-next {
    position: absolute;
    top: 50% !important;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary) !important;
    background: none;
    transition: opacity 0.3s ease;
    margin: 0 !important;
}

.depoimentos-prev {
    left: 0;
}

.depoimentos-next {
    right: 0;
}

.depoimentos-prev:hover,
.depoimentos-next:hover {
    opacity: 0.7;
}

/* ============================================
   SEÇÃO FORMULÁRIO
============================================ */
.formulario {
    background-color: var(--color-background-inverse);
    color: var(--color-text-inverse);
    padding: 5rem var(--spacing-xl);
    scroll-margin-top: 120px;
}

.form__rural__bg {
    background-color: var(--color-background-empretec-rural) !important;
}

.formulario__content {
    display: var(--flex-display);
    flex-direction: var(--flex-row);
    align-items: var(--align-start);
    justify-content: var(--justify-between);
}

.form__group label {
    display: none;
}

.formulario__content__text {
    width: 50%;
}

.formulario__content__text h1 {
    font-size: var(--font-size-xxxl);
    font-weight: 300;
    line-height: 1.1;
    text-align: left;
    width: 72.5%;
}

.formulario__content__text p {
    font-size: var(--font-size-lg);
    line-height: 1.25;
    text-align: left;
    margin-top: var(--spacing-md);
    width: 82.5%;
}

.formulario__content__text p span {
    font-weight: 600;
    color: var(--color-secondary);
}

.formulario__content__form {
    width: 50%;
    margin-top: 10px;
}

.form_button {
    width: 33% !important;
}

.form__group--button {
    display: var(--flex-display);
    align-items: var(--align-end);
    justify-content: var(--justify-center);
    width: 100%;
}

/* Formulário */
.form {
    display: var(--flex-display);
    flex-direction: var(--flex-column);
    gap: var(--spacing-sm);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.form input::placeholder {
    color: var(--color-primary);
    opacity: 1;
    font-weight: 300;
    font-size: var(--font-size-md);
}

.form__rural input::placeholder {
    color: var(--color-background-empretec-rural-intenso) !important;
}

.form__startup input::placeholder {
    color: var(--color-background-empretec-startup) !important;
}

.form__arena input::placeholder {
    color: var(--color-background-empretec-arena-medio) !important;
}

.form__group {
    display: var(--flex-display);
    flex-direction: var(--flex-column);
    width: 100%;
}

.form__group--row {
    flex-direction: var(--flex-row);
    gap: var(--spacing-sm);
}

.form__group__item {
    flex: 1;
}

.form input {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    font-size: var(--font-size-md);
    color: var(--color-text);
    background-color: var(--color-background);
    transition: all 0.3s ease;
}

.form__rural input {
    border: 1px solid var(--color-background) !important;
    color: var(--color-background-empretec-rural-intenso) !important;
}

.form__startup input {
    border: 1px solid var(--color-background) !important;
    color: var(--color-background-empretec-startup-intenso) !important;
}

.form__arena input {
    border: 1px solid var(--color-background) !important;
    color: var(--color-background-empretec-arena-medio) !important;
}

.form input:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 2px rgba(247, 148, 29, 0.2);
}

.form button {
    width: 100%;
}

/* ============================================
   SEÇÃO PERGUNTAS FREQUENTES
============================================ */


#perguntas_frequentes {
    scroll-margin-top: 120px;
}

.perguntas_frequentes {
    background-color: var(--color-background);
    color: var(--color-text);
    padding: 7rem;
    position: relative;
}

.perguntas_frequentes__content {
    position: relative;
}

.perguntas_frequentes__content h1 {
    font-size: var(--font-size-xxxl);
    line-height: 1.2;
    margin-bottom: var(--spacing-xl);
    font-weight: 300;
}

.perguntas_frequentes__content__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    align-items: start;
    position: relative;
}

.perguntas_frequentes__content__grid__item {
    border: 2px solid var(--color-background-inverse-light);
    border-radius: 25px;
    overflow: hidden;
    height: fit-content;
    position: relative;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md) var(--spacing-sm) var(--spacing-lg);
    cursor: pointer;
    background-color: var(--color-background);
    position: relative;
    z-index: 2;
}

.faq-question h2 {
    font-size: var(--font-size-sm);
    font-weight: 400;
    margin: 0;
}

.faq-question h2 span {
    font-weight: 700;
}

.faq-answer {
    padding: 0 var(--spacing-lg);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.faq-answer.active {
    padding: 0 var(--spacing-lg) var(--spacing-md);
    max-height: 500px;
    opacity: 1;
}

.faq-answer p {
    font-size: var(--font-size-sm);
    line-height: 1.5;
    font-weight: 300;
    width: 97.5%;
}

.faq-question svg {
    transition: transform 0.3s ease;
}

.faq-question.active svg {
    transform: rotate(45deg);
}

.hidden-faq {
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
    position: absolute;
    pointer-events: none;
}

.hidden-faq.show-all {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    position: relative;
    pointer-events: auto;
}

.perguntas_frequentes__content__show-more {
    text-align: left;
    padding-top: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.show-more-btn {
    background-color: var(--color-background-inverse-light);
    color: var(--color-background);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.show-more-btn:hover {
    opacity: 0.9;
}

/* ============================================
   HERO FOOTER
============================================ */
.hero_footer {
    display: flex;
    flex-direction: var(--flex-row);
    align-items: var(--align-center);
    justify-content: var(--justify-between);
    width: 100%;
    min-height: 500px;
    margin-top: var(--spacing-xl);
}

.hero_footer__mosaico__left {
    width: 43.75%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 550px;
    min-width: 570px
}

.hero_footer__mosaico__left_home_img {
    /*background-image: url(../images/EMP-Site-FotoBannerRodape-720x500px.jpg)*/
    background-image: url(../images/EMP-Site-FotoBannerRodape-634x500px.jpg)
}

.hero_footer__mosaico__left_empretec_img {
    background-image: url(../images/EMP-Site-Empretec-BannerRodape-Foto-720x500px.jpg)
}

.hero_footer__mosaico__right {
    width: 56.25%;
    background-color: var(--color-background);
    min-height: 500px;
}

.hero_footer__mosaico__right__top {
    width: 100%;
    height: 65%;
    min-height: calc(500px * 0.65);
    background-color: var(--color-background);
    display: var(--flex-display);
    flex-direction: var(--flex-row);
    align-items: var(--align-center);
    justify-content: var(--justify-between);
}

.hero_footer__mosaico__right__top__left {
    width: 60%;
    height: 100%;
    min-height: calc(500px * 0.65);
    background-color: var(--color-background);
    display: var(--flex-display);
    flex-direction: var(--flex-column);
    align-items: var(--align-start);
    justify-content: var(--justify-center);
}

.hero_footer__mosaico__right__top__left h2 {
    font-size: var(--font-size-xxxl);
    font-weight: 300;
    color: var(--color-text);
    padding: var(--spacing-xl);
    line-height: 1.3;
    width: 95%;
}

.hero_footer__mosaico__right__top__right {
    width: 40%;
    height: 100%;
    min-height: calc(550px * 0.65);
    background-color: var(--color-footer-mosaico-2);
    display: var(--flex-display);
    flex-direction: var(--flex-row);
    align-items: var(--align-start);
    justify-content: var(--justify-between);
    position: relative;
}

.hero_footer__mosaico__right__top__right__1 {
    width: 65%;
    height: 100%;
    min-height: calc(550px * 0.65);
    background-color: var(--color-footer-mosaico-1);
}

.hero_footer__mosaico__right__top__right__2 {
    width: 25%;
    height: 100%;
    min-height: calc(550px * 0.65);
    background-color: var(--color-footer-mosaico-2);
}

.hero_footer__mosaico__right__top__right__3 {
    width: 10%;
    height: 100%;
    min-height: calc(550px * 0.65);
    background-color: var(--color-footer-mosaico-3);
    display: none;
}

.hero_footer__mosaico__right__bottom {
    width: 100%;
    height: 35%;
    min-height: calc(550px * 0.35);
    background-color: var(--color-background);
    display: flex;
    flex-direction: var(--flex-row);
    align-items: var(--align-center);
    justify-content: var(--justify-between);
}

.hero_footer__button {
    position: absolute;
    top: 27%;
    left: 49%;
    transform: translate(-50%, -50%);
    text-transform: none !important;
    font-size: 1.50rem;
}

.hero_footer__mosaico__right__bottom__left {
    width: 60%;
    min-height: calc(550px * 0.35);
    display: var(--flex-display);
    flex-direction: var(--flex-row);
    align-items: var(--align-center);
    justify-content: var(--justify-between);
}

.hero_footer__mosaico__right__bottom__right {
    width: 40%;
    background-color: var(--color-background);
    min-height: calc(550px * 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero_footer__mosaico__right__bottom__right__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 250px;
}

.hero_footer__mosaico__right__bottom__left__1 {
    width: 62.5%;
    min-height: calc(550px * 0.35);
    background-color: var(--color-mosaico-bottom_1);
}

.hero_footer__mosaico__right__bottom__left__2 {
    width: 25%;
    min-height: calc(550px * 0.35);
    background-color: var(--color-mosaico-bottom_2);
}

.hero_footer__mosaico__right__bottom__left__3 {
    width: 12.5%;
    min-height: calc(550px * 0.35);
    background-color: var(--color-mosaico-bottom_3);
}

/* ============================================
   FOOTER
============================================ */
footer {
    background-color: var(--color-background-inverse);
    color: var(--color-text-inverse);
    padding: var(--spacing-xl);
}

.footer__content {
    display: var(--flex-display);
    flex-direction: var(--flex-row);
    align-items: var(--align-start);
    justify-content: var(--justify-between);
}

.footer__content__menu {
    display: var(--flex-display);
    flex-direction: var(--flex-row);
    align-items: var(--align-start);
    justify-content: var(--justify-between);
    gap: var(--spacing-xl);
    text-transform: uppercase;
    font-size: var(--font-size-sm);
    line-height: 2;
    font-weight: 600;
}

.footer__redes-sociais {
    display: var(--flex-display);
    flex-direction: var(--flex-row);
    align-items: var(--align-center);
    justify-content: var(--justify-start);
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.footer__content__logo-contato-redes {
    display: var(--flex-display);
    flex-direction: var(--flex-column);
    align-items: var(--align-end);
    justify-content: var(--justify-end);
}

.footer__redes-sociais a,
.footer__content__logo-contato-redes p {
    margin-top: var(--spacing-md);
}

.footer__content__logo-contato-redes img {
    max-width: 145px;
    margin-bottom: var(--spacing-md);
}

/* ============================================
   COMPONENTES FLUTUANTES
============================================ */
/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1500;
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--color-background);
    color: var(--color-primary);
    padding: 1.25rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2000;
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border: 1px solid var(--color-border-empretec-light-blue);
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-notification__icon {
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fec600' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.toast-notification__message {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

/* ============================================
   SEÇÃO CARACTERÍSTICAS
============================================ */
.caracteristicas {
    background-color: var(--color-background-inverse-dark);
    padding: var(--spacing-md) 0;
}

.caracteristicas__content {
    display: var(--flex-display);
    flex-direction: var(--flex-row);
    align-items: var(--align-center);
    justify-content: var(--justify-between);
    padding: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.caracteristicas__content__main__container {
    display: var(--flex-display);
    flex-direction: var(--flex-column);
    align-items: var(--align-center);
    justify-content: var(--justify-center);
    width: 32.5%;
}

.caracteristicas__content__main {
    display: var(--flex-display);
    flex-direction: var(--flex-row);
    align-items: var(--align-start);
    justify-content: var(--justify-start);
    width: 100%;
}

.caracteristicas__content__main h1 {
    color: var(--color-text-inverse);
    text-align: left;
    font-size: var(--font-size-xxxl);
    font-weight: 200;
    line-height: 1.2;
    margin-top: var(--spacing-lg);
    letter-spacing: 0.05em;
}

.caracteristicas__content__caracteristicas {
    display: var(--flex-display);
    flex-direction: var(--flex-row);
    align-items: var(--align-start);
    justify-content: var(--justify-start);
    width: 67.5%;
    margin-top: var(--spacing-lg);
}

.caracteristicas__content__caracteristicas__text {
    color: var(--color-text-inverse);
    padding: var(--spacing-md) 0;
}

.caracteristicas__content__caracteristicas__text p {
    font-size: var(--font-size-md);
    line-height: 1.35;
    font-weight: 300;
    opacity: 0.9;
    margin-top: var(--spacing-sm);
    width: 95%;
}

.caracteristicas__content__caracteristicas__text p:first-of-type {
    margin-top: 0;
}

.caracteristicas__content__caracteristicas__text p:last-of-type {
    font-weight: 600;
    opacity: 1;
}

.caracteristicas__content__caracteristicas__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 1rem;
    padding: var(--spacing-md);
    margin-left: var(--spacing-lg);
}

.caracteristicas__content__caracteristicas__grid li {
    background-color: var(--color-background-box-light);
    color: var(--color-primary);
    padding: 1.0rem 0.25rem 1.0rem 0.75rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
    display: var(--flex-display);
    align-items: var(--align-center);
    justify-content: var(--justify-start);
    min-height: 140px;
}

.caracteristicas__content__cta_button-mobile {
    display: none;
}

/* Ordem dos elementos na seção Características Desktop */
.caracteristicas__content__caracteristicas__grid li:nth-child(1) {
    order: 1;
}

.caracteristicas__content__caracteristicas__grid li:nth-child(2) {
    order: 2;
}

.caracteristicas__content__caracteristicas__grid li:nth-child(3) {
    order: 3;
}

.caracteristicas__content__caracteristicas__grid li:nth-child(4) {
    order: 4;
}

.caracteristicas__content__caracteristicas__grid li:nth-child(5) {
    order: 5;
}

.caracteristicas__content__cta_button-desktop,
.caracteristicas__content__cta_button-mobile {
    margin-bottom: var(--spacing-lg);
}

.caracteristicas__content__cta_button-container {
    display: var(--flex-display);
    flex-direction: var(--flex-row);
    align-items: var(--align-center);
    justify-content: var(--justify-center);
    width: 100%;
}

/* ============================================
   MEDIA QUERIES - RESPONSIVIDADE
============================================ */
@media (max-width: 768px) {
    .container {
        padding: 0;
    }
    
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    /* ===== Header & Navegação Mobile ===== */
    .header__logo img {
        height: 35px;
    }

    .header__menu-btn img {
        width: 25px;
        height: 25px;
    }

    .mobile-menu__drawer {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .mobile-menu__nav {
        margin-top: var(--spacing-lg);
    }

    .mobile-menu__nav ul {
        gap: var(--spacing-sm);
    }

    .mobile-menu__nav li {
        padding: var(--spacing-xs) 0;
    }

    .mobile-submenu__items {
        padding-left: var(--spacing-md);
    }

    .mobile-menu__nav .button.button--secondary {
        display: block;
        width: 100%;
        text-align: center;
        font-weight: 600;
    }

    .header {
        padding: var(--spacing-md) var(--spacing-lg);
    }

    .header__nav {
        display: none;
    }

    .header__menu-mobile {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .header__menu-mobile span {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--color-text);
    }

    .header__buttons {
        display: none;
    }

    .header__mobile-controls {
        display: flex;
    }

    /* ===== Busca Mobile ===== */
    .search-container.active .search-input {
        width: 150px;
    }

    .search-container-mobile .search-toggle {
        padding: 0;
        margin: 0;
    }
    
    .search-container-mobile .search-toggle img {
        width: 30px;
        height: 30px;
    }

    .search-container-mobile.active .search-toggle img {
        transform: scale(0.9);
        opacity: 0.8;
    }
    
    .search-container-mobile.active .search-input {
        left: 50%;
        transform: translateX(-50%);
        max-width: 95%;
        width: 95%;
    }

    /* ===== Hero Section Mobile ===== */
    .hero__image--mobile {
        display: block;
    }

    .hero__image--desktop {
        display: none;
    }

    .hero__content h1 {
        font-size: 2rem;
        margin-top: 0;
    }

    .hero__content p {
        font-size: 1rem;
    }

    .hero__scroll-arrow {
        display: none;
    }

    .hero {
        flex-direction: var(--flex-column);
        padding-top: 80px;
    }

    .hero__mosaico__mobile {
        display: flex;
        width: 100%;
        background-color: purple;
        min-height: 200px;
    }

    .hero__mosaico__mobile__left {
        width: calc(100% - 12.5%);
        background-image: url(../images/EMP-Site-BannerPrincipalFoto1-526x390px.jpg);
        background-size: cover;
        background-position: 0 30%;
        background-repeat: no-repeat;
        min-height: 200px;
    }

    .hero__mosaico__mobile__right {
        width: 12.5%;
        background-color: var(--color-mosaico-bottom_1);
        min-height: 200px;
    }

    .hero__mosaico__mobile__right__1 {
        width: 100%;
        height: 16.66%;
        min-height: calc(200px * 0.166);
        background-color: var(--color-mosaico-bottom_3);
    }

    .hero__mosaico__mobile__right__2 {
        width: 100%;
        height: 41.66%;
        min-height: calc(200px * 0.416);
        background-color: var(--color-mosaico-bottom_2);
    }

    .hero__mosaico__mobile__right__3 {
        width: 100%;
        height: 41.66%;
        min-height: calc(200px * 0.416);
        background-color: transparent;
    }

    .hero__mosaico {
        display: none;
    }

    .hero_image,
    .hero__content,
    .hero__content p {
        width: 100%;
        margin: var(--spacing-lg) 0;
    }

    .hero__content,
    .o_que_e_empretec {
        padding: var(--spacing-lg);
        scroll-margin-top: 50px;
    }

    /* ===== O que é o Empretec? Mobile ===== */
    .o_que_e_empretec__content {
        flex-direction: var(--flex-column);
        width: 100%;
    }

    .o_que_e_empretec__grid_beneficios__item h3,
    .o_que_e_empretec__grid_beneficios__item p,
    .o_que_e_empretec__content__metodologia,
    .o_que_e_empretec__content__metodologia__box,
    .o_que_e_empretec__content__text {
        width: 100%;
    }

    .o_que_e_empretec__grid_beneficios__item h3 {
        font-size: var(--font-size-sm);
        margin-bottom: 0.25rem;
    }

    .o_que_e_empretec__content__metodologia__box {
        padding: var(--spacing-xl) var(--spacing-md);
        margin-left: 0;
    }

    .o_que_e_empretec__content__metodologia__box h2 {
        font-size: var(--font-size-xl);
    }

    .o_que_e_empretec__grid_beneficios {
        gap: 0 var(--spacing-sm);
        padding: 0;
        width: 100%;
        margin-left: 0;
    }

    .o_que_e_empretec__content__text h1 {
        font-size: var(--font-size-xl);
        font-weight: 400;
        line-height: 1.2;
        margin-bottom: var(--spacing-lg);
        margin-top: var(--spacing-xl);
    }

    .o_que_e_empretec__content__text h2 {
        margin-bottom: var(--spacing-md);
    }

    .o_que_e_empretec__content__text p {
        margin-bottom: var(--spacing-lg);
        width: 97%;
    }

    /* ===== Características Mobile ===== */
    .caracteristicas {
        padding: var(--spacing-lg);
    }

    .caracteristicas__content {
        flex-direction: var(--flex-column);
        margin-top: 0;
    }

    .caracteristicas__content__caracteristicas {
        flex-direction: var(--flex-column);
    }

    .caracteristicas__content__caracteristicas__text,
    .caracteristicas__content__main h1,
    .caracteristicas__content__main__container,
    .caracteristicas__content__caracteristicas {
        width: 100%;
    }

    .caracteristicas__content__main h1 {
        font-size: var(--font-size-xl);
        margin-bottom: var(--spacing-sm);
    }

    .caracteristicas__content__caracteristicas__grid {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 0;
        margin-top: var(--spacing-md);
        margin-left: 0;
    }

    .caracteristicas__content__caracteristicas__grid h3 {
        font-size: var(--font-size-sm);
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .caracteristicas__content__cta_button-mobile {
        margin-bottom: var(--spacing-sm);
    }

    .caracteristicas__content__cta_button-desktop {
        display: none;
    }

    .caracteristicas__content__cta_button-mobile {
        display: block;
    }

    .caracteristicas__content__cta_button-container{
        margin-top: var(--spacing-lg);
    }

    /* Ordem dos elementos na seção Características Mobile */
    .caracteristicas__content__caracteristicas__grid h3:nth-child(1) {
        order: 2;
    }

    .caracteristicas__content__caracteristicas__grid h3:nth-child(2) {
        order: 4;
    }

    .caracteristicas__content__caracteristicas__grid h3:nth-child(3) {
        order: 6;
    }

    .caracteristicas__content__caracteristicas__grid h3:nth-child(4) {
        order: 8;
    }

    .caracteristicas__content__caracteristicas__grid h3:nth-child(5) {
        order: 10;
    }

    .caracteristicas__content__caracteristicas__grid h3:nth-child(6) {
        order: 1;
    }

    .caracteristicas__content__caracteristicas__grid h3:nth-child(7) {
        order: 3;
    }

    .caracteristicas__content__caracteristicas__grid h3:nth-child(8) {
        order: 5;
    }

    .caracteristicas__content__caracteristicas__grid h3:nth-child(9) {
        order: 7;
    }

    .caracteristicas__content__caracteristicas__grid h3:nth-child(10) {
        order: 9;
    }

    /* ===== Versões Mobile ===== */
    .versoes-1,
    .versoes-2 {
        display: none;
    }

    .versoes-1__content__grid__item__image {
        min-height: 125px;
    }

    .versoes-1__content__grid__item__logo {
        height: 60px;
        border-radius: 25px 25px 0 0;
    }

    .versoes-1__content__grid__item__logo img {
        width: 80%;
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .versoes-2__content__grid__item a {
        margin: var(--spacing-md) 0 0 0;
        font-size: 0.75rem;
    }

    .versoes-mobile {
        display: flex;
        flex-direction: var(--flex-column);
        align-items: var(--align-center);
        justify-content: var(--justify-center);
        padding: var(--spacing-lg);
        scroll-margin-top: 80px;
    }

    .versoes-mobile__content__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
        color: var(--color-text-inverse);
    }

    #versoes-mobile__content__grid{
        scroll-margin-top: 125px;
    }

    .versoes-2__content__grid__item {
        padding: var(--spacing-md) var(--spacing-sm);
        border-radius: 0 0 25px 25px;
    }

    .versoes-2__content__grid__item p {
        font-size: 0.75rem;
        width: 100%;
        text-align: center;
    }

    .versoes-mobile__content {
        margin-bottom: var(--spacing-sm);
    }

    .versoes-mobile__content__title {
        flex-direction: var(--flex-column);
        justify-content: var(--justify-start);
        align-items: var(--align-start);
        margin-top: var(--spacing-sm);
    }

    .versoes-mobile__content__title h1 {
        font-size: var(--font-size-xl);
        line-height: 1.2;
        margin-bottom: var(--spacing-md);
        width: 90%;
    }

    .versoes-mobile__content__title p {
        width: 90%;
        margin-bottom: var(--spacing-lg);
    }

    .versoes-mobile__content__title p span {
        font-weight: 600;
        width: 100%;
        display: block;
    }

    .versoes__cta__box {
        width: 100%;
        color: var(--color-text-inverse);
        margin: var(--spacing-md) 0;
    }

    .versoes-mobile__cta__box {
        background-color: var(--color-background-gray);
        padding: var(--spacing-lg);
    }

    .versoes__cta__box h2 {
        line-height: 1.2;
        font-size: var(--font-size-lg);
    }

    /* ===== Benefícios Mobile ===== */
    .beneficios {
        padding: var(--spacing-lg) 0;
    }

    .beneficios h1 {
        line-height: 1.2;
        font-size: var(--font-size-xl);
    }

    .beneficios__cta_button {
        margin-bottom: var(--spacing-lg);
    }

    .beneficios__slider__container {
        margin: 0 -15px;
        padding: var(--spacing-md) 15px;
    }

    .beneficios__slider__item {
        padding: var(--spacing-md);
    }

    .beneficios__slider__item p {
        font-size: var(--font-size-sm);
        padding: var(--spacing-lg);
    }

    .swiper-button-prev {
        left: var(--spacing-sm);
    }

    .swiper-button-next {
        right: var(--spacing-sm);
    }

    /* ===== Depoimentos Mobile ===== */
    .depoimentos {
        flex-direction: var(--flex-column);
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .depoimentos__content__container {
        display: var(--flex-display) !important;
        flex-direction: var(--flex-column) !important;
        align-items: var(--align-center) !important;
        justify-content: var(--justify-center) !important;
        width: 100% !important;
    }

    .depoimentos__content__CTA {
        margin-bottom: var(--spacing-lg);
    }

    .depoimentos__content__CTA .mobile {
        flex-direction: column;
    }

    .depoimentos__content__CTA h1, 
    .formulario__content__text h1 {
        font-size: var(--font-size-xl);
        font-weight: 300;
    }

    .depoimentos__content__CTA p, 
    .formulario__content__text p {
        margin-top: var(--spacing-lg);
        font-size: var(--font-size-md);
    }

    .depoimentos__button__desktop {
        display: none;
    }

    .depoimentos__button__mobile {
        display: flex;
        justify-content: var(--justify-center);
        margin-top: var(--spacing-xl);
        width: 80%;
        text-align: center;
        padding: var(--spacing-sm) var(--spacing-lg);
    }

    .depoimentos__content__CTA,
    .depoimentos__slider {
        width: 100%;
    }

    .depoimentos__slider__container {
        width: 80%;
        max-width: 750px;
    }

    .depoimentos__content__slider__item {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    blockquote .depoimentos__content__slider__item {
        min-height: 245px;
    }

    .depoimentos__content__slider__item {
        min-height: 345px;
    }

    .swiper-button-prev,
    .swiper-rtl .swiper-button-next {
        left: 0 !important;
    }

    .swiper-button-next,
    .swiper-rtl .swiper-button-prev {
        right: 0 !important;
    }

    /* ===== Formulário Mobile ===== */
    .formulario {
        padding: var(--spacing-xl) var(--spacing-lg);
        scroll-margin-top: 80px;
    }

    .formulario__content__text p {
        width: 100%;
        margin-bottom: var(--spacing-lg);
    }

    .formulario__content__text h1 {
        margin-bottom: var(--spacing-lg);
        width: 100%;
    }

    .form__group--button {
        align-items: var(--align-start);
    }

    .formulario__content {
        flex-direction: var(--flex-column);
    }

    .formulario__content__text {
        width: 100%;
    }

    .formulario__content__form {
        width: 100%;
    }

    .form_button {
        width: 50% !important;
    }

    .form__group--row {
        flex-direction: var(--flex-column);
    }

    /* ===== Perguntas Frequentes Mobile ===== */
    .perguntas_frequentes__content h1 {
        font-size: var(--font-size-xl);
        line-height: 1.2;
        margin-bottom: var(--spacing-lg);
    }

    .faq-question {
        padding: var(--spacing-md);
    }

    .show-more-btn {
        padding: var(--spacing-sm) var(--spacing-md);
        width: 100%;
        font-size: 0.75rem;
    }

    .faq-question h2 {
        font-size: var(--font-size-sm);
    }

    .perguntas_frequentes {
        padding: var(--spacing-lg);
    }

    .perguntas_frequentes__content__grid {
        grid-template-columns: 1fr;
    }

    .perguntas_frequentes__content__grid__item:nth-child(n+7) {
        opacity: 0;
        transform: translateY(-10px);
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
        position: absolute;
        pointer-events: none;
    }

    .perguntas_frequentes__content__grid__item.show-all {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        position: relative;
        pointer-events: auto;
    }

    /* ===== Hero Footer Mobile ===== */
    .hero_footer {
        flex-direction: var(--flex-column);
        min-height: 300px;
        margin-top: var(--spacing-lg);
    }

    .hero_footer__mosaico__left {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        min-height: 200px;
        min-width: 0px;
    }

    .hero_footer__mosaico__right {
        width: 100%;
        min-height: 250px;
    }

    .hero_footer__mosaico__right__top__left,
    .hero_footer__mosaico__right__bottom__left {
        width: 55%;
    }

    .hero_footer__mosaico__right__top__right,
    .hero_footer__mosaico__right__bottom__right {
        width: 45%;
    }

    .hero_footer__mosaico__right__top__left h2 {
        font-size: 1.25rem;
        padding: 1.5rem;
        line-height: 1.2;
        width: 100%;
        font-weight: 300;
    }

    .hero_footer__button {
        font-size: 0.6rem;
    }

    .hero_footer__mosaico__right__top,
    .hero_footer__mosaico__right__top__left,
    .hero_footer__mosaico__right__top__right,
    .hero_footer__mosaico__right__top__right__1,
    .hero_footer__mosaico__right__top__right__2,
    .hero_footer__mosaico__right__top__right__3 {
        min-height: calc(300px * 0.65);
    }

    .hero_footer__mosaico__right__bottom,
    .hero_footer__mosaico__right__bottom__left,
    .hero_footer__mosaico__right__bottom__right,
    .hero_footer__mosaico__right__bottom__left__1,
    .hero_footer__mosaico__right__bottom__left__2,
    .hero_footer__mosaico__right__bottom__left__3 {
        min-height: calc(250px * 0.35);
    }

    .hero_footer__mosaico__right__bottom__right__logo {
        width: 80%;
    }

    .hero_footer__mosaico__right__top__right__3 {
        display: block;
    }

    /* ===== Footer Mobile ===== */
    footer {
        padding: var(--spacing-lg);
    }

    .footer__content,
    .footer__content__menu {
        flex-direction: var(--flex-column);
    }

    .footer__content {
        align-items: normal;
    }

    .footer__content__menu {
        gap: 0;
    }

    .footer__content__logo-contato-redes {
        margin-top: var(--spacing-lg);
    }

    /* ===== WhatsApp Float Button Mobile ===== */
    .whatsapp-float {
        display: flex;
    }

    /* ===== Toast Notification Mobile ===== */
    .toast-notification {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        text-align: center;
        justify-content: center;
        padding: 1rem;
    }

    .toast-notification__icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .toast-notification__message {
        font-size: 0.85rem;
        max-width: calc(100% - 60px); /* 40px do ícone + 20px de gap */
    }
}

/* ================================
   MODAL DE CONTATO
   ================================ */

.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}

.contact-modal.active {
    display: flex;
}

.contact-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.contact-modal__container {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.contact-modal__header {
    background: var(--color-primary);
    color: white;
    padding: 24px 30px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-modal__header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: white;
}

.contact-modal__close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.contact-modal__close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.contact-modal__form {
    padding: 30px;
}

.contact-modal__form-group {
    margin-bottom: 20px;
}

.contact-modal__form-group label {
    display: var(--flex-display);
    flex-direction: var(--flex-row);
    justify-content: var(--justify-start);
    align-items: var(--align-center);
    margin-bottom: 6px;
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.contact-modal__form-group input,
.contact-modal__form-group select,
.contact-modal__form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    background-color: #fff;
    box-sizing: border-box;
}

.contact-modal__form-group input:focus,
.contact-modal__form-group select:focus,
.contact-modal__form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 201, 0.1);
}

.contact-modal__form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-modal__checkbox {
    margin: 24px 0;
}

.contact-modal__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
}

.contact-modal__checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.contact-modal__checkbox-custom {
    position: relative;
    width: 22px;
    height: 22px;
    background-color: #fff;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    transition: all 0.2s;
    flex-shrink: 0;
    margin-top: 1px;
    display: block;
}

.contact-modal__checkbox-label input[type="checkbox"]:checked + .contact-modal__checkbox-custom {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.contact-modal__checkbox-label input[type="checkbox"]:checked + .contact-modal__checkbox-custom::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 35%;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(45deg);
}

.contact-modal__terms {
    margin-top: 8px;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
}

.contact-modal__terms a {
    color: var(--color-primary);
    text-decoration: underline;
}

.contact-modal__terms a:hover {
    color: #0000a3;
}

.contact-modal__submit {
    width: 100%;
    background-color: var(--color-secondary);
    color: var(--color-primary);
    border: none;
    padding: 0.50rem 1.75rem;
    border-radius: 8px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

.contact-modal__submit:hover {
    background-color: #f0f4ff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-modal__submit:active {
    transform: translateY(0);
}

/* Responsivo */
@media (max-width: 768px) {
    .contact-modal__container {
        width: 95%;
        margin: 20px;
    }

    .contact-modal__header {
        padding: 20px 24px;
    }

    .contact-modal__header h2 {
        font-size: 20px;
    }

    .contact-modal__form {
        padding: 24px;
    }

    .contact-modal__form-group {
        margin-bottom: 16px;
    }
}

/* Modal de Agenda */
.agenda-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2500;
    overflow-y: auto;
}

.agenda-modal.active {
    display: flex;
}

.agenda-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.agenda-modal__container {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: 2rem auto;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 2501;
    max-height: 90vh;
    overflow-y: auto;
}

.agenda-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid #E1E1ED;
}

.agenda-modal__header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
}

.agenda-modal__close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-primary);
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.agenda-modal__close:hover {
    background-color: rgba(14, 15, 204, 0.1);
}

.agenda-modal__content {
    padding: 2rem;
}

.agenda-modal__empretec-selection,
.agenda-modal__city-selection {
    margin-bottom: 2rem;
}

.agenda-modal__empretec-selection label,
.agenda-modal__city-selection label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.agenda-modal__empretec-selection select,
.agenda-modal__city-selection select {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #E1E1ED;
    border-radius: 8px;
    background-color: white;
    color: var(--color-primary);
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.agenda-modal__empretec-selection select:focus,
.agenda-modal__city-selection select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.agenda-modal__empretec-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.agenda-modal__empretec-logo img {
    max-width: 200px;
    height: auto;
}

.agenda-modal__saiba-mais {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.4rem 1.5rem;
    border: 2px solid var(--color-primary);
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-block;
}

.agenda-modal__saiba-mais:hover {
    background-color: var(--color-primary);
    color: white;
}

.agenda-modal__blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    max-width: 600px;
    margin: 0 auto;
    gap: 1.5rem 0;
    padding-bottom: 3rem;
    justify-items: center;
}

/* Cards das agendas no modal - copia EXATA do especificos.css */
.agenda-modal__blocks .formulario__content__agenda__blocks__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-width: 190px;
    color: var(--color-primary);
    padding: 1rem;
    border-radius: 30px;
    gap: 1rem;
    min-height: 220px;
}

/* REPLICAÇÃO EXATA do especificos.css para o modal */

/* Cores básicas para pares e ímpares */
#agenda-modal-blocks .formulario__content__agenda__blocks__item.block__even {
    background-color: var(--color-background-agenda-even);
}

#agenda-modal-blocks .formulario__content__agenda__blocks__item.block__odd {
    background-color: var(--color-background-agenda-odd);
}

/* RURAL - Cópia exata do especificos.css */
#agenda-modal-blocks .block__odd__rural, 
#agenda-modal-blocks .block__odd__rural p {
    background-color: var(--color-background-agenda-rural-odd) !important;
    color: var(--color-background-empretec-rural) !important;
}

#agenda-modal-blocks .block__even__rural, 
#agenda-modal-blocks .block__even__rural p {
    background-color: var(--color-background-agenda-rural-even) !important;
    color: var(--color-text-inverse) !important;
}

#agenda-modal-blocks .block__odd__rural button, 
#agenda-modal-blocks .block__even__rural button {
    background-color: var(--color-background-empretec-rural) !important;
    color: var(--color-text-inverse) !important;
}

/* STARTUP - Cópia exata do especificos.css */
#agenda-modal-blocks .block__odd__startup, 
#agenda-modal-blocks .block__odd__startup p {
    background-color: var(--color-background-agenda-startup-odd) !important;
    color: #000 !important;
}

#agenda-modal-blocks .block__even__startup, 
#agenda-modal-blocks .block__even__startup p {
    background-color: var(--color-background-agenda-startup-even) !important;
    color: #000 !important;
}

#agenda-modal-blocks .block__odd__startup button, 
#agenda-modal-blocks .block__even__startup button {
    background-color: var(--color-background-empretec-startup) !important;
    color: var(--color-text-inverse) !important;
}

/* ARENA - Cópia exata do especificos.css */
#agenda-modal-blocks .block__odd__arena, 
#agenda-modal-blocks .block__odd__arena p {
    background-color: var(--color-background-agenda-arena-odd) !important;
    color: #000 !important;
}

#agenda-modal-blocks .block__even__arena, 
#agenda-modal-blocks .block__even__arena p {
    background-color: var(--color-background-agenda-arena-even) !important;
    color: #000 !important;
}

#agenda-modal-blocks .block__odd__arena button, 
#agenda-modal-blocks .block__even__arena button {
    background-color: var(--color-background-empretec-arena) !important;
    color: var(--color-text-inverse) !important;
}

/* Estados selecionados dos cards no modal */
#agenda-modal-blocks .formulario__content__agenda__blocks__item.selected {
    border: 3px solid #000047;
    position: relative;
}

#agenda-modal-blocks .formulario__content__agenda__blocks__item.selected::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230000c9' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 10;
}

#agenda-modal-blocks .formulario__content__agenda__blocks__item.selected__rural {
    border: 3px solid #265a27 !important;
    position: relative;
}

#agenda-modal-blocks .formulario__content__agenda__blocks__item.selected__rural::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23387F3A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 10;
}

#agenda-modal-blocks .formulario__content__agenda__blocks__item.selected__startup {
    border: 3px solid #093d5a !important;
    position: relative;
}

#agenda-modal-blocks .formulario__content__agenda__blocks__item.selected__startup::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2340BBFF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 10;
}

#agenda-modal-blocks .formulario__content__agenda__blocks__item.selected__arena {
    border: 3px solid #410741 !important;
    position: relative;
}

#agenda-modal-blocks .formulario__content__agenda__blocks__item.selected__arena::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23801080' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 10;
}

/* Textos e botões - REPLICAÇÃO EXATA do especificos.css */
#agenda-modal-blocks .formulario__content__agenda__blocks__item h2 {
    font-size: 0.9rem;
    line-height: 1.25;
    width: 100%;
    margin-bottom: 0.5rem;
}

#agenda-modal-blocks .formulario__content__agenda__blocks__item p {
    font-size: 0.6rem;
    line-height: 1.5;
    font-weight: 500;
    color: #000;
}

#agenda-modal-blocks .formulario__content__agenda__blocks__item button {
    font-size: 0.65rem;
    line-height: 1.25;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
}

.agenda-modal__form-section {
    background-color: var(--color-background-light-gray);
    padding: 2rem;
    border-radius: 12px;
}

.agenda-modal__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.agenda-modal__form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.agenda-modal__form-row {
    flex-direction: row;
    gap: 1rem;
}

.agenda-modal__form-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.agenda-modal__form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
}

.agenda-modal__form-group input {
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #E1E1ED;
    border-radius: 8px;
    background-color: white;
    color: var(--color-primary);
    transition: border-color 0.3s ease;
}

.agenda-modal__form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.agenda-modal__form-group input::placeholder {
    color: #999;
    opacity: 0.7;
}

.agenda-modal__submit {
    align-self: center;
    min-width: 200px;
    padding: 1rem 2rem;
    font-weight: 600;
}

/* Default message styling in modal */
.agenda-modal__blocks .agenda__default-message {
    display: block !important;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.25;
    color: var(--color-primary);
    border-radius: 15px;
    border: 2px solid var(--color-primary);
    width: 100%;
    opacity: 1;
    padding: 2rem;
    text-align: center;
    background-color: white;
}

.agenda-modal__blocks .agenda__default-message .pure__link {
    color: var(--color-secondary);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.agenda-modal__blocks .agenda__default-message .pure__link:hover {
    color: var(--color-primary);
}

/* Cores específicas para cada Empretec no modal */
.agenda-modal__saiba-mais.rural {
    color: var(--color-background-empretec-rural);
    border-color: var(--color-background-empretec-rural);
}

.agenda-modal__saiba-mais.rural:hover {
    background-color: var(--color-background-empretec-rural);
    color: white;
}

.agenda-modal__saiba-mais.startup {
    color: var(--color-background-empretec-startup);
    border-color: var(--color-background-empretec-startup);
}

.agenda-modal__saiba-mais.startup:hover {
    background-color: var(--color-background-empretec-startup);
    color: white;
}

.agenda-modal__saiba-mais.arena {
    color: var(--color-background-empretec-arena);
    border-color: var(--color-background-empretec-arena);
}

.agenda-modal__saiba-mais.arena:hover {
    background-color: var(--color-background-empretec-arena);
    color: white;
}

@media (max-width: 768px) {
    .agenda-modal__container {
        width: 95%;
        margin: 1rem auto;
        max-height: 95vh;
    }

    .agenda-modal__header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }

    .agenda-modal__header h2 {
        font-size: 1.5rem;
    }

    .agenda-modal__content {
        padding: 1.5rem;
    }

    .agenda-modal__empretec-info {
        padding: 1rem;
    }

    .agenda-modal__empretec-logo img {
        max-width: 150px;
    }

    .agenda-modal__blocks {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 1rem;
    }
    
    .agenda-modal__blocks .formulario__content__agenda__blocks__item {
        max-width: 100%;
        width: 100%;
        padding: 1.5rem 1.5rem;
        min-height: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .agenda-modal__blocks .formulario__content__agenda__blocks__item h2 {
        font-size: 1.25rem;
    }
    
    .agenda-modal__blocks .formulario__content__agenda__blocks__item p {
        font-size: 0.8rem;
    }

    .agenda-modal__blocks .agenda__select__button {
        align-self: stretch;
        text-align: center;
    }

    .agenda-modal__form-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .agenda-modal__form-section {
        padding: 1.5rem;
    }

    .agenda-modal__submit {
        min-width: auto;
        width: 100%;
    }
}