/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4a574;
    --primary-dark: #b8905f;
    --secondary-color: #8b6f47;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header / Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    color: white;
    animation: logoPulse 2s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.5);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: logoShine 3s ease-in-out infinite;
}

.logo-icon svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo h1 {
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin: 0;
    letter-spacing: -0.5px;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
    position: relative;
}

.logo:hover .logo-text {
    filter: brightness(1.1);
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(212, 165, 116, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(212, 165, 116, 0.7);
    }
}

@keyframes logoShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    animation: slideInDown 0.5s ease;
}

.nav-menu li {
    position: relative;
    animation: fadeInRight 0.6s ease backwards;
}

.nav-menu li:nth-child(1) { animation-delay: 0.1s; }
.nav-menu li:nth-child(2) { animation-delay: 0.2s; }
.nav-menu li:nth-child(3) { animation-delay: 0.3s; }
.nav-menu li:nth-child(4) { animation-delay: 0.4s; }

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    display: inline-block;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(184, 144, 95, 0.1));
    border-radius: 8px;
    transition: var(--transition);
    z-index: -1;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 100%;
    padding: 0 1rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 80%;
}

/* Social Links no Menu */
.nav-social {
    display: none;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-dark);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:first-child:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link:last-child:hover {
    background: #1877F2;
    color: white;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: rgba(212, 165, 116, 0.1);
    transform: scale(1.1);
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(245, 230, 211, 0.85) 0%, rgba(232, 213, 183, 0.85) 50%, rgba(212, 165, 116, 0.85) 100%),
        url('https://vdv.com.br/site/wp-content/uploads/2023/07/espelho-organico-vdv-e1690502686144.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(184, 144, 95, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(139, 111, 71, 0.08) 0%, transparent 50%);
    background-size: 100% 100%;
    animation: patternMove 20s ease-in-out infinite;
    opacity: 0.6;
    z-index: 0;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: float 15s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes patternMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-20px, -20px) scale(1.1);
    }
}

@keyframes scissorsMove {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 0 0, 200px 200px;
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
        opacity: 0.5;
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
        opacity: 0.4;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%),
        radial-gradient(ellipse at center, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Sobre Section */
.sobre {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
    background-size: 200% 200%;
    position: relative;
    overflow: hidden;
    animation: sobreGradient 12s ease infinite;
}

@keyframes sobreGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.sobre-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.sobre-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15), transparent);
    animation: shapeFloat 20s ease-in-out infinite;
}

.sobre-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.sobre-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
    animation-delay: 5s;
}

.sobre-shape-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.3;
    }
    33% {
        transform: translate(30px, -30px) scale(1.1) rotate(120deg);
        opacity: 0.5;
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9) rotate(240deg);
        opacity: 0.4;
    }
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sobre-text {
    opacity: 0;
    transform: translateX(-50px);
    animation: sobreTextFadeIn 1s ease forwards;
}

@keyframes sobreTextFadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sobre-text h3 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(212, 165, 116, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(212, 165, 116, 0.6));
    }
}

.sobre-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
    opacity: 0;
    animation: textFadeIn 1s ease 0.3s forwards;
}

@keyframes textFadeIn {
    to {
        opacity: 1;
    }
}

.sobre-text p:nth-child(2) {
    animation-delay: 0.5s;
}

.sobre-text p:nth-child(3) {
    animation-delay: 0.7s;
}

.sobre-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.05), rgba(184, 144, 95, 0.05));
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateX(-30px);
    animation: featureSlideIn 0.6s ease forwards;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:nth-child(1) {
    animation-delay: 0.9s;
}

.feature-item:nth-child(2) {
    animation-delay: 1.1s;
}

.feature-item:nth-child(3) {
    animation-delay: 1.3s;
}

@keyframes featureSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-item:hover {
    transform: translateX(10px) scale(1.02);
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(184, 144, 95, 0.1));
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.2);
    border-left-width: 6px;
}

.feature-icon {
    font-size: 2rem;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: iconSpin 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature-item:nth-child(1) .feature-icon {
    animation-delay: 0s;
}

.feature-item:nth-child(2) .feature-icon {
    animation-delay: 0.5s;
}

.feature-item:nth-child(3) .feature-icon {
    animation-delay: 1s;
}

@keyframes iconSpin {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-10deg) scale(1.1);
    }
    50% {
        transform: rotate(0deg) scale(1.15);
    }
    75% {
        transform: rotate(10deg) scale(1.1);
    }
}

