/* Variáveis */
:root {
    --primary: #e83e8c;
    --secondary: #ff6b9d;
    --dark: #2a2a2a;
    --light: #f8f9fa;
    --gold: #d4af37;
    --whatsapp: #25D366;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    list-style: none;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(232,62,140,0.3);
}

.btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(232,62,140,0.4);
}

.btn-whatsapp {
    background: var(--whatsapp);
    margin-left: 15px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}

.heading {
    text-align: center;
    font-size: 36px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 60px;
    position: relative;
}

.heading span {
    color: var(--primary);
}

.heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin: 15px auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--dark);
}

.logo span {
    color: var(--primary);
}

.navbar ul {
    display: flex;
    gap: 30px;
}

.navbar a {
    color: var(--dark);
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.navbar a:hover {
    color: var(--primary);
}

.navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    bottom: -5px;
    left: 0;
    transition: all 0.3s ease;
}

.navbar a:hover::after {
    width: 100%;
}

.social a {
    color: var(--dark);
    margin-left: 15px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.menu-btn {
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, rgba(232,62,140,0.1) 0%, rgba(255,255,255,1) 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero .content {
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero .buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero .image {
    position: relative;
}

.hero .image img {
    max-width: 500px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transform: perspective(1000px) rotateY(-10deg);
    transition: all 0.5s ease;
}

.hero .image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

/* Services Section */
.services {
    background: white;
}

.box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.box {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary);
}

.box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.box .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.box h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.box p {
    margin-bottom: 20px;
    color: #555;
}

/* Portfolio Section */
.portfolio {
    background: var(--light);
}

.portfolio-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.portfolio-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.portfolio-box:hover img {
    transform: scale(1.1);
}

.portfolio-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.1), var(--primary));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transform: translateY(100%);
    transition: all 0.5s ease;
}

.portfolio-box:hover .portfolio-layer {
    transform: translateY(0);
}

.portfolio-layer h4 {
    font-size: 20px;
    color: white;
    margin-bottom: 10px;
}

.portfolio-layer p {
    color: #eee;
    margin-bottom: 20px;
}

.portfolio-layer a {
    width: 40px;
    height: 40px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

/* About Section */
.about .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about .image {
    flex: 1;
}

.about .image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about .content {
    flex: 1;
}

.about h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary);
}

.about p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Contact Section */
.contact form {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.input-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.input-box input {
    width: 48%;
    padding: 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    resize: none;
    min-height: 150px;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 50px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    font-family: 'Playfair Display', serif;
}

.footer-box h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--primary);
    bottom: -10px;
    left: 0;
}

.footer-box p {
    margin-bottom: 15px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: #ddd;
    transition: all 0.3s ease;
}

.footer-box ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-box .social {
    display: flex;
    gap: 15px;
}

.footer-box .social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-box .social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-box i {
    margin-right: 8px;
    color: var(--primary);
}

.copyright {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    opacity: 0.8;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37,211,102,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37,211,102,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

/* Responsivo */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero .content {
        margin-bottom: 50px;
    }
    
    .hero .buttons {
        justify-content: center;
    }
    
    .about .container {
        flex-direction: column;
    }
    
    .about .image {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }
    
    .navbar {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: white;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }
    
    .navbar.active {
        left: 0;
    }
    
    .navbar ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .social {
        display: none;
    }
    
    .input-box input {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .btn-whatsapp {
        margin-left: 0;
    }
    
    .heading {
        font-size: 30px;
    }
}
