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

:root {
    --pearl-white: #FEFEFE;
    --cream: #F9F7F4;
    --burgundy: #800020;
    --gold: #B8860B;
    --gold-light: #DAA520;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.15);
}

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

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-left {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-right {
    animation: fadeInRight 0.8s ease-out;
}

.animate-scale {
    animation: scaleIn 0.6s ease-out;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--burgundy);
    border-radius: 2px;
}

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

.btn-primary {
    background: var(--burgundy);
    color: white;
    box-shadow: 0 4px 15px rgba(128, 0, 32, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(128, 0, 32, 0.4);
    background: #a0002a;
}

/* Hero Section (Exata do Anexo) */
.hero {
    min-height: 80vh;
    background: url('assets/images/CalacattaGold.jpg') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 248, 248, 0.95);
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 70vh;
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-content {
    max-width: 500px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--burgundy);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.hero-btn {
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, var(--burgundy), #a0002a);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
    filter: brightness(115%);
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image-container {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center center;
    border-radius: 25px;
    box-shadow: 0 20px 60px var(--shadow-dark);
    border: 4px solid var(--gold);
}

/* Method Section (Estilo 2) */
.method {
    padding: 6rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/CalacattaGold.jpg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

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

.method-text {
    animation: fadeInLeft 0.8s ease-out;
}

.method .section-title {
    text-align: left;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.method .section-title::after {
    left: 0;
    transform: none;
    background: var(--burgundy);
}

.method-subtitle {
    font-size: 1.3rem;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
    text-transform: uppercase;
}

.method-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

.method-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateX(-20px);
    opacity: 0;
    animation: fadeInLeft 0.5s ease-out forwards;
}

.benefit:nth-child(1) { animation-delay: 0.8s; }
.benefit:nth-child(2) { animation-delay: 1s; }
.benefit:nth-child(3) { animation-delay: 1.2s; }

.benefit i {
    color: var(--gold);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.benefit:hover i {
    transform: scale(1.2);
}

.method-image {
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

/* PIX Scam Section */
.pix-scam {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--pearl-white) 100%);
    position: relative;
    overflow: hidden;
}

.pix-scam::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/CalacattaGold.jpg') center/cover;
    opacity: 0.05;
    z-index: 0;
}

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

.pix-scam-image {
    animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.pix-scam-text {
    animation: fadeInRight 0.8s ease-out;
}

.pix-scam .section-title {
    text-align: left;
    color: var(--text-dark);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.pix-scam .section-title::after {
    left: 0;
    transform: none;
    background: var(--burgundy);
}

.pix-scam-subtitle {
    font-size: 1.3rem;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
    text-transform: uppercase;
}

.pix-scam-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.8s forwards;
}

.instagram-section {
    padding: 6rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.instagram-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/CalacattaGold.jpg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

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

.instagram-text {
    animation: fadeInLeft 0.8s ease-out;
}

.instagram-section .section-title {
    text-align: left;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.instagram-section .section-title::after {
    left: 0;
    transform: none;
    background: var(--burgundy);
}

.instagram-subtitle {
    font-size: 1.3rem;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.instagram-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

.instagram-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.instagram-image {
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.instagram-photo {
    transform: scaleX(-1);
}

/* Monthly Client Section */
.monthly-client {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--pearl-white) 100%);
    position: relative;
    overflow: hidden;
}

.monthly-client::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/CalacattaGold.jpg') center/cover;
    opacity: 0.08;
    z-index: 0;
}

.monthly-photo-frame-container {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 800px;
}

.monthly-client .polaroid-frame {
    background: white;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 650px;
}

.monthly-client-content {
    background: white;
    border: 1px solid #f0f0f0;
    padding: 2rem 2.5rem;
    text-align: center;
}

.monthly-client-text {
    animation: scaleIn 0.8s ease-out;
}

.monthly-client .section-title {
    text-align: center;
}

.monthly-client .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.monthly-client-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.monthly-client-cta {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 2rem;
}

.monthly-btn-frame {
    /* Herda estilos de .btn e .btn-primary */
}

/* Business Services Section */
.business-services {
    padding: 6rem 1rem;
    background-color: var(--pearl-white);
}

.business-services .services-intro-lead {
    text-align: center;
    font-size: 1.3rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--burgundy);
    margin-top: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.business-services .services-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 1rem auto 3rem auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.service-category {
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.service-category:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-category h3 {
    font-size: 1.2rem;
    color: var(--burgundy);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
}

.service-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-category li {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-category li::before {
    content: '•';
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.services-button-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* MODAL STYLES */
.modal-overlay {
    display: none; /* Escondido por padrão */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.close-modal-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}
.close-modal-btn:hover {
    color: var(--text-dark);
}
.modal-content .section-title {
    margin-top: 1rem;
}
.modal-content .services-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 1rem auto 2rem auto;
    text-align: center;
}
.modal-overlay .services-button-container {
    margin-top: 2rem;
}
/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 2rem 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/CalacattaGold.jpg') center/cover;
    opacity: 0.03;
    z-index: 0;
}

.footer-bottom {
    text-align: center;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        min-height: auto;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .hero-image {
        height: 400px;
    }
    .method-content,
    .pix-scam-content,
    .instagram-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .method .section-title,
    .pix-scam .section-title,
    .instagram-section .section-title {
        text-align: center;
    }
    .method .section-title::after,
    .pix-scam .section-title::after,
    .instagram-section .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .method-photo,
    .pix-photo,
    .instagram-photo {
        height: auto;
        width: 100%;
        max-width: 300px;
    }
    .method,
    .pix-scam,
    .instagram-section,
    .monthly-client,
    .business-services {
        padding: 4rem 1rem;
    }
    .method-benefits,
    .instagram-benefits {
        gap: 1.5rem;
    }
    .benefit {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 10px;
        box-shadow: 0 2px 10px var(--shadow);
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-description {
        font-size: 0.9rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .method-subtitle,
    .pix-scam-subtitle,
    .instagram-subtitle {
        font-size: 1.1rem;
    }
    .method-description,
    .pix-scam-description,
    .instagram-description,
    .monthly-client-description {
        font-size: 1rem;
    }
    .monthly-client-content {
        padding: 1.5rem;
    }
}

/* Polaroid Effect */
.polaroid-frame {
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.polaroid-frame img {
    display: block;
    width: 100%;
    height: auto;
}

.polaroid-frame.rotate-left {
    transform: rotate(-2deg);
}

.polaroid-frame.rotate-right {
    transform: rotate(2deg);
}

.polaroid-frame:hover {
    transform: scale(1.05) rotate(0deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

/* HOVER DAS FOTOS POLAROID */
.instagram-image .polaroid-frame, 
.pix-scam-image .polaroid-frame, 
.method-image .polaroid-frame {
    background: white;
    padding: 15px 15px 40px 15px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.instagram-image .polaroid-frame:hover, 
.pix-scam-image .polaroid-frame:hover, 
.method-image .polaroid-frame:hover {
    transform: scale(1.05) translateY(-10px) rotate(0deg);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.25);
}


/* Adjustments for specific sections */
.method-photo,
.pix-photo,
.instagram-photo {
    object-fit: contain;
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.method-image,
.pix-scam-image,
.instagram-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.method-btn {
    background: var(--burgundy);
    color: white;
    box-shadow: 0 4px 15px rgba(128, 0, 32, 0.3);
    margin-top: 2rem;
}

.method-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(128, 0, 32, 0.4);
    background: #a0002a;
}