.feature-item:hover .feature-icon {
    transform: rotate(360deg) scale(1.3);
    filter: drop-shadow(0 4px 8px rgba(212, 165, 116, 0.4));
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% {
        transform: rotate(360deg) scale(1.3);
    }
    50% {
        transform: rotate(360deg) scale(1.5);
    }
}

.sobre-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateX(50px) scale(0.9);
    animation: imageSlideIn 1s ease 0.5s forwards;
}

@keyframes imageSlideIn {
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.sobre-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 30px;
    opacity: 0.2;
    z-index: -1;
    animation: imageGlow 3s ease-in-out infinite;
    filter: blur(20px);
}

@keyframes imageGlow {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.05);
    }
}

.sobre-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border: 3px solid var(--primary-color);
    border-radius: 30px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.sobre-image:hover::after {
    opacity: 0.3;
    animation: borderPulse 2s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.5;
    }
}

.sobre-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    animation: imageFloat 6s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

.sobre-img:hover {
    transform: translateY(-15px) scale(1.05) rotate(-2deg);
    box-shadow: 0 20px 60px rgba(212, 165, 116, 0.4), 0 0 40px rgba(212, 165, 116, 0.2);
    filter: brightness(1.1) contrast(1.05);
}

/* Serviços Section */
.servicos {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 50%, #f8f8f8 100%);
    background-size: 200% 200%;
    position: relative;
    overflow: hidden;
    animation: servicosGradient 10s ease infinite;
}

@keyframes servicosGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.servicos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(184, 144, 95, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 111, 71, 0.08) 0%, transparent 60%);
    animation: servicosBgMove 20s ease-in-out infinite;
    pointer-events: none;
}

.servicos::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(212, 165, 116, 0.03) 50px,
            rgba(212, 165, 116, 0.03) 100px
        );
    animation: servicosPattern 30s linear infinite;
    pointer-events: none;
}

@keyframes servicosBgMove {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(-30px, -30px) scale(1.1) rotate(5deg);
    }
    66% {
        transform: translate(30px, 30px) scale(1.05) rotate(-5deg);
    }
}

@keyframes servicosPattern {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(100px, 100px) rotate(360deg);
    }
}

/* Partículas Flutuantes */
.servicos-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.3), transparent);
    opacity: 0.6;
    animation: particleFloat 15s ease-in-out infinite;
}

.particle-1 {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 40px;
    height: 40px;
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.particle-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.particle-4 {
    width: 50px;
    height: 50px;
    top: 60%;
    right: 25%;
    animation-delay: 6s;
}

.particle-5 {
    width: 70px;
    height: 70px;
    bottom: 10%;
    right: 10%;
    animation-delay: 8s;
}

.particle-6 {
    width: 45px;
    height: 45px;
    top: 15%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(30px, -30px) scale(1.2);
        opacity: 0.7;
    }
    50% {
        transform: translate(-20px, -50px) scale(0.8);
        opacity: 0.5;
    }
    75% {
        transform: translate(40px, -20px) scale(1.1);
        opacity: 0.6;
    }
}

.servicos .section-title {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 50%, var(--text-dark) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGradient 3s ease infinite;
}

@keyframes titleGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.sobre .section-title {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 50%, var(--text-dark) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGradient 3s ease infinite, titleFadeIn 1s ease 0.2s forwards;
    opacity: 0;
    transform: translateY(-30px);
}

@keyframes titleFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sobre .section-subtitle {
    opacity: 0;
    animation: subtitleFadeIn 1s ease 0.4s forwards;
}

@keyframes subtitleFadeIn {
    to {
        opacity: 1;
    }
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.servico-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 0;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    border: 2px solid transparent;
    animation: cardFloat 6s ease-in-out infinite;
    display: flex;
    flex-direction: column;
}

.servico-card > *:not(.servico-image) {
    padding: 0 2.5rem;
}

.servico-card .servico-icon {
    padding-top: 1.5rem;
    margin-bottom: 1rem;
}

.servico-card h3 {
    padding-top: 0;
}

.servico-card p {
    padding-bottom: 2.5rem;
}

