/* ============================================
   PRIMAZZI MÓVEIS - LANDING PAGE CSS
   Design: Minimalismo Luxuoso
   Tipografia: Playfair Display + Inter
   ============================================ */

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

:root {
    --primary-color: #333333;
    --accent-color: #d4af37;
    --light-bg: #f9f9f9;
    --dark-bg: #1a1a1a;
    --text-color: #333333;
    --light-text: #666666;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --light-gray: #f5f5f5;
}

/* Tipografia */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--light-text);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--accent-color);
}

.header-whatsapp {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.header-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .nav {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .header-whatsapp {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .nav {
        display: none;
    }
}

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-gold {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

@media (max-width: 480px) {
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-light {
    background-color: var(--white);
}

.section-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--light-text);
    font-weight: 300;
    margin-bottom: 3rem;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 1.5rem auto;
}

/* Problem Section */
.problem-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.problem-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.problem-text {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.problem-statement {
    font-size: 1.125rem;
    color: var(--light-text);
    font-weight: 300;
}

/* Solution Section */
.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.solution-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.solution-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.solution-promise {
    background-color: var(--light-bg);
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    margin-top: 2rem;
}

.solution-promise p {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--primary-color);
    margin: 0;
}

@media (max-width: 768px) {
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--light-bg);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.25rem;
}

.product-card p {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
}

/* Differentials Grid */
.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.differential-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s;
}

.differential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.differential-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.differential-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.differential-card p {
    font-size: 0.95rem;
    margin: 0;
}

/* Emotional Section */
.emotional-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.emotional-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.emotional-main {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.emotional-statement {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.emotional-promise {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 4px;
    margin-top: 2rem;
}

.emotional-promise p {
    font-size: 1.05rem;
    margin: 0;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 4px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent-color);
}

/* CTA Strong */
.cta-strong-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-strong-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.cta-strong-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.cta-microcopy {
    font-size: 0.95rem;
    color: var(--light-text);
    margin-top: 1rem;
}

/* Instagram Feed */
.instagram-feed {
    margin-top: 3rem;
}

.instagram-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.instagram-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
}

.instagram-carousel::-webkit-scrollbar {
    height: 8px;
}

.instagram-carousel::-webkit-scrollbar-track {
    background: var(--light-gray);
}

.instagram-carousel::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

.instagram-carousel::-webkit-scrollbar-thumb:hover {
    background: #b8935a;
}

.instagram-post {
    flex: 0 0 300px;
    height: 300px;
    background-color: var(--light-gray);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-post-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.instagram-post:hover .instagram-post-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.instagram-post-icon {
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.instagram-post:hover .instagram-post-icon {
    opacity: 1;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-color);
    background-color: white;
    color: var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.25rem;
}

.carousel-btn:hover {
    background-color: var(--accent-color);
    color: white;
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Location Section */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.location-map {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.location-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.location-item {
    margin-bottom: 1.5rem;
}

.location-item-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.location-item-content {
    color: var(--light-text);
    font-size: 0.95rem;
}

.location-item-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.location-item-content a:hover {
    text-decoration: underline;
}

.location-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 1.5rem 0;
}

@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .location-map iframe {
        height: 300px;
    }
}

/* Closing Section */
.closing-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.closing-content h2 {
    background: linear-gradient(135deg, #d4af37 0%, #f0e68c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.closing-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.closing-cta {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.closing-content .btn {
    margin-top: 1rem;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.floating-whatsapp svg {
    width: 1.75rem;
    height: 1.75rem;
}

@media (max-width: 480px) {
    .floating-whatsapp {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }
    
    .floating-whatsapp svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .cta-strong-buttons {
        flex-direction: column;
    }
    
    .cta-strong-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .instagram-post {
        flex: 0 0 250px;
        height: 250px;
    }
}

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

.section {
    animation: fadeInUp 0.6s ease-out;
}
