:root {
    --verde: #65B307;
    --verde-escuro: #3B6603;
    --marrom: #592309;

    --bg: #ffffff;
    --text: #222;
}

html {
    scroll-behavior: smooth;
}

body.dark {
    --bg: #121212;
    --text: #f1f1f1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--text);
    transition: 0.3s;
}

.top-bar {
    background: linear-gradient(90deg, var(--verde-escuro), var(--verde));
    color: white;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 8px 50px;
    font-size: 0.85rem;
}

.top-links {
    display: flex;
    gap: 20px;
}

.top-links a {
    position: relative;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 4px 8px;
}

.desktop-header {
    position: relative;
    z-index: 1000;
}

.dropdown-menu {
    z-index: 2000;
}

.top-links a::before,
.top-links a::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 50%;
    top: 25%;
    background: rgba(255,255,255,0.7);

    opacity: 0;
    transition: 0.25s;
}

.top-links a::before { left: 0; transform: translateY(5px); }
.top-links a::after { right: 0; transform: translateY(-5px); }

.top-links a:hover::before,
.top-links a:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.socials a {
    display: inline-block;
}

.socials img {
    width: 22px;
    transition: 0.3s;
}

.socials a:hover img {
    transform: scale(1.2) translateY(-3px);
    filter: drop-shadow(0 0 6px var(--verde));
}

.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 15px 50px;
    background: var(--bg);

    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo {
    height: 50px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    position: relative;
}

.nav a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--verde);
    left: 0;
    bottom: -6px;
    transition: 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

.nav a.active {
    color: var(--verde);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 130%;
    left: 0;

    background: var(--bg);
    border-radius: 10px;

    padding: 10px;
    min-width: 180px;

    display: flex;
    flex-direction: column;
    gap: 8px;

    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;

    box-shadow: 0 10px 25px rgba(0,0,0,0.1);

    transition: 0.3s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu a {
    padding: 8px;
    border-radius: 6px;
}

.dropdown-menu a:hover {
    background: rgba(0,0,0,0.05);
}

.right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.socials {
    display: flex;
    gap: 10px;
}

.socials img {
    width: 22px;
    cursor: pointer;
    transition: 0.25s;
}

.socials img:hover {
    transform: translateY(-2px) scale(1.1);
}

.theme-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;

    background: rgba(0,0,0,0.05);
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    transition: 0.3s;
}

.theme-btn:hover {
    transform: scale(1.05);
}

.theme-btn .icon {
    position: absolute;
    width: 20px;
    height: 20px;

    stroke: var(--text);
    fill: none;
    stroke-width: 2;

    transition: 0.4s ease;
}

.sun { opacity: 1; transform: rotate(0); }
.moon { opacity: 0; transform: rotate(90deg) scale(0.5); }

body.dark .sun {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

body.dark .moon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.mobile-header {
    display: none;
    justify-content: space-between;
    align-items: center;

    padding: 12px 16px;
    background: var(--bg);

    position: sticky;
    top: 0;
    z-index: 1000;

    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    font-size: 26px;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 270px;
    height: 100%;
    background: var(--bg);
    padding: 90px 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.35s ease;
    z-index: 999;
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(8px);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text);
    font-size: 1rem;

    padding: 10px 12px;
    border-radius: 8px;

    transition: 0.25s;
}

.mobile-menu a:hover {
    background: rgba(0,0,0,0.05);
    transform: translateX(5px);
}

body.dark .mobile-menu a:hover {
    background: rgba(255,255,255,0.05);
}

.mobile-menu hr {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin: 10px 0;
}

body.dark .mobile-menu hr {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.scroll-banner {
    margin-top: 10px;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #65B307, #3B6603);
    padding: 12px 0;
}

.scroll-text {
    display: inline-block;
    white-space: nowrap;
    color: white;
    font-size: 0.95rem;

    padding-left: 100%;
    animation: moveText 15s linear infinite;
}

.scroll-text span {
    color: #8cff00b4;
    font-weight: bold;
    text-shadow: 0 0 6px #8ccf39d5;
}

@keyframes moveText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@media (max-width: 900px) {

    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: flex;
    }

    .top-bar {
        display: none;
    }
}