.servico-card:nth-child(1) { animation-delay: 0s; }
.servico-card:nth-child(2) { animation-delay: 0.5s; }
.servico-card:nth-child(3) { animation-delay: 1s; }
.servico-card:nth-child(4) { animation-delay: 1.5s; }
.servico-card:nth-child(5) { animation-delay: 2s; }
.servico-card:nth-child(6) { animation-delay: 2.5s; }

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: translateY(-8px) scale(1.01);
        box-shadow: 0 12px 35px rgba(212, 165, 116, 0.2);
    }
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    transition: left 0.5s ease;
}

.servico-card:hover::before {
    left: 100%;
}

.servico-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.servico-card:hover::after {
    opacity: 1;
}

.servico-card:hover {
    transform: translateY(-20px) scale(1.05) rotate(2deg);
    box-shadow: 0 20px 50px rgba(212, 165, 116, 0.4), 0 0 30px rgba(212, 165, 116, 0.2);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
    animation: cardHoverPulse 1.5s ease-in-out infinite;
}

@keyframes cardHoverPulse {
    0%, 100% {
        box-shadow: 0 20px 50px rgba(212, 165, 116, 0.4), 0 0 30px rgba(212, 165, 116, 0.2);
    }
    50% {
        box-shadow: 0 25px 60px rgba(212, 165, 116, 0.5), 0 0 40px rgba(212, 165, 116, 0.3);
    }
}

.servico-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: cardFloat 6s ease-in-out infinite, cardPulse 3s ease-in-out infinite;
}

@keyframes cardPulse {
    0%, 100% {
        border-color: transparent;
    }
    50% {
        border-color: rgba(212, 165, 116, 0.3);
    }
}

.servico-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
    margin: 0;
    position: relative;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(184, 144, 95, 0.1));
}

.servico-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scale(1);
}

.servico-card:hover .servico-image img {
    transform: scale(1.1);
    filter: brightness(1.05);
}

.servico-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    animation: iconFloat 4s ease-in-out infinite;
    transform-origin: center;
}

.servico-card:nth-child(1) .servico-icon { animation-delay: 0s; }
.servico-card:nth-child(2) .servico-icon { animation-delay: 0.3s; }
.servico-card:nth-child(3) .servico-icon { animation-delay: 0.6s; }
.servico-card:nth-child(4) .servico-icon { animation-delay: 0.9s; }
.servico-card:nth-child(5) .servico-icon { animation-delay: 1.2s; }
.servico-card:nth-child(6) .servico-icon { animation-delay: 1.5s; }

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-8px) rotate(-5deg) scale(1.05);
    }
    50% {
        transform: translateY(-12px) rotate(0deg) scale(1.08);
    }
    75% {
        transform: translateY(-8px) rotate(5deg) scale(1.05);
    }
}

.servico-card:hover .servico-icon {
    transform: scale(1.3) rotate(15deg) translateY(-10px);
    filter: drop-shadow(0 12px 24px rgba(212, 165, 116, 0.5));
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1.3) rotate(15deg) translateY(-10px);
    }
    50% {
        transform: scale(1.4) rotate(20deg) translateY(-15px);
    }
}

.servico-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(184, 144, 95, 0.15));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
    animation: iconRing 2s ease-in-out infinite;
}

.servico-card:hover .servico-icon::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.8);
    animation: iconPulse 1s ease-in-out infinite, iconRing 2s ease-in-out infinite;
}

.servico-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -2;
}

.servico-card:hover .servico-icon::after {
    opacity: 1;
    animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0.4;
    }
    50% {
        transform: translate(-50%, -50%) scale(2.2);
        opacity: 0.2;
    }
}

@keyframes iconRing {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1) rotate(180deg);
    }
}

@keyframes iconGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
}

.servico-card h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.servico-card:hover h3 {
    color: var(--primary-color);
    transform: scale(1.08) translateY(-3px);
    text-shadow: 0 4px 8px rgba(212, 165, 116, 0.3);
    animation: titleShine 2s ease-in-out infinite;
}

