/* ============================================
   DRA. KARLA COSTA - CSS PURO COMPLETO
   ============================================ */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: #422115;
    background-color: #FDFCFA;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Fontes */
.font-headline {
    font-family: 'Cormorant Garamond', serif;
}

.font-body {
    font-family: 'DM Sans', sans-serif;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* ============================================
   PALETA DE CORES - CSS VARIABLES
   ============================================ */

:root {
    --primary-50: #F5EDE9;
    --primary-100: #EBDBD3;
    --primary-200: #D7B7A7;
    --primary-300: #C3937B;
    --primary-400: #AF6F4F;
    --primary-500: #6E3621;
    --primary-600: #582C1B;
    --primary-700: #422115;
    --primary-800: #2C160E;
    --primary-900: #160B07;

    --secondary-100: #FAF3EF;
    --secondary-200: #F5E7DF;
    --secondary-300: #EFDBCF;
    --secondary-400: #fedbb1;
    --secondary-500: #DBA895;

    --accent-100: #E5EBE1;
    --accent-200: #83c057;
    --accent-500: #527439;
    --accent-600: #456230;

    --cream-50: #FDFCFA;
    --cream-100: #fff2d8;
    --stars: #d4c113;
}

/* ============================================
   UTILITÁRIOS DE TEXTO
   ============================================ */

.text-primary-600 {
    color: var(--primary-600);
}

.text-primary-700 {
    color: var(--primary-700);
}

.text-primary-800 {
    color: var(--primary-800);
}

.text-primary-900 {
    color: var(--primary-900);
}

.text-secondary-200 {
    color: var(--secondary-200);
}

.text-secondary-300 {
    color: var(--secondary-300);
}

.text-secondary-400 {
    color: var(--secondary-400);
}

.text-secondary-500 {
    color: var(--secondary-500);
}

.text-accent-400 {
    color: #97AF87;
}

.text-accent-500 {
    color: var(--accent-500);
}

.text-accent-600 {
    color: var(--accent-600);
}

.text-white {
    color: #ffffff;
}

.text-yellow-400 {
    color: var(--stars);
}

/* Tamanhos de fonte */
.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.text-6xl {
    font-size: 3.75rem;
}

.text-7xl {
    font-size: 4.5rem;
}

.text-8xl {
    font-size: 6rem;
}

/* Peso da fonte */
.font-light {
    font-weight: 300;
}

.font-medium {
    font-weight: 500;
    text-decoration: none;
}

.font-semibold {
    font-weight: 600;
    text-decoration: none;
}

.font-bold {
    font-weight: 700;
}

.font-menu {
    color: #384921;
}

.font-menu a {
    color: #384921;
}

.font-menu a:active {
    color: #384921;
}

.font-menu a:visited {
    color: #384921;
}



/* Estilo da fonte */
.italic {
    font-style: italic;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.leading-relaxed {
    line-height: 1.625;
}

.leading-tight {
    line-height: 1.25;
}

.text-center {
    text-align: center;
}

/* ============================================
   BACKGROUNDS
   ============================================ */

.bg-white {
    background-color: #ffffff;
}

.bg-cream-50 {
    background-color: var(--cream-50);
}

.bg-cream-100 {
    background-color: var(--cream-100);
}

.bg-secondary-100 {
    background-color: var(--secondary-100);
}

.bg-secondary-400 {
    background-color: var(--secondary-400);
}

.bg-primary-50 {
    background-color: var(--primary-50);
}

.bg-primary-100 {
    background-color: var(--primary-100);
}

.bg-accent-50 {
    background-color: var(--accent-100);
}

.bg-accent-100 {
    background-color: var(--accent-100);
}

.bg-\[\#160B07\] {
    background-color: #160B07;
}

.bg-\[\#527439\] {
    background-color: #527439;
}

.bg-\[\#384921\] {
    background-color: #384921;
}

.bg-white\/60 {
    background-color: rgba(255, 255, 255, 0.6);
}

.bg-white\/80 {
    background-color: rgba(255, 255, 255, 0.342);
}

.bg-p {
    background-color: rgba(47, 148, 47, 0.342);
    border: 0;
    border-radius: 50px;
    padding: 20px;
    color: #384921;
}

.texto-gradiente {
    font-size: 1em;
    font-weight: bold;

    background: linear-gradient(to right, #527439, #384921);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-to-r {
    background: linear-gradient(to right, #527439, #384921);
}

.bg-gradient-to-br {
    background: linear-gradient(to bottom right, var(--tw-gradient-from, #527439), var(--tw-gradient-to, #384921));
}

.from-primary-500 {
    --tw-gradient-from: var(--primary-500);
}

.to-primary-700 {
    --tw-gradient-to: var(--primary-700);
}

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
    background-color: var(--secondary-400);
}


/* ============================================
   COMPONENTES
   ============================================ */

.toggle {
    border: 0px;
    background-color: #160b0700;
    cursor: pointer;
}

.stars-fill {
    border-color: var(--stars);
}

.lucide-icon-br {
    background-color: var(--secondary-400);
    color: #422115;
}

.favicon {
    width: 30px;
    height: 30px;
}

/* ============================================
   BORDAS
   ============================================ */

.border {
    border-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.border-3 {
    border-width: 3px;
}

.border-t {
    border-top-width: 1px;
}

.border-text {
    border: 2px solid #456230;
    border-radius: 50px;
    padding: 16px;
}

.border-secondary-100 {
    border-color: var(--secondary-100);
}

.border-secondary-200 {
    border-color: var(--secondary-200);
}

.border-secondary-300 {
    border-color: var(--secondary-300);
}

.border-primary-200 {
    border-color: var(--primary-200);
}

.border-accent-200 {
    border-color: #B1C3A5;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.rounded-\[2\.5rem\] {
    border-radius: 2.5rem;
}

.rounded-\[3rem\] {
    border-radius: 3rem;
}

/* ============================================
   DISPLAY E POSICIONAMENTO
   ============================================ */

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.inline-flex {
    display: inline-flex;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.fixed {
    position: fixed;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.top-0 {
    top: 0;
}

.top-full {
    top: 100%;
}

.top-32 {
    top: 8rem;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.bottom-8 {
    bottom: 2rem;
}

.left-0 {
    left: 0;
}

.left-8 {
    left: 2rem;
}

.-bottom-8 {
    bottom: -2rem;
}

.-left-8 {
    left: -2rem;
}

.-right-8 {
    right: -2rem;
}

.z-0 {
    z-index: 0;
}

.z-10 {
    z-index: 10;
}

.z-50 {
    z-index: 50;
}

/* ============================================
   FLEXBOX E GRID
   ============================================ */

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-start {
    align-items: flex-start;
}

.items-center {
    align-items: center;
}

.items-left {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-10 {
    gap: 2.5rem;
}

.gap-12 {
    gap: 3rem;
}

.gap-16 {
    gap: 4rem;
}

.gap-20 {
    gap: 5rem;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

/* ============================================
   ESPAÇAMENTO
   ============================================ */

.p-0 {
    padding: 0;
}

.p-4 {
    padding: 1rem;
}

.p-5 {
    padding: 1.25rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.p-10 {
    padding: 2.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-2-5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.pt-4 {
    padding-top: 1rem;
}

.pt-8 {
    padding-top: 2rem;
}

.pt-32 {
    padding-top: 8rem;
}

.pt-40 {
    padding-top: 10rem;
}

.pb-12 {
    padding-bottom: 3rem;
}

.pb-16 {
    padding-bottom: 4rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-20 {
    margin-bottom: 5rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mr-1 {
    margin-right: 0.25rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.ml-1 {
    margin-left: 0.25rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.space-y-2>*+* {
    margin-top: 0.5rem;
}

.space-y-3>*+* {
    margin-top: 0.75rem;
}

.space-y-4>*+* {
    margin-top: 1rem;
}

.space-y-6>*+* {
    margin-top: 1.5rem;
}

.space-y-8>*+* {
    margin-top: 2rem;
}

/* ============================================
   DIMENSIONAMENTO
   ============================================ */

.w-2-5 {
    width: 0.625rem;
}

.w-4 {
    width: 1rem;
}

.w-5 {
    width: 1.25rem;
}

.w-6 {
    width: 1.5rem;
}

.w-7 {
    width: 1.75rem;
}

.w-8 {
    width: 2rem;
}

.w-10 {
    width: 2.5rem;
}

.w-12 {
    width: 3rem;
}

.w-14 {
    width: 3.5rem;
}

.w-15 {
    width: 3.75rem;
}

.w-16 {
    width: 4rem;
}

.w-px {
    width: 1px;
}

.w-full {
    width: 100%;
}

.w-\[500px\] {
    width: 500px;
}

.w-\[600px\] {
    width: 600px;
}

.w-\[700px\] {
    width: 700px;
}

.h-2-5 {
    height: 0.625rem;
}

.h-4 {
    height: 1rem;
}

.h-5 {
    height: 1.25rem;
}

.h-6 {
    height: 1.5rem;
}

.h-7 {
    height: 1.75rem;
}

.h-8 {
    height: 2rem;
}

.h-10 {
    height: 2.5rem;
}

.h-12 {
    height: 3rem;
}

.h-14 {
    height: 3.5rem;
}

.h-15 {
    height: 3.75rem;
}

.h-16 {
    height: 4rem;
}

.h-px {
    height: 1px;
}

.h-\[500px\] {
    height: 500px;
}

.h-\[600px\] {
    height: 600px;
}

.h-\[650px\] {
    height: 650px;
}

.h-\[700px\] {
    height: 700px;
}

.h-80 {
    height: 20rem;
}

.h-100 {
    height: 25rem;
}

.min-h-screen {
    min-height: 100vh;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-xs {
    max-width: 20rem;
}

/* ============================================
   OBJETO E IMAGEM
   ============================================ */

.object-cover {
    object-fit: cover;
}

.object-top {
    object-position: top;
}

.image-about {
    background-position: cover;
    width: 550px;
    border-radius: 35px;
}

/* ============================================
   EFEITOS VISUAIS
   ============================================ */

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-primary-900\/10 {
    box-shadow: 0 25px 50px -12px rgba(22, 11, 7, 0.1);
}

.shadow-primary-900\/20 {
    box-shadow: 0 25px 50px -12px rgba(22, 11, 7, 0.2);
}

.blur-3xl {
    filter: blur(64px);
}

.opacity-10 {
    opacity: 0.1;
}

.opacity-20 {
    opacity: 0.2;
}

.opacity-30 {
    opacity: 0.3;
}

.opacity-40 {
    opacity: 0.4;
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.backdrop-blur-md {
    backdrop-filter: blur(12px);
}

/* ============================================
   ANIMAÇÕES
   ============================================ */

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-delayed {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-delayed 6s ease-in-out 3s infinite;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.6s ease-out forwards;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Transições */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.transition-colors {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.transition-shadow {
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.duration-500 {
    transition-duration: 500ms;
}

/* ============================================
   COMPONENTES PERSONALIZADOS
   ============================================ */

/* Logo */
.logo img {
    max-height: 60px;
    width: auto;
}

/* Glass Effect */
.glass-effect {
    background: rgba(253, 252, 250, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, #6E3621 0%, #DBA895 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

/* Hover Lift */
.hover-lift {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(110, 54, 33, 0.15);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Section Card */
.section-card {
    overflow: hidden;
}

.section-image {
    transition: transform 0.7s ease;
}

.section-card:hover .section-image {
    transform: scale(1.05);
}

/* Links */

.link-footer {
    color: var(--primary-100);
    text-decoration: none;
    font-size: 0.9em;
}

.link-footer-h3 {
    text-decoration: none;
}

.link-footer a:hover {
    color: var(--accent-200);
    text-decoration: none;
    font-size: 0.9em;
}

.link-footer ul {
    list-style: none;
}

.link-footer li {
    list-style-type: none;
    padding-bottom: 10px;

}

/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, #6E3621 0%, #8B4513 100%);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary:hover {
    box-shadow: 0 10px 30px -10px rgba(110, 54, 33, 0.5);
    transform: translateY(-2px);
}

/* Secondary Button */
.btn-secondary {
    border: 2px solid #DBA895;
    color: #6E3621;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #DBA895;
    color: white;
    border-color: #DBA895;
}

/* Pattern Background */
.pattern-bg {
    background-image: radial-gradient(circle at 1px 1px, rgba(110, 54, 33, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
}

.bg-hero {
    background: linear-gradient(135deg, #FEDBB1 0%, #FEDBB1 100%);
}

/* Service Cards Grid */
.content-grid {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.grid-service-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.img-cols-service-1,
.img-cols-service-2,
.img-cols-service-3 {
    background: linear-gradient(135deg, #FEDBB1 0%, #FEDBB1 50%);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    align-content: end;
}

.img-cols-service-1:hover,
.img-cols-service-2:hover,
.img-cols-service-3:hover {
    transform: translateY(-5px);
}

.img-bg-service-1 {
    height: 500px;
    background:
        linear-gradient(to bottom,
            rgba(3, 184, 57, 0.1),
            rgba(1, 83, 26, 0.9)),
        url("/img/ativos-naturais-de-alta-performance-2.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
    display: block;
    align-items: center;
    justify-content: center;
}

.img-bg-service-2 {
    height: 500px;
    background:
        linear-gradient(to bottom,
            rgba(3, 243, 75, 0.1),
            rgba(1, 83, 26, 0.9)),
        url("/img/tratamentos-e-tecnologia-avancada-em-estetica2.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
    display: block;
    align-items: center;
    justify-content: center;
}

.img-bg-service-3 {
    height: 500px;
    background:
        linear-gradient(to bottom,
            rgba(3, 184, 57, 0.1),
            rgba(1, 83, 26, 0.9)),
        url("/img/estetica-bem-estar-e-equilibrio-2.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
    display: block;
    align-items: left;
    justify-content: center;
    justify-items: baseline;
}


.cols-h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fedbb1;
    margin: 1rem 0;
    text-align: left;
}

.cols-p {
    color: var(--primary-50);
    line-height: 1.625;
    text-align: left;
}

/* H1 Custom */
.h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary-700);
}

.h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary-50);
}

/* Fill utilities */
.fill-current {
    fill: currentColor;
}

.fill-yellow-400 {
    fill: #FACC15;
}

/* Group hover */
.group:hover .group-hover\:translate-x-1 {
    transform: translateX(0.25rem);
}

.group:hover .group-hover\:shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Hover effects */
.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:text-primary-600:hover {
    color: var(--primary-600);
}

.hover\:text-accent-400:hover {
    color: #97AF87;
}

.hover\:shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Focus */
.focus\:outline-none:focus {
    outline: none;
}

.focus\:border-accent-500:focus {
    border-color: var(--accent-500);
}

/* Selection */
::selection {
    background: #DBA895;
    color: #6E3621;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #FDFCFA;
}

::-webkit-scrollbar-thumb {
    background: #DBA895;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6E3621;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (min-width: 768px) {
    .md\:flex {
        display: flex;
    }

    .md\:grid {
        display: grid;
    }

    .md\:hidden {
        display: none;
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md\:text-6xl {
        font-size: 3.75rem;
    }

    .md-text-xl {
        font-size: 1.25rem;
    }

    .md\:order-1 {
        order: 1;
    }

    .md\:order-2 {
        order: 2;
    }

    .md\:col-span-1 {
        grid-column: span 1 / span 1;
    }
       .image-about{
        padding: 0px;
        width: 480px;
        height: auto;
    }

}

@media (min-width: 1024px) {
    .lg\:grid {
        display: grid;
    }

    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lg\:block {
        display: block;
    }

    .lg\:order-1 {
        order: 1;
    }

    .lg\:order-2 {
        order: 2;
    }

    .lg-order-1 {
        order: 1;
    }

    .lg-order-2 {
        order: 2;
    }

    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (max-width: 1024px) {
    .h1 {
        font-size: 2.5rem;
    }

    .text-5xl {
        font-size: 2.25rem;
    }

    .text-6xl {
        font-size: 2.5rem;
    }

    .grid-service-3 {
        grid-template-columns: 1fr;
    }

    .grid-cols-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .h1 {
        font-size: 2rem;
    }

    .text-5xl,
    .text-6xl {
        font-size: 1.875rem;
    }

    .h-\[600px\],
    .h-\[650px\] {
        height: 400px;
    }

    .py-32 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .gap-20 {
        gap: 2rem;
    }

    .container {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    .px-10 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .absolute.-bottom-8,
    .absolute.-left-8,
    .absolute.-right-8 {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 1rem;
    }

    .grid-service-3 {
        grid-template-columns: 1fr;
    }

    .image-hero {
        height: auto;
        padding: 0;
        margin: 0;
    }

    .image-about{
        padding: 0px;
        width: 480px;
        height: auto;
    }
     .block-float{
        position: absolute;
        top: -65px;
        margin-bottom: -25px;
    }

    .grid-cols-2 {
         grid-template-columns: repeat(1, minmax(0, 1fr));
         width: auto;
         
    }

    .grid-cols-3 {
         grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .mobile-footer{
        padding: 50px 20px;
    }

    .footer-p{
        text-align: center;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}