.carousel {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.carousel-container {
    width: 85%; 
    max-width: 1200px;
    overflow: hidden;
    border-radius: 14px;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.slide {
    width: 100%;
    flex-shrink: 0;
    height: 600px;
    object-fit: cover;
}

.btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    border-radius: 50%;
    border: none;

    background: rgba(0,0,0,0.4);
    color: white;

    font-size: 22px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    backdrop-filter: blur(6px);
    transition: 0.3s;
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

.btn:hover {
    background: var(--verde);
    transform: translateY(-50%) scale(1.1);
}

.carousel-container:hover .btn {
    opacity: 1;
}

.btn {
    opacity: 0.7;
}

@media (max-width: 900px) {
    .carousel-container {
        width: 95%;
    }

    .slide {
        height: 220px;
    }

    .btn {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}

.desktop-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.top-bar {
    transition: transform 0.3s ease;
}

.main-header {
    transition: transform 0.3s ease;
}

.desktop-header.hide-top .top-bar {
    transform: translateY(-100%);
}

.desktop-header.hide-top .main-header {
    transform: translateY(-40px);
}

body {
    padding-top: 110px;
}

@media (max-width: 900px) {
    body {
        padding-top: 0;
    }

    .scroll-banner {
        margin-top: 0;
    }
}

.courses {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.courses-header {
    text-align: center;
    margin-bottom: 35px;
}

.courses-header h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.courses-header p {
    color: gray;
    font-size: 0.9rem;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.categories button {
    border: none;
    padding: 8px 16px;
    border-radius: 20px;

    background: rgba(0,0,0,0.05);
    color: var(--text);

    cursor: pointer;
    transition: 0.3s;

    backdrop-filter: blur(5px);
}

.categories button:hover {
    background: var(--verde);
    color: white;
}

body.dark .categories button {
    background: rgba(255,255,255,0.08);
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.1);
}

body.dark .categories button:hover {
    background: linear-gradient(90deg, var(--verde), var(--verde-escuro));
    color: white;
}

.categories button.active {
    background: linear-gradient(90deg, var(--verde), var(--verde-escuro));
    color: white;
    box-shadow: 0 4px 15px rgba(101,179,7,0.4);
}

.course-card {
    border-radius: 16px;
    overflow: hidden;

    background: white; 

    margin: 10px; 

    border: 1px solid rgba(0,0,0,0.06);

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

    transition: 0.4s;
}

.course-card.hide {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
    position: absolute;
}

.courses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    position: relative;
}

.course-card {
    border-radius: 16px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    border: 2px solid #66b3077a;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

body.dark .course-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);

    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.course-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.img-box {
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.4s;
}

.course-card:hover img {
    transform: scale(1.08);
}


.course-info {
    padding: 18px;
    text-align: center;
}

.course-info h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.btn-main {
    display: block;
    width: 100%;
    padding: 10px;
    background: linear-gradient(90deg, var(--verde), var(--verde-escuro));
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-main:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 20px rgba(101,179,7,0.4);
}

@media (min-width: 768px) {
    .courses-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .img-box img {
        height: 220px;
    }
}

.course-card.extra {
    display: none;
}

.course-card.show {
    display: block;
}

.more-courses {
    text-align: center;
    margin-top: 40px;
}

.btn-more {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    background: transparent;
    color: var(--verde);
    border: 2px solid var(--verde);
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.btn-more::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--verde), var(--verde-escuro));
    transform: translateX(-100%);
    transition: 0.4s;
    z-index: -1; 
}

.btn-more:hover::before {
    transform: translateX(0);
}

.btn-more:hover {
    color: white;
}


/* SOBRE A ESCOLA */

.about-school {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 150px;
    max-width: 1100px;
    width: 100%;
}


.about-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.4);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover,
.next:hover {
    background: var(--verde);
    transform: translateY(-50%) scale(1.1);
}

.about-text {
    max-width: 600px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text);
}

.about-text p {
    margin-bottom: 14px;
    color: #888;
    line-height: 1.6;
}

@media (max-width: 900px) {

    .slide img {
    width: 100%;
    height: auto; 
    object-fit: contain;
    }



    .about-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .about-slider {
    width: 100%;
    max-width: 350px;
    height: auto;
    }

    .about-text {
        max-width: 100%;
    } 
}

/*FEEDBACKS */
.feedbacks {
    padding: 70px 20px;
    max-width: 1200px;
    margin: auto;
}

.feedback-header {
    text-align: center;
    margin-bottom: 40px;
}

.feedback-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.feedback-header p {
    color: gray;
    font-size: 0.9rem;
}

.feedback-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.feedback-card {
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.feedback-card:hover {
    transform: translateY(-8px);
}

.avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.feedback-text {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--text);
}

.feedback-card h3 {
    font-size: 1rem;
}

.feedback-card span {
    font-size: 0.8rem;
    color: gray;
}

body.dark .feedback-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

@media (min-width: 768px) {
    .feedback-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* FAQ */
.faq {
    padding: 80px 20px;
    max-width: 900px;
    margin: auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 2.2rem;
}

.faq-header p {
    color: gray;
    font-size: 0.9rem;
}

.faq-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.3s;
}

.faq-item:hover {
    transform: translateX(6px);
    border: 1px solid rgba(101,179,7,0.4);
}

