/* Estilo para ícones do footer */
.footer__icon {
    width: 32px;
    height: 32px;
    transition: filter 0.2s, transform 0.2s;
    filter: grayscale(0%) brightness(1) drop-shadow(0 2px 4px rgba(46, 139, 87, 0.15));
}

.social__icon--instagram .footer__icon {
    filter: drop-shadow(0 0 4px #20B2AA);
}

.social__icon--facebook .footer__icon {
    filter: drop-shadow(0 0 4px #2E8B57);
}

.social__icon--whatsapp .footer__icon {
    filter: drop-shadow(0 0 4px #28A745);
}

.footer__icon:hover {
    transform: scale(1.15);
    filter: brightness(1.2) drop-shadow(0 0 8px #4682B4);
}

/* Ajuste para logo/link no header */
.logo__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo__link h2,
.logo__link span {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

/* ===== CSS RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--body-color);
}

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --primary-color: #2E8B57;
    --secondary-color: #20B2AA;
    --accent-color: #4682B4;
    --text-color: #2C3E50;
    --text-light: #6C757D;
    --white-color: #FFFFFF;
    --body-color: #F8F9FA;
    --container-color: #FFFFFF;
    --border-color: #E9ECEF;
    --success-color: #28A745;
    --warning-color: #FFC107;
    --error-color: #DC3545;

    /* Typography */
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Open Sans', sans-serif;

    /* Font Sizes */
    --h1-font-size: 2.5rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.5rem;
    --h4-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.75rem;

    /* Font Weights */
    --font-regular: 400;
    --font-medium: 600;
    --font-bold: 700;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Layout */
    --container-max-width: 1200px;
    --header-height: 4rem;

    /* Border Radius */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 1rem;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-index */
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-xxl) 0;
}

.section__header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section__title {
    font-family: var(--heading-font);
    font-size: var(--h2-font-size);
    font-weight: var(--font-bold);
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
}

.section__subtitle {
    font-size: var(--normal-font-size);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.text-center {
    text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xs) var(--spacing-md);
    font-family: var(--heading-font);
    font-weight: var(--font-medium);
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.btn--primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn--outline:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--large {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--normal-font-size);
}

.btn--full {
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: var(--shadow-sm);
    z-index: var(--z-fixed);
    transition: all var(--transition-normal);
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo__icon {
    flex-shrink: 0;
}

.logo__icon img {
    width: 40px;
    height: 40px;
    transition: transform var(--transition-normal);
    border-radius: var(--border-radius-sm);
}

.logo__icon:hover img {
    transform: scale(1.05);
}

.logo__text h2 {
    font-family: var(--heading-font);
    font-size: var(--h4-font-size);
    font-weight: var(--font-bold);
    color: var(--primary-color);
    margin-bottom: -0.25rem;
    line-height: 1.2;
}

.logo__text span {
    font-size: var(--small-font-size);
    color: var(--text-light);
    line-height: 1;
}

.nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--white-color);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-xl) var(--spacing-lg);
    transition: right var(--transition-normal);
    z-index: var(--z-modal);
}

.nav__menu.show-menu {
    right: 0;
}

.nav__menu.show-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.nav__list {
    list-style: none;
    margin-top: var(--spacing-xl);
}

.nav__item {
    margin-bottom: var(--spacing-md);
}

.nav__link {
    font-family: var(--heading-font);
    font-weight: var(--font-medium);
    color: var(--text-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.nav__link:hover,
.nav__link.active-link {
    color: var(--primary-color);
}

.nav__close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    cursor: pointer;
    color: var(--text-color);
    transition: color var(--transition-fast);
}

.nav__close:hover {
    color: var(--primary-color);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.nav__actions .btn {
    display: none;
}

@media screen and (min-width: 1024px) {
    .nav__actions .btn {
        display: inline-flex;
    }
}

.nav__toggle {
    display: block;
    cursor: pointer;
    color: var(--text-color);
    transition: all var(--transition-fast);
    z-index: calc(var(--z-modal) + 1);
    padding: var(--spacing-xs);
    border-radius: var(--border-radius-sm);
}

.nav__toggle:hover {
    color: var(--primary-color);
    background-color: rgba(46, 139, 87, 0.1);
    transform: scale(1.05);
}

.nav__toggle svg {
    transition: transform var(--transition-fast);
}

.nav__toggle:active svg {
    transform: rotate(90deg);
}

/* ===== HERO SECTION ===== */
.hero {
    padding-top: calc(var(--header-height) + var(--spacing-xl));
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--body-color) 0%, #E8F5E8 100%);
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero__title {
    font-family: var(--heading-font);
    font-size: var(--h1-font-size);
    font-weight: var(--font-bold);
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero__description {
    font-size: var(--normal-font-size);
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero__image {
    position: relative;
}

.hero__image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero__image-zoom {
    animation: zoomIn 1.2s ease-out forwards, breathe 4s ease-in-out 1.5s infinite;
    transform: scale(0.8);
    opacity: 0;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

/* ===== ABOUT SECTION ===== */
.about__container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about__image {
    position: relative;
}

.about__image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.about__text {
    font-size: var(--normal-font-size);
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.stat {
    text-align: center;
    padding: var(--spacing-md);
    background-color: var(--container-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.stat__number {
    display: block;
    font-family: var(--heading-font);
    font-size: var(--h3-font-size);
    font-weight: var(--font-bold);
    color: var(--primary-color);
}

.stat__label {
    font-size: var(--small-font-size);
    color: var(--text-light);
}

.about__credentials h3 {
    font-family: var(--heading-font);
    font-size: var(--h4-font-size);
    font-weight: var(--font-medium);
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
}

.credentials__list {
    list-style: none;
}

.credentials__list li {
    padding: var(--spacing-xs) 0;
    color: var(--text-light);
    position: relative;
    padding-left: var(--spacing-md);
}

.credentials__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: var(--font-bold);
}

/* ===== SERVICES SECTION ===== */
.services {
    background-color: var(--body-color);
}

.services__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.service__card {
    background-color: var(--container-color);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.service__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
}

.service__title {
    font-family: var(--heading-font);
    font-size: var(--h4-font-size);
    font-weight: var(--font-medium);
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
}

.service__description {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: linear-gradient(135deg, var(--body-color) 0%, #E8F5E8 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.testimonials__container {
    position: relative;
    max-width: 100%;
}

.testimonials__wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    width: 100%;
}

.testimonials__track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: var(--spacing-lg);
}

.testimonial__card {
    flex: 0 0 50%;
    min-width: 0;
    box-sizing: border-box;
}

.testimonial__content {
    background-color: var(--container-color);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial__content::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: var(--spacing-lg);
    font-size: 4rem;
    font-family: var(--heading-font);
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial__stars {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    color: #FFD700;
}

.testimonial__text {
    font-size: var(--normal-font-size);
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.testimonial__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.testimonial__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial__info {
    text-align: left;
}

.testimonial__name {
    font-family: var(--heading-font);
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    color: var(--text-color);
    margin-bottom: var(--spacing-xs);
}

.testimonial__role {
    font-size: var(--small-font-size);
    color: var(--text-light);
}

/* Navigation */
.testimonials__navigation {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.testimonials__btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    border-radius: 50%;
    color: var(--primary-color);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials__btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.1);
}

.testimonials__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Dots indicator */
.testimonials__dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.testimonials__dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonials__dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.testimonials__dot:hover {
    background-color: var(--secondary-color);
}

/* ===== CONTACT SECTION ===== */
.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.contact__item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact__icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    flex-shrink: 0;
}

.contact__details h3 {
    font-family: var(--heading-font);
    font-size: var(--h4-font-size);
    font-weight: var(--font-medium);
    color: var(--text-color);
    margin-bottom: var(--spacing-xs);
}

.contact__details p {
    color: var(--text-light);
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--primary-color);
    text-decoration: none;
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
    margin-top: var(--spacing-xs);
    transition: all var(--transition-fast);
}

.whatsapp-link:hover {
    color: var(--secondary-color);
    transform: translateX(2px);
}

.contact__hours {
    margin-top: var(--spacing-lg);
}

.contact__hours h3 {
    font-family: var(--heading-font);
    font-size: var(--h4-font-size);
    font-weight: var(--font-medium);
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
}

.contact__hours ul {
    list-style: none;
}

.contact__hours li {
    padding: var(--spacing-xs) 0;
    color: var(--text-light);
}

/* ===== FORM STYLES ===== */
.contact__form {
    background-color: var(--container-color);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.form__group {
    margin-bottom: var(--spacing-md);
}

.form__label {
    display: block;
    font-weight: var(--font-medium);
    color: var(--text-color);
    margin-bottom: var(--spacing-xs);
}

.form__input,
.form__textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    transition: border-color var(--transition-fast);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__error {
    display: block;
    color: var(--error-color);
    font-size: var(--small-font-size);
    margin-top: var(--spacing-xs);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--text-color);
    color: var(--white-color);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer__logo h3 {
    font-family: var(--heading-font);
    font-size: var(--h4-font-size);
    font-weight: var(--font-bold);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.footer__logo p {
    color: #B0BEC5;
    font-size: var(--small-font-size);
}

.footer__section h4 {
    font-family: var(--heading-font);
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    margin-bottom: var(--spacing-sm);
    color: var(--white-color);
}

.footer__links,
.footer__contact {
    list-style: none;
}

.footer__links li,
.footer__contact li {
    margin-bottom: var(--spacing-xs);
}

.footer__links a {
    color: #B0BEC5;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer__links a:hover {
    color: var(--primary-color);
}

.footer__contact li {
    color: #B0BEC5;
    font-size: var(--small-font-size);
}

.footer__social {
    display: flex;
    gap: var(--spacing-sm);
}

.social__link {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social__link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.footer__bottom {
    border-top: 1px solid #37474F;
    padding-top: var(--spacing-md);
    text-align: center;
    color: #B0BEC5;
    font-size: var(--small-font-size);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--white-color);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: var(--z-tooltip);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.reveal.animate {
    opacity: 0;
    transform: translateY(30px);
}

.reveal.animate.active {
    opacity: 1;
    transform: translateY(0);
}