/* ================ GLOBAL STYLES ================ */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    /* Melhora a legibilidade do texto */
}

/* ================ GLOBAL COLORS ================ */
:root {
    --cor-principal: #FF7B00;
    --cor-branca: white;
    --cor-preta: black;
    --cor-fundo: black;
    --cor-Clogo: #373435;
    --light: #FDFDFD;
}

/*-------------------------------- SECTION (HERO) --------------------*/
/*-------------------------------- SECTION (HERO) --------------------*/
/*-------------------------------- SECTION (HERO) --------------------*/
/*-------------------------------- SECTION (HERO) --------------------*/

.hero-section {
    margin-top: 140px;
    min-height: 80vh;
    background:
        linear-gradient(90deg,
            rgb(0, 0, 0) 0%,
            rgba(0, 0, 0, 0.7) 20%,
            rgba(0, 0, 0, 0.7) 50%,
            rgba(0, 0, 0, 0.7) 80%,
            rgba(0, 0, 0) 100%),
        url(/assets/img/01.jpg) top center / cover fixed no-repeat;
}


.content-wrapper {
    color: var(--cor-branca);
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 2.5rem 0;
}

.button-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: var(--cor-principal);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.button-container {
    gap: 20px;
}

.demo-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--cor-branca);
    color: var(--cor-preta);
    border: 2px solid var(--cor-branca);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-button:hover {
    background-color: var(--cor-branca);
    border-color: var(--cor-branca);
    color: var(--cor-principal);
    transform: translateY(-2px);
    box-shadow: none;
}

.demo-button svg {
    transition: transform 0.3s ease;
}

.demo-button:hover svg {
    transform: translateX(3px);
}

/*---------------------------*/
.categories-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.category-card {
    width: 480px;
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: var(--cor-branca);
    transition: all 0.4s ease;
}

.category-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-image-container {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
}

.category-card:hover .category-image {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.category-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--cor-principal);
    transition: width 0.3s ease;
}

.category-card:hover h3::after {
    width: 40px;
}

.card-description {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.5;
    margin-top: 0.5rem;
}



/* Responsividade */

@media (max-width: 1850px) {
    .content-wrapper {
    padding: 1rem 0;
}
}

