/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', 'Georgia', serif;
    line-height: 1.6;
    color: #e8e8e8;
    overflow-x: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1f1f1f 100%);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h2 {
    color: #d4af37;
    font-weight: 600;
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: #e8e8e8;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: #d4af37;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #d4af37, #b8860b);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #d4af37;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1f1f1f 100%);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(184, 134, 11, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.8rem;
    color: #e8e8e8;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}

.highlight {
    color: #d4af37;
    position: relative;
    font-style: italic;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #b8860b);
    border-radius: 2px;
    opacity: 0.8;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #b8b8b8;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
}

.feature i {
    color: #d4af37;
    font-size: 1.2rem;
    min-width: 20px;
}

.feature span {
    font-weight: 400;
    color: #e8e8e8;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #1a1a1a;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-primary.large {
    padding: 1.4rem 3rem;
    font-size: 1.1rem;
}

/* Hero Image - Layout Criativo */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 600px;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: linear-gradient(45deg, #d4af37, #b8860b, #d4af37);
    border-radius: 50% 20% 50% 20%;
    opacity: 0.15;
    z-index: -1;
    animation: rotate 20s linear infinite;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(-45deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.1));
    border-radius: 30% 70% 70% 30%;
    z-index: -1;
    animation: rotate 15s linear infinite reverse;
}

.photo-container {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: 30% 70% 70% 30%;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 175, 55, 0.3),
        inset 0 0 0 1px rgba(212, 175, 55, 0.1);
    transition: transform 0.3s ease;
}

.photo-container:hover {
    transform: scale(1.02) rotate(1deg);
}

.photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.photo-container:hover img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.1) 0%,
        transparent 30%,
        transparent 70%,
        rgba(184, 134, 11, 0.1) 100%
    );
    pointer-events: none;
}

/* Decorative Elements */
.floating-element {
    position: absolute;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 70%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 5%;
    animation-delay: 4s;
}

/* Sections */
section {
    padding: 6rem 0;
    background: #1a1a1a;
    position: relative;
}

section:nth-child(even) {
    background: #222222;
}

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

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: #e8e8e8;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.3px;
}

.section-header p {
    font-size: 1.15rem;
    color: #b8b8b8;
    max-width: 650px;
    margin: 0 auto;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.6;
}

/* Sobre Section */
.sobre {
    background: #1a1a1a;
    position: relative;
}

.sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.sobre-content {
    max-width: 900px;
    margin: 0 auto;
}

.sobre-text h3 {
    font-size: 2.2rem;
    color: #e8e8e8;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    text-align: center;
}

.sobre-text p {
    font-size: 1.1rem;
    color: #b8b8b8;
    margin-bottom: 3rem;
    line-height: 1.8;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}

.diferenciais {
    display: grid;
    gap: 2.5rem;
    margin-top: 3rem;
}

.diferencial {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #2d2d2d, #1f1f1f);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.diferencial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #d4af37, #b8860b);
}

.diferencial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.4);
}

.diferencial img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: sepia(1) hue-rotate(35deg) saturate(2) brightness(1.2);
}

.diferencial i {
    font-size: 3rem;
    color: #d4af37;
    min-width: 60px;
}

.diferencial h4 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #e8e8e8;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
}

.diferencial p {
    color: #b8b8b8;
    margin: 0;
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
}

/* Áreas de Atuação */
.areas {
    background: #222222;
    position: relative;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.area-card {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #b8860b);
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.4);
}

.area-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.area-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

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

.area-icon img {
    width: 45px;
    height: 45px;
    filter: brightness(0) invert(1);
}

.area-card h3 {
    font-size: 1.6rem;
    font-weight: 500;
    color: #e8e8e8;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.area-card ul {
    list-style: none;
}

.area-card li {
    padding: 1rem 0;
    color: #b8b8b8;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    padding-left: 2rem;
    font-family: 'Lato', sans-serif;
    transition: color 0.3s ease;
}

.area-card li:last-child {
    border-bottom: none;
}

.area-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 1.1rem;
}

.area-card li:hover {
    color: #d4af37;
}

/* Depoimentos */
.depoimentos {
    background: #1a1a1a;
    position: relative;
}

.depoimentos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.depoimento-card {
    background: linear-gradient(135deg, #2d2d2d, #1f1f1f);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.depoimento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #d4af37, #b8860b);
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.4);
}

.stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.stars i {
    color: #d4af37;
    font-size: 1.2rem;
}

.depoimento-card p {
    font-style: italic;
    color: #b8b8b8;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
}

.cliente strong {
    color: #e8e8e8;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
}

.cliente span {
    color: #d4af37;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
    font-family: 'Lato', sans-serif;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #1a1a1a;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="black" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}

/* Contato */
.contato {
    background: #222222;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.4);
}

.info-item i {
    font-size: 2.2rem;
    color: #d4af37;
    min-width: 50px;
}

.info-item h4 {
    font-weight: 500;
    color: #e8e8e8;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}

.info-item p {
    color: #b8b8b8;
    margin: 0;
    font-family: 'Lato', sans-serif;
}

.contato-form {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
    background: #1a1a1a;
    color: #e8e8e8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: #2d2d2d;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Footer */
.footer {
    background: #0d0d0d;
    color: #e8e8e8;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.footer-info p {
    color: #b8b8b8;
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #b8b8b8;
    font-family: 'Lato', sans-serif;
}

.footer-contact i {
    color: #d4af37;
    width: 25px;
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid #333;
    color: #888;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
}

/* Animações */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-content > * {
    animation: slideInLeft 0.8s ease-out;
}

.hero-content > *:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-content > *:nth-child(3) {
    animation-delay: 0.4s;
}

.hero-content > *:nth-child(4) {
    animation-delay: 0.6s;
}

.hero-image {
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-image {
        height: 400px;
    }
    
    .photo-container {
        width: 300px;
        height: 400px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .diferencial {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .photo-container {
        width: 250px;
        height: 350px;
    }
    
    .area-card {
        padding: 2rem;
    }
    
    .depoimento-card {
        padding: 2rem;
    }
    
    .contato-form {
        padding: 2rem;
    }
    
    section {
        padding: 4rem 0;
    }
}

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

/* Tipografia adicional */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Lato:wght@300;400;500;600&display=swap');