.faq-question {
    padding: 18px 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    cursor: pointer;
}

.faq-question span {
    font-size: 0.95rem;
}

.icon {
    width: 18px;
    height: 18px;
    position: relative;
}

.icon::before,
.icon::after {
    content: "";
    position: absolute;
    background: var(--verde);
    transition: 0.3s;
}

.icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
}

.icon::after {
    height: 100%;
    width: 2px;
    left: 50%;
    top: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;

    padding: 0 20px;
    color: gray;
    font-size: 0.9rem;

    transition: 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 150px;
    padding-bottom: 15px;
}

.faq-item.active .icon::after {
    transform: scaleY(0);
}

body.dark .faq-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

body.dark .faq-item:hover {
    border: 1px solid rgba(101,179,7,0.6);
}

/* FOOTER */
.footer {
    margin-top: 80px;
    background: linear-gradient(135deg, black, #172701);
    color: white;
}

.footer-container {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
}

.footer-brand img {
    width: 160px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: #ccc;
}

.footer h3 {
    margin-bottom: 12px;
    font-size: 1rem;

    color: var(--verde);
}

.footer-contact p {
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: #ccc;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #ccc;
    font-size: 0.85rem;

    position: relative;
    width: fit-content;

    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--verde);
}

.footer-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--verde);
    left: 0;
    bottom: -2px;
    transition: 0.3s;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-container {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    font-size: 0.75rem;
    color: #aaa;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-contact .icon {
    width: 18px;
    height: 18px;
    object-fit: contain;

    filter: brightness(0) invert(1);
}

.footer-contact a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

.footer-contact a:hover {
    color: var(--verde);
}

@media (max-width: 768px) {

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer {
        text-align: center;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-contact p {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-links a {
        text-align: center;
        width: 100%;
    }

}


.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 60px;
    height: 60px;

    background: #25D366;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 25px rgba(0,0,0,0.2);

    z-index: 999;
    cursor: pointer;

    transition: 0.3s;
}

.whatsapp-btn img {
    width: 30px;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn::before {
    content: "";
    position: absolute;

    width: 100%;
    height: 100%;

    border-radius: 50%;
    background: rgba(37, 211, 102, 0.6);

    animation: pulse 1.5s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

#loader {
    position: fixed;
    inset: 0;

    background: var(--bg);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    z-index: 99999;

    transition: 0.5s ease;
}

#loader.hide {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;

    border: 4px solid rgba(0,0,0,0.1);
    border-top: 4px solid var(--verde);

    border-radius: 50%;

    animation: spin 1s linear infinite;
}

#loader p {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text);
}


@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999;
}
.modal-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


.modal-border {
    border-radius: 20px;
    padding: 2px;

    background: linear-gradient(
        120deg,
        #65B307,
        #3B6603,
        #65B307,
        #a4ff2f
    );

    background-size: 300% 300%;
    animation: borderMove 6s linear infinite;
}

@keyframes borderMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}


.modal {
    border-radius: 18px;
    overflow: hidden;
    background: transparent;
}

.modal-box::before {
    content: "";
    position: absolute;
    inset: -3px; 

    border-radius: 22px;

    background: linear-gradient(
        120deg,
        #65B307,
        #3B6603,
        #a4ff2f,
        #65B307
    );

    background-size: 300% 300%;
    animation: borderMove 5s linear infinite;

    z-index: -1;
}

@keyframes borderMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}


.modal-box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 25px 70px rgba(0,0,0,0.25);
    animation: modalEnter 0.4s ease;
}

@keyframes modalEnter {
    from {
        transform: translateY(40px) scale(0.97);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-banner {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.modal-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.modal-banner:hover img {
    transform: scale(1.05);
}

.modal-content {
    padding: 25px;
    background: #f9f9f9;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.8rem;
    color: #444;
    margin-bottom: 5px;
}

.input-group input {
    padding: 11px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.1);
    background: white;
    transition: 0.25s;
}

.input-group input:focus {
    outline: none;
    border-color: #65B307;

    box-shadow: 0 0 10px rgba(101,179,7,0.3);
}

.modal-footer {
    margin-top: 18px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-close {
    background: #e0e0e0;
    border: none;
    padding: 10px 18px;
    border-radius: 25px;
    color: #333;
    cursor: pointer;
    transition: 0.25s;
}

.btn-close:hover {
    background: #d5d5d5;
}

.btn-send {
    background: linear-gradient(135deg, #65B307, #3B6603);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

.btn-send:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(101,179,7,0.5);
}

@media (max-width: 768px) {

    .modal-box {
        max-width: 95%;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .modal-banner {
        height: 200px;
    }

    .modal-footer {
        flex-direction: column;
    }

    .btn-close,
    .btn-send {
        width: 100%;
    }
}