/* Responsividade para a hero section */
@media (max-width: 1200px) {
    .content-wrapper {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        margin-top: 120px;
        background:
            linear-gradient(90deg,
                rgb(0, 0, 0) 0%,
                rgba(0, 0, 0, 0.6) 20%,
                rgba(0, 0, 0, 0.4) 50%,
                rgba(0, 0, 0, 0.6) 80%,
                rgba(0, 0, 0) 100%),
            url(/assets/img/01.jpg) top center / cover fixed no-repeat;
    }

    h1 br {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .categories-container {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .category-card {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: 100px;
        min-height: 80vh;
        background:
            linear-gradient(90deg,
                rgb(0, 0, 0) 0%,
                rgba(0, 0, 0, 0.7) 20%,
                rgba(0, 0, 0, 0.5) 50%,
                rgba(0, 0, 0, 0.7) 80%,
                rgba(0, 0, 0) 100%),
            url(/assets/img/01.jpg) top center / cover fixed no-repeat;
    }

    .content-wrapper {
        padding: 1.5rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .button-container {
        margin-top: 30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .demo-button {
        width: 100%;
        justify-content: center;
    }

    .categories-container {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .card-content {
        padding: 1.2rem;
    }

    .category-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        margin-top: 80px;
        min-height: 70vh;
        background:
            linear-gradient(90deg,
                rgb(0, 0, 0) 0%,
                rgba(0, 0, 0, 0.8) 20%,
                rgba(0, 0, 0, 0.6) 50%,
                rgba(0, 0, 0, 0.8) 80%,
                rgba(0, 0, 0) 100%),
            url(/assets/img/01.jpg) top center / cover fixed no-repeat;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .demo-button {
        height: 45px;
        font-size: 1rem;
        padding: 0.5rem 1.5rem;
    }

    .categories-container {
        margin-top: 1rem;
    }

    .category-card {
        width: 100%;
    }

    .card-image-container {
        height: 130px;
    }

    .card-content {
        padding: 1rem;
    }

    .category-card h3 {
        font-size: 1.1rem;
    }

    .card-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 450px) {
    .hero-title {
        font-size: 1.6rem;
        margin-top: 50px;
    }



    .hero-subtitle {
        font-size: 0.95rem;
    }

    .demo-button {
        font-size: 0.95rem;
    }

    .card-image-container {
        height: 120px;
    }

    .category-card h3 {
        font-size: 1rem;
    }

    .card-description {
        font-size: 0.85rem;
    }
}

/* Ajustes para orientação landscape em mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
        margin-top: 100px;
    }

    .content-wrapper {
        padding: 1rem 0;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .categories-container {
        margin-top: 1rem;
    }
}

/* Ajustes para tablets em modo paisagem */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .hero-section {
        min-height: 80vh;
    }

    .categories-container {
        gap: 1rem;
    }

    .category-card {
        width: calc(50% - 1rem);
    }
}


/*-------------------------------- SECTION (TECNOLOGIA E EXPERIÊNCIA) --------------------*/
/*-------------------------------- SECTION (TECNOLOGIA E EXPERIÊNCIA) --------------------*/
/*-------------------------------- SECTION (TECNOLOGIA E EXPERIÊNCIA) --------------------*/
/*-------------------------------- SECTION (TECNOLOGIA E EXPERIÊNCIA) --------------------*/

.about-section {
    padding: 5rem 0;
    color: var(--cor-preta);
}

.about-container {
    display: flex;
    max-width: 1700px;
    margin: 0 auto;
    gap: 3rem;
    align-items: center;
    padding: 0 2rem;
}

/* CONTEÚDO À ESQUERDA */
.about-content {
    flex: 1;
}

.two-title {
    position: relative;
    padding-bottom: 20px;
    color: var(--cor-preta);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.two-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    /* Alterado de 'right: 0' para 'left: 0' */
    width: 100px;
    height: 4px;
    background: var(--cor-principal);
}

.section-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 123, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 1rem;
    font-weight: 500;
}

/* FOTO À DIREITA (GARANTIDO) */
.about-image-container {
    flex: 1;
    min-height: 500px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.3) 0%, transparent 30%);
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
    .section-title-two-title h2::after {
        text-align: center;
        color: red;
    }

    .about-container {
        flex-direction: column;
    }

    .about-image-container {
        width: 100%;
        min-height: 400px;
        order: 2;
        /* Foto vai para baixo em mobile */
    }

    .about-content {
        order: 1;
        /* Texto vai para cima em mobile */
    }

    .four-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .image-overlay {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
    }
}

@media (max-width: 768px) {
    .four-title {
        font-size: 2rem;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-text p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 3rem 0;
    }

    .four-title {
        font-size: 1.8rem;
    }

    .section-text p {
        font-size: 1rem;
    }
}

/*-------------------------------- SECTION (AUTOMATION) --------------------*/
/*-------------------------------- SECTION (AUTOMATION) --------------------*/
/*-------------------------------- SECTION (AUTOMATION) --------------------*/
/*-------------------------------- SECTION (AUTOMATION) --------------------*/

.fnd {
    width: 100%;
    background-color: var(--light);
}

.automation-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* TÍTULO PRINCIPAL CENTRALIZADO */
.section-main-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-main-title h1 {
    font-size: 2.8rem;
    color: var(--cor-preta);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-main-title h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--cor-principal);
}

/* CONTAINERS DE CONTEÚDO */
.content-container {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.content-container.reverse {
    flex-direction: row-reverse;
}

/* ÁREA DE TEXTO */
.text-content {
    flex: 1;
}

.text-content h2 {
    font-size: 2rem;
    color: var(--cor-preta);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--cor-texto);
}

/* ÁREA DE IMAGEM */
.image-container {
    flex: 1;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* BOTÃO */
.more-button {
    display: inline-block;
    background: var(--light);
    color: var(--cor-principal);
    border: 2px solid var(--cor-principal);
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.more-button:hover {
    background: var(--cor-principal);
    color: var(--light);
    transform: translateY(-2px);
    transition: 0.5s;

}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .section-main-title h1 {
        font-size: 2.2rem;
    }

    .content-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .automation-section {
        padding: 40px 15px;
    }

    .content-container,
    .content-container.reverse {
        flex-direction: column;
    }

    .text-content,
    .image-container {
        width: 100%;
    }

    .section-main-title h1 {
        font-size: 1.8rem;
    }

    .text-content h2 {
        font-size: 1.5rem;
    }
}



/*-------------------------------- SECTION (COURSES) --------------------*/
/*-------------------------------- SECTION (COURSES) --------------------*/
/*-------------------------------- SECTION (COURSES) --------------------*/
/*-------------------------------- SECTION (COURSES) --------------------*/

.four {
    margin-top: 90px;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    color: #333;
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
}

.four-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.four-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--cor-preta);
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.four-txt {
    text-align: center;
}

