/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B35; /* Laranja mais vibrante */
    --secondary-color: #FFD700; /* Amarelo Ouro */
    --green-color: #8BC34A;
    --dark-color: #2d3436;
    --text-color: #636e72;
    --light-color: #FFFDF5; /* Creme suave */
    --white: #FFFFFF;
    
    /* Gradients */
    --gradient-1: linear-gradient(135deg, #FFD700 0%, #FF6B35 100%);
    --gradient-2: linear-gradient(135deg, #8BC34A 0%, #7CB342 100%);
    --gradient-3: linear-gradient(135deg, #FF6B35 0%, #FF9F43 100%);
    --gradient-hero: linear-gradient(135deg, #FF9F43 0%, #FFD700 100%);
    
    /* Shadows & Radius */
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(255, 107, 53, 0.15);
    --radius-lg: 25px;
    --radius-md: 15px;
    
    /* Fonts */
    --font-title: 'Fredoka', sans-serif;
    --font-body: 'Nunito', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-color);
    background-image: radial-gradient(rgba(255, 215, 0, 0.15) 15%, transparent 16%), 
                      radial-gradient(rgba(255, 107, 53, 0.15) 15%, transparent 16%);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    color: var(--dark-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Navegação */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.navbar.scrolled {
    padding: 5px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.logo-img {
    height: 65px;
    width: auto;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-img:hover {
    transform: scale(1.1) rotate(3deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--primary-color);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 30px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
    filter: blur(5px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: white;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: #FF6B35;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: white;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: #FFD700;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(180deg); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    color: var(--white);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.1);
}

.text-pop {
    animation: popIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: var(--white);
}

.subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    animation: slideIn 1s ease-out 0.3s both;
    color: #2d3436;
    background: white;
    padding: 5px 20px;
    border-radius: 50px;
    display: inline-block;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes slideIn {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.hero-description {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out 0.6s both;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.9s both;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background: var(--white);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    background: white;
    color: var(--primary-color);
}

/* Separador de Onda (SVG) */
.wave-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-separator svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.wave-separator .shape-fill {
    fill: var(--light-color);
}

.wave-top {
    transform: rotate(0deg);
    top: -1px;
    bottom: auto;
}

/* Seções Gerais */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.title-underline {
    width: 80px;
    height: 6px;
    background: var(--secondary-color);
    margin: 0 auto;
    border-radius: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-top: 15px;
    font-weight: 600;
}

/* Sobre Section */
.sobre {
    background: var(--light-color);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-text h3 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.sobre-text p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #636e72;
}

.sobre-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    color: var(--dark-color);
    font-weight: 700;
    background: white;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.sobre-image {
    position: relative;
}

.sobre-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.5s ease;
    border: 5px solid white;
}

.sobre-image:hover img {
    transform: scale(1.02) rotate(2deg);
}

/* Serviços Section */
.servicos {
    background-color: #FFFFFF;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.servico-card {
    background: var(--light-color);
    padding: 50px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.servico-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
    background: white;
}

.card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.servico-card:hover .card-icon {
    transform: rotateY(180deg) scale(1.1);
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.servico-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.servico-card p {
    color: var(--text-color);
    font-size: 1.1rem;
}

/* Galeria Section */
.galeria {
    background: var(--light-color);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.galeria-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    height: 250px;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galeria-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.galeria-placeholder i {
    font-size: 4rem;
    color: var(--white);
    animation: pulse 2s infinite;
}

.galeria-placeholder p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-title);
}

/* Depoimentos Section */
.depoimentos {
    background: white;
    position: relative;
}

.depoimentos-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 300px;
}

.depoimento-card {
    background: var(--light-color);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px dashed #e0e0e0;
}

.depoimento-card.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
}

.stars {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.depoimento-text {
    font-size: 1.3rem;
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
    font-family: 'Fredoka', sans-serif;
}

.depoimento-autor {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #dfe6e9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* Contato Section */
.contato {
    background: var(--light-color);
}

.contato-info {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.info-item {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-bottom: 20px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(139, 195, 74, 0.3);
}

.info-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.info-text h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.social-link {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.social-link:hover {
    transform: translateY(-8px) rotate(15deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.5);
}

/* Footer */
.footer {
    background: #2d3436;
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 2.2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #b2bec3;
    text-decoration: none;
    line-height: 2.5;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.footer-contact p {
    color: #bdc3c7;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 5px;
}

.social-links-footer {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links-footer a {
    color: var(--secondary-color);
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.social-links-footer a:hover {
    transform: scale(1.1);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse 2s infinite;
    border: 3px solid white;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 40px 30px;
        box-shadow: var(--shadow);
        transition: right 0.3s ease;
        gap: 20px;
        border-top: 3px solid var(--primary-color);
    }

    .nav-menu.active {
        right: 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .sobre-content,
    .contato-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.2rem;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-links-footer {
        justify-content: center;
    }
}