:root {
	scroll-behavior: smooth;
    --primary-color: #2a2a2a;
    --background-color: #f2edeb;
    --accent-color: #d9a491;
    --header-blur-color: rgba(177,167,162,0.51);
    --star-color: #f4c542;
}

body {
    font-family: 'Noto Sans', sans-serif;
    background-color: #FDFDFD;
    font-weight: 200;
    margin: auto;
    border: 1px solid rgba(200, 200, 200, 0.2); /* Borda cinza clara */
    max-width: 1500px;
}

section {
    background-color: var(--background-color);
}

.navbar {
    padding: 1.50rem 0;
    background-color: var(--background-color) !important;
}

.navbar-brand img {
    width: 18rem;
}

.nav-link {
    color: var(--primary-color) !important;
    font-size: 1rem;
    font-weight: 400;
}

.btn-contrate {
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 1.875rem;
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
}

.header {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.header .carousel-inner img {
    height: 100vh;
    object-fit: cover;
}

.header-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-75%, -30%) !important;
    backdrop-filter: blur(5px);
    background-color: var(--header-blur-color);
    padding: 3.2rem;
    border-radius: 0.9375rem;
    text-align: left;
    width: 55%;
    color: #fff;
}

.header-text h1 {
    font-family: 'Italiana', serif;
    font-size: 3rem;
}

.header-text p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.5rem;
}

.col-padding {
    padding: 5rem 5rem;
    margin: auto;
}

.add-padding {
    padding: 5rem;
}

.section-title {
    font-family: 'Italiana', serif;
    font-size: 3rem;
    color: var(--primary-color);
}

section p {
    font-size: 1.3rem;
    margin-top: 1rem;
    margin-bottom: 1.8rem;
}

.section-subtitle {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2.5rem;
}

.service-card, .testimonial-card {
    background-color: #ffffff;
    border: none;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.service-card img {
    display: block;
    margin: auto;
    width: 50%;
    height: auto;
}

.card-text {
    font-size: 1.20rem;
    margin: 1rem;
	padding-bottom: 10px;
}

.testimonial-card img {
    display: block;
    margin: auto;
    height: 25vh;
    padding-top: 3rem;
}

.testimonial-text {
    padding: 1.25rem 3rem;
}

.testimonial-card {
    margin: 2rem;
    padding: 0 5rem 2rem 5rem;
}

.testimonial-text h3 {
    font-family: 'Italiana', serif;
    font-size: 2rem;
    color: var(--primary-color);
}

.stars {
    font-size: 1.25rem;
    color: var(--star-color);
}

.spacer {
    background-color: #fff;
    height: 1.2rem;
    width: 100%;
}

#sobre-nos, #depoimentos, #ebooks {
    background-image: url('img/background.png');
    background-size: 15%;
    background-position: center;
    background-repeat: repeat;
    background-color: var(--background-color);
}

.footer {
    background-color: var(--background-color);
    color: var(--primary-color);
    padding: 1.25rem 0;
    font-size: 1.125rem;
}

.footer-link {
    color: var(--primary-color);
    margin-right: 1.25rem;
    font-size: 1rem;
    font-size: 1card-imgrem;
}

.footer-link i {
    margin-right: 0.5rem;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer p {
    margin-top: 0.625rem;
    font-size: 1rem;
    color: var(--primary-color);
}

.footer-gerenciamento {
    margin: auto;
    width: 100%;
    padding: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    color: var(--primary-color) !important;
}

.footer-gerenciamento a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-gerenciamento a:hover {
    text-decoration: underline;
}

/* Base class for all animated elements */
.animate-on-scroll {
    opacity: 0;
    animation-fill-mode: forwards;
    visibility: hidden;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideFromLeft {
    0% { transform: translateX(-100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideFromRight {
    0% { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-15px); }
}

/* Animation trigger classes */
.animated-fadeIn {
    animation-name: fadeIn;
    animation-duration: 1s;
    visibility: visible;
}

.animated-fadeUp {
    animation-name: fadeUp;
    animation-duration: 1s;
    visibility: visible;
}

.animated-slideFromLeft {
    animation-name: slideFromLeft;
    animation-duration: 1s;
    visibility: visible;
}

.animated-slideFromRight {
    animation-name: slideFromRight;
    animation-duration: 1s;
    visibility: visible;
}

.animated-bounce {
    animation-name: bounce;
    animation-duration: 1s;
    visibility: visible;
}

.navbar-toggler {
    margin-left: auto; /* Move o botão para a direita */
}

/* Media Queries */
@media (max-width: 767px) {

    body {
        margin: 0;
    }

    .navbar-brand img {
        width: 13rem;
    }

    .navbar {
        padding: 1rem;
    }

    .col-padding {
        padding: 4rem 4rem;
    }

    .add-padding {
        padding: 5rem 3rem;
    }

    .section-title {
        font-size: 2.3rem;
        text-align: center;
    }

    section p {
        font-size: 1.1rem !important;
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-card {
        margin: 1rem 0;
        padding: 1.5rem;
    }

    .testimonial-card img {
        height: auto;
        padding-top: 1rem;
    }

    .testimonial-text {
        padding: 1rem;
    }

    .testimonial-text h3 {
        font-size: 1.5rem;
    }

    .card-text {
        font-size: 0.8rem;
        margin: 1rem;
    }

    .footer {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .footer-link {
        font-size: 1rem;
        margin-right: 1rem;
    }

    .footer img {
        width: 80%;
        margin: 30px;
    }

    .spacer {
        height: 1.0rem;
    }

    .header {
        height: 50vh;
        overflow: hidden;
    }

    .header .carousel-inner img {
        height: 50vh;
        object-fit: cover;
        object-position: 58% 50%;
    }

    .header-text {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 1rem;
        width: 55%;
    }

    .header-text h1 {
        font-size: 1.5rem;
    }

    .header-text p {
        font-size: 0.9rem;
    }
}

.icon-services {
	font-size: 140px;
	color: #f2e3d0;
	padding: 50px 0px 15px 0px;
}