.four-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--cor-principal);
}

.four-highlight {
    color: var(--cor-principal);
    font-weight: 800;
}

.four-platform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 40px auto;
    background: var(--cor-preta);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    color: white;
}

.four-devices {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.four-device-icons {
    position: relative;
    width: 100%;
    height: 100%;
}

.four-device-icon {
    position: absolute;
    width: 32px;
    height: 32px;
    fill: var(--cor-principal);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
    top: 0;
    left: 0;
}

@keyframes fourDeviceAnimation {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    10% {
        opacity: 1;
        transform: scale(1.1);
    }

    30% {
        opacity: 1;
        transform: scale(1.1);
    }

    40% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}

.four-device-icons svg:nth-child(1) {
    animation: fourDeviceAnimation 6s infinite;
}

.four-device-icons svg:nth-child(2) {
    animation: fourDeviceAnimation 6s infinite 2s;
}

.four-device-icons svg:nth-child(3) {
    animation: fourDeviceAnimation 6s infinite 4s;
}

.four-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.four-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    z-index: 1;
}

.four-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.four-badge {
    background: var(--cor-principal);
    color: var(--cor-branca);
    margin-left: auto;
    margin-top: 5px;
    margin-right: -30px;
    width: 120px;
    padding: 5px 15px;
    border-radius: 20px 0 0 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.four-card-header {
    padding: 20px;
    color: white;
    background: var(--cor-preta);
    transition: background 0.5s ease;
    text-align: center;
}

.four-card-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.four-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: left;
    /* Apenas adicione esta linha */
}

.four-card-content {
    padding: 25px;
}

.four-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.four-card-item {
    padding: 10px 0;
    position: relative;
    padding-left: 25px;
    color: #555;
}

.four-card-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--cor-principal);
    font-weight: bold;
}

.four-card-result {
    background: rgba(255, 123, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    border-left: 3px solid var(--cor-principal);
    color: #333;
}

.four-card-footer {
    padding: 25px;
    bottom: 0;
}

.four-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--cor-principal);
    border: 2px solid var(--cor-principal);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.four-button:hover {
    transform: translateY(-2px);
    transition: 0.5s;
    color: var(--cor-principal);
    border: 2px solid var(--cor-principal);
    background: transparent;
}

.four-button svg {
    width: 18px;
    height: 18px;
    fill: white;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.four-button:hover svg {
    transform: translateX(5px);
    fill: var(--cor-principal);
}

.four-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px auto;
    gap: 30px;
    padding: 20px;
    max-width: 800px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.four-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--cor-preta);
}

.four-benefit-item svg {
    width: 20px;
    height: 20px;
    fill: var(--cor-principal);
}

.four-autocad-icon {
    background-image: url(/assets/img/curso\ \(3\).png);
}

.four-revit-icon {
    background-image: url(/assets/img/curso\ \(2\).png);
}

.four-revit-avancado-icon {
    background-image: url(/assets/img/curso\ \(1\).png);
}


/* Responsividade */
@media (max-width: 1024px) {
    .four-title {
        font-size: 2.4rem;
    }

    .four-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .four-benefits {
        gap: 20px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .four-title {
        font-size: 2rem;
    }

    .four-platform {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .four-card-title {
        font-size: 1.3rem;
    }

    .four-benefits {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .four-title {
        font-size: 1.8rem;
        padding-bottom: 15px;
    }

    .four-title::after {
        width: 80px;
        height: 3px;
    }

    .four-platform {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        text-align: center;
    }

    .four-grid {
        grid-template-columns: 1fr;
    }

    .four-badge {
        width: 100px;
        font-size: 0.7rem;
        margin-right: -20px;
    }

    .four-benefit-item {
        font-size: 0.9rem;
    }
}

/*-------------------------------- SECTION (CONTACT FORM) --------------------*/
/*-------------------------------- SECTION (CONTACT FORM) --------------------*/
/*-------------------------------- SECTION (CONTACT FORM) --------------------*/
/*-------------------------------- SECTION (CONTACT FORM) --------------------*/

.seven {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
    padding: 2rem;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 123, 0, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(255, 123, 0, 0.1) 0%, transparent 20%);
}

.seven-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.seven-image {
    flex: 1;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent),
        url('/assets/img/09.jpg') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    min-height: 400px;
    position: relative;
}

.seven-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.7) 100%);
}

.seven-image-content {
    color: white;
    position: relative;
    z-index: 2;
}

.seven-image-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.seven-image-text {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 80%;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.seven-form {
    flex: 1;
    padding: 3rem;
    background: white;
    animation: seven-fadeInUp 0.8s ease-out forwards;
}

.seven-form-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--cor-preta);
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--cor-principal);
    width: fit-content;
}

.seven-form-group {
    margin-bottom: 1.8rem;
    position: relative;
}

.seven-form-group input,
.seven-form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e0e6ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8fafc;
    color: #2c3e50;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.seven-form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.seven-form-group input:focus,
.seven-form-group textarea:focus {
    border-color: var(--cor-principal);
    box-shadow: 0 0 0 3px rgba(255, 123, 0, 0.2);
    outline: none;
    background-color: white;
}

.seven-form-group input::placeholder,
.seven-form-group textarea::placeholder {
    color: #a0aec0;
}

.seven-form-button {
    width: 100%;
    padding: 15px;
    background: transparent;
    color: var(--cor-principal);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--cor-principal);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.seven-form-button:hover {
    transition: 0.5s;
    background: var(--cor-principal);
    color: white;
    transform: none;
}

.seven-error-message {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    height: 0;
    font-family: "Poppins", sans-serif;
}

.seven-form-group.invalid .seven-error-message {
    opacity: 1;
    transform: translateY(0);
    height: auto;
}

.seven-form-group.invalid input,
.seven-form-group.invalid textarea {
    border-color: #e74c3c;
}

.seven-form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    font-family: "Poppins", sans-serif;
}

.seven-form-message.success {
    background-color: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    opacity: 1;
    transform: translateY(0);
}

.seven-form-message.error {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    opacity: 1;
    transform: translateY(0);
}

@keyframes seven-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos adicionais para as notificações */
.notification {
    position: fixed;
    top: 20px;
    right: 40%;
    padding: 15px 25px;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(120%);
    transition: transform 0.4s ease-out;
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background-color: var(--cor-principal);
    border-left: 4px solid var(--cor-principal);
}

.notification.error {
    background-color: #e74c3c;
    border-left: 4px solid #c0392b;
}

.notification.warning {
    background-color: #f39c12;
    border-left: 4px solid #d35400;
}

/* Responsividade */
@media (max-width: 1024px) {
    .seven {
        padding: 1.5rem;
    }

    .seven-form {
        padding: 2.5rem;
    }

    .seven-form-title {
        font-size: 2rem;
    }

    .seven-image-title {
        font-size: 1.8rem;
    }

    .seven-image-text {
        font-size: 1rem;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .contatos {
        text-decoration: none;
        color: white;
    }

    .seven-container {
        flex-direction: column;
        max-width: 600px;
    }

    .seven-image {
        min-height: 250px;
        order: -1;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .seven-form {
        padding: 2rem;
    }

    .seven-form-title {
        font-size: 1.8rem;
        text-align: center;
        margin: 0 auto 2rem auto;
    }

    .seven-image-text {
        max-width: 100%;
        font-size: 0.95rem;
    }

    .seven-image-content {
        padding-top: 2rem;
    }
}

@media (max-width: 576px) {
    .seven {
        padding: 1rem;
        min-height: auto;
    }

    .seven-container {
        border-radius: 15px;
        margin: 1rem 0;
    }

    .seven-image {
        min-height: 200px;
        padding: 1.5rem;
    }

    .seven-form {
        padding: 1.5rem;
    }

    .seven-form-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .seven-form-group {
        margin-bottom: 1.5rem;
    }

    .seven-form-group input,
    .seven-form-group textarea {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }

    .seven-form-group textarea {
        min-height: 120px;
    }

    .seven-image-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .seven-form-button {
        padding: 12px;
        font-size: 1rem;
    }
}

@media (max-width: 375px) {
    .seven {
        padding: 0.5rem;
    }

    .seven-container {
        border-radius: 12px;
    }

    .seven-image {
        min-height: 180px;
        padding: 1rem;
    }

    .seven-form {
        padding: 1rem;
    }

    .seven-form-title {
        font-size: 1.3rem;
    }

    .seven-form-group input,
    .seven-form-group textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .seven-image-title {
        font-size: 1.2rem;
    }

    .seven-image-text {
        font-size: 0.85rem;
    }

    .seven-form-button {
        padding: 10px;
        font-size: 0.95rem;
    }
}

@media (min-width: 1921px) {
    .content-wrapper {
        padding: 4.5rem 0;
    }
}

@media (min-width: 2200px) {
    .content-wrapper {
        padding: 9rem 0;
    }

    .categories-container {
        margin-top: -80px;
    }
}