@keyframes titleShine {
    0%, 100% {
        background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    50% {
        background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-dark) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

.servico-card p {
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.servico-card:hover p {
    color: var(--text-dark);
}

/* Agendamento Section */
.agendamento {
    background: var(--bg-white);
}

.agendamento-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
    padding: 1.2rem;
    font-size: 1.1rem;
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 20px;
}

.form-success {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 10px;
    color: #155724;
    text-align: center;
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
    background-size: 200% 200%;
    color: var(--bg-white);
    padding: 4rem 0 1.5rem;
    position: relative;
    overflow: hidden;
    animation: footerGradient 15s ease infinite;
}

@keyframes footerGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.footer-top-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(180deg, rgba(212, 165, 116, 0.1) 0%, transparent 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
}

.footer-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.footer-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1), transparent);
    animation: footerShapeFloat 25s ease-in-out infinite;
}

.footer-shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.footer-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -50px;
    animation-delay: 10s;
}

@keyframes footerShapeFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translate(50px, -50px) scale(1.2) rotate(180deg);
        opacity: 0.5;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    opacity: 0;
    transform: translateY(30px);
    animation: footerFadeIn 0.8s ease forwards;
}

.footer-section:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-section:nth-child(2) {
    animation-delay: 0.3s;
}

.footer-section:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes footerFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
    animation: underlineExpand 1s ease 0.5s forwards;
}

@keyframes underlineExpand {
    to {
        width: 100%;
    }
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    padding-left: 1rem;
}

.footer-section h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
    animation: barGrow 0.6s ease 0.3s forwards;
    transform-origin: top;
    transform: translateY(-50%) scaleY(0);
}

@keyframes barGrow {
    to {
        transform: translateY(-50%) scaleY(1);
    }
}

.footer-section p {
    color: #d0d0d0;
    margin-bottom: 0.8rem;
    line-height: 1.8;
    font-size: 1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section p:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.footer-social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.2), rgba(184, 144, 95, 0.2));
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(212, 165, 116, 0.3);
    animation: socialFloat 3s ease-in-out infinite;
}

.footer-social-link:nth-child(1) {
    animation-delay: 0s;
}

.footer-social-link:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes socialFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.footer-social-link:hover::before {
    transform: translate(-50%, -50%) scale(1.5);
    animation: ripple 0.6s ease;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.footer-social-link:hover {
    transform: translateY(-8px) scale(1.15) rotate(5deg);
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.5), 0 0 20px rgba(212, 165, 116, 0.3);
    border-color: var(--primary-color);
}

.footer-social-link svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.footer-social-link:hover svg {
    transform: scale(1.2) rotate(-5deg);
}

.footer-social-link:first-child:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.5), 0 0 20px rgba(220, 39, 67, 0.3);
    border-color: #dc2743;
}

.footer-social-link:last-child:hover {
    background: #1877F2;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.5), 0 0 20px rgba(24, 119, 242, 0.3);
    border-color: #1877F2;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(212, 165, 116, 0.2);
    color: #aaa;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: footerBottomFadeIn 1s ease 0.7s forwards;
}

@keyframes footerBottomFadeIn {
    to {
        opacity: 1;
    }
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: lineExpand 1s ease 0.8s forwards;
    transform-origin: center;
    transform: translateX(-50%) scaleX(0);
}

@keyframes lineExpand {
    to {
        transform: translateX(-50%) scaleX(10);
    }
}

.footer-bottom p {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.footer-bottom p:hover {
    color: var(--primary-color);
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        padding: 2rem 0;
        gap: 0;
        backdrop-filter: blur(10px);
        opacity: 0;
        transform: translateX(-20px);
    }

    .nav-menu.active {
        left: 0;
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu li {
        padding: 1rem 0;
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-menu.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
        display: inline-block;
        border-radius: 10px;
        margin: 0.3rem 0;
        transition: var(--transition);
    }

    .nav-link:hover {
        background: rgba(212, 165, 116, 0.1);
        transform: translateX(5px);
    }

    .nav-social {
        display: flex;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 2px solid rgba(212, 165, 116, 0.2);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sobre-img {
        max-width: 100%;
        height: auto;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .servico-card {
        padding: 2rem 1.5rem;
    }
    
    .servico-card:hover {
        transform: translateY(-10px) scale(1.01);
    }
    
    .servico-icon {
        font-size: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .agendamento-form {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .agendamento-form {
        padding: 1.5rem 1rem;
    }

    .logo h1 {
        font-size: 1.1rem;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
    }
    
    .logo-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* Responsivo para botão WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

