@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #E99A00;
    --primary-dark: #d18b00;
    --primary-light: #fff9e6;
    --dark: #111111;
    --dark-light: #1a1a1a;
    --dark-medium: #2a2a2a;
    --light: #ffffff;
    --gray: #f8f8f8;
    --gray-medium: #e8e8e8;
    --gray-dark: #666666;
    --border: #dddddd;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HERO SECTION */
.hero {
    background: url("./assets/imgs/prancheta.png");
    color: var(--light);
    padding: 120px 0 80px 0;
    text-align: center;
    position: relative;
    background-attachment: fixed;
    background-position: center;    
    background-size: cover;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
}

.highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin: 2.5rem auto;
    opacity: 0.9;
    font-weight: 300;
    max-width: 90%;
}

/* BUTTONS */
.cta-button {
    display: inline-block;
    background: var(--dark);
    color: #39ff14;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid #39ff14;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.6);
    text-transform: uppercase;
    animation: simple-neon-pulse 2s infinite;
}

@keyframes simple-neon-pulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(57, 255, 20, 0.8);
    }
}

/* SOCIAL PROOF */
.social-proof {
    padding: 80px 0;
    background: var(--primary);
    color: var(--light);
}

.proof-content {
    text-align: center;
    width: 100%;
}

.social-proof .container {
    background: var(--light);
    padding: 50px 20px;
    border-radius: 15px;
    margin: 0 auto;
    width: 95%;
    max-width: 1200px;
}

.social-proof a {
    width: 100%;
    max-width: 400px;
    margin: 30px 0;
    text-align: center;
}

.proof-text {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    text-align: center;
    color: var(--dark);
    width: 90%;
    margin: 0 auto 3rem auto;
}

/* GRID DAS IMAGENS */
.proof-grid {
    width: 100%;
    margin: 50px 0 30px 0;
}

.proof-grid .modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.proof-grid .module-card {
    background: transparent;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;    
}

.modules-grid .module-card:nth-child(7) .module-image img{
    transform: scaleX(-1) !important;
} 

.proof-grid .module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.proof-grid .module-image {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.proof-grid .module-image img {
    width: 100%;
    height: 100%;
    object-fit: inherit;
    display: block;
}

.proof-final {
    font-size: 1.4rem;
    margin: 3rem 0;
    text-align: center;
    color: var(--dark);
    width: 90%;
    margin: 50px auto;
    max-width: 800px;
}

.box-moedas {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.oferta-dia {
    background: var(--dark);
    color: var(--light);
    border-radius: 12px;
    text-align: center;
    font-size: 1.3rem;
    padding: 25px;
    width: 90%;
    max-width: 750px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

/* PROBLEMA + SOLUÇÃO */
.problem-solution {
    padding: 100px 0;
    background: var(--light);
}

.problem-solution a {
    margin:50px auto 0 auto;
}

.problem-solution .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light);
}

.problem-solution h2 {
    color: var(--dark);
}

.section-header p {
    font-size: 1.3rem;
    color: var(--gray-dark);
    max-width: 600px;
    margin: 0 auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--primary);
    border-radius: 12px;   
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;    
}

.problem-item:hover {
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.problem-item p {
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0;
    color: var(--dark);
}

.problem-item strong {
    font-weight: bold;
}

.solution-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--dark);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    max-width: 1440px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(233, 154, 0, 0.3);
}

.solution-box h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.solution-box p {
    font-size: 1.4rem;
    margin: 0;
    color: var(--dark);
    font-weight: 500;
}

/* AUTHORITY SECTION */
.authority {
    padding: 100px 0;
    background: var(--dark);
    color: var(--light);
}

.authority-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.authority-grid a {
    margin: 50px auto 20px auto;
    text-align: center;
}

.authority .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.authority .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.authority .section-header p {
    font-size: 1.3rem;
    color: var(--light);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.authority-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.authority-highlight {
    background: var(--gray);    
    border-radius: 15px;
    text-align: center;    
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 150px;
    gap: 10px;
}

.authority-highlight h3 {
    font-size: 2rem;
    color: var(--primary);
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark);
}

.authority-highlight p {
    color: var(--dark);
    font-size: 1.2rem;
    margin: 0;
    font-weight: 500;
}

.credentials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.credential-card {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(233, 154, 0, 0.3);
    transition: all 0.3s ease;
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.credential-card:hover {
    background: rgba(233, 154, 0, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.credential-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.credential-content {
    min-height: 90px;
}

.credential-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 600;
}

.credential-content p {
    color: var(--light);
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
}

.authority-cta {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(233, 154, 0, 0.3);
    width: 100%;
}

.cta-subtitle {
    margin-top: 1rem;
    color: var(--light);
    opacity: 0.8;
    font-size: 1.1rem;
}

/* METHOD */
.method {
    padding: 100px 0;
    background: var(--primary);
}

.method-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.method .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.method .section-header {
    margin-bottom: 0;
}

.method .cta-button {
    animation: simple-neon-pulse 2s infinite;
}

.method .cta-button:hover {
    animation: none;
}

.step {
    background: var(--light);
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(233, 154, 0, 0.2);
}

.step-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);    
}

.step h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--dark);
}

.step p {
    color: var(--gray-dark);
    line-height: 1.7;
    font-size: 1.4rem;
}

/* MODULES COM IMAGENS */
.modules {
    padding: 100px 0;
    background: var(--dark);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.module-card {
    background: var(--light);
    border-radius: 12px;
    padding: 0;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.module-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(233, 154, 0, 0.15);
}

.module-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.module-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.module-card:hover .module-image img {
    transform: scale(1.05);
}

.module-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    margin: 1rem 0 0.5rem 0;
    opacity: 0.8;
}

.module-card h4 {
    font-size: 1.2rem;
    margin: 0 1rem 1.5rem 1rem;
    color: var(--dark);
    font-weight: 600;
    line-height: 1.3;
}

/* BONUS SECTION IN MODULES */
.bonus-section {
    margin-top: 60px;
}

.bonus-header {
    text-align: center;
    margin-bottom: 40px;
}

.bonus-header h3 {
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 700;
}

.bonus-item {
    background: rgba(233, 154, 0, 0.1);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 2px solid var(--primary);
    text-align: center;
}

.bonus-item h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.bonus-item p {
    color: var(--light);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.bonus-warning {
    background: var(--primary);
    color: var(--dark);
    padding: 15px;
    border-radius: 8px;
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 700;
}

/* FESTA PLACEHOLDER */
.festa-placeholder {
    background: var(--dark);
    color: var(--light);
    border-radius: 15px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    border: 2px solid var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
    height: 100%;
    padding: 50px 0 100px 0;
}

.festa-placeholder .video-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 3rem auto 0;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    border: none;
}

.festa-text {
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: normal;
    font-style: italic;
}

/* ANCORAGEM */
.ancoragem {
    background: var(--gray);
    padding: 20px;
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
    border: 2px solid var(--primary);
}

.ancoragem h3 {
    color: var(--dark);
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.price-comparison {
    margin-bottom: 2.5rem;
    border-bottom: 2px solid var(--border);
}

.destaque-preco {
    color: var(--gray-dark);
    font-size: 1.4rem;
}

.old-price {
    color: var(--primary);    
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: bold;
}

.total-old {
    margin-top: 20px;
    padding-top: 20px;
    text-decoration: line-through;
    border-top: 1px solid var(--border);
    color: var(--dark);
    font-size: 1.2rem;
}

.new-price {
    margin-bottom: 2.5rem;
}

.new-price a {
    margin: 30px 0 10px 0;
}

.price-main {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(233, 154, 0, 0.2);
}

.price-installments {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.ancoragem-text {
    margin-top: 2rem;
    font-size: 1.2rem;
    color: var(--gray-dark);
}

/* INVESTMENT */
.investment {
    padding: 100px 0;
    background: var(--primary);
}

.investment-grid {
    max-width: 700px;
    margin: 0 auto;
}

.investment-card {
    background: var(--light);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    text-align: center;
    border: 2px solid var(--primary);
}

.includes {
    text-align: center;
    margin-bottom: 2.5rem;
    background: var(--dark);
    padding: 25px;
    border-radius: 12px;    
    margin: 50px 0;
    padding: 20px;
}

.includes h4 {
    color: var(--light);
    margin: 20px 0;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: left;
}

.includes ul {
    list-style: none;
}

.includes li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--light);
    text-align: left;
}

.guarantee {
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    border: 2px solid var(--light);
    background: var(--dark);
}

.guarantee h4 {
    color: var(--light);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    text-align: center;
}

.guarantee p {
    color: var(--light);
    margin: 0;
    font-size: 1.1rem;
    text-align: center;
}

.investment-final {
    font-style: italic;
    margin: 2rem 0;
    text-align: center;
    color: var(--gray-dark);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

.investment-cta {
    text-align: center;
    color: var(--primary);
    margin: 2rem 0;
    font-size: 1.8rem;
}

/* FINAL CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-medium) 100%);
    color: var(--light);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.cta-content > p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 3rem 0;
}

.countdown-item {
    background: var(--primary);
    padding: 20px 25px;
    border-radius: 12px;
    min-width: 100px;
    color: var(--dark);
    font-weight: 700;
}

.countdown-item span {
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
}

.countdown-item small {
    font-size: 1rem;
    opacity: 0.9;
}

/* VIDEO PLACEHOLDER */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 3rem auto 0;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-video {
    width: 100%;
    height: 400px;
    display: block;
    border-radius: 15px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.1) 50%,
        rgba(0,0,0,0.2) 100%
    );
    pointer-events: none;
}

.underline {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 10px;
    text-decoration-color: #fff;
}

/* ANIMAÇÃO DE PULSAÇÃO PARA OS BOTÕES CTA */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(233, 154, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(233, 154, 0, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(233, 154, 0, 0.3);
    }
}

@keyframes pulse-dark {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .modules-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
        width: 90%;
        margin: 0 auto;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        text-align: justify;
    }
    
    .proof-grid .modules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }

    .problem-item {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }

    .problem-content p {
        font-size: 1.2rem;
    }
    
    .authority .section-header h2 {
        font-size: 2.2rem;
    }
    
    .authority-highlight {
        padding: 30px 20px;
        height: 250px;
    }
    
    .authority-highlight h3 {
        font-size: 1.8rem;
    }

    .authority-highlight p {
        font-size: 1.2rem;
    }
    
    .credentials-grid {
        flex-direction: column;
    }
    
    .credential-card {
        flex: 1 1 100%;
    }
    
    .method-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .module-image {
        height: 160px;
        object-fit: fill;
    }
    
    .module-number {
        font-size: 2rem;
    }
    
    .module-card h4 {
        font-size: 1.1rem;
        margin: 0 0.8rem 1.2rem 0.8rem;
    }
    
    .bonus-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .price-main {
        font-size: 3rem;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 15px 20px;
    }
    
    .countdown-item span {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }

    .proof-text, .proof-final {
        text-align: justify;
        width: 90%;
    }

    .bonus-item p {
        text-align: justify;
        font-size: 1rem;
    }

    .festa-placeholder h2 {
        font-size: 1.3rem;
    }

    .ancoragem-text {
        font-size: 1rem;
    }

    .bonus-item h4 {
        text-align: center;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .proof-grid .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .module-image {
        height: 140px;
    }
    
    .module-number {
        font-size: 1.8rem;
    }
    
    .module-card h4 {
        font-size: 1rem;
        margin: 0 0.5rem 1rem 0.5rem;
    }
    
    .hero {
        padding: 80px 0;
        background-position: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
    
    .investment-card,
    .bonus-card {
        padding: 30px 20px;
    }

    .authority .section-header h2 {
        font-size: 1.8rem;
    }
    
    .authority-highlight h3 {
        font-size: 1.4rem;
    }
    
    .credential-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
        align-items: center;
    }
    
    .credential-content h4 {
        font-size: 1.6rem;
    }

    .credential-content p {
        font-size: 1.2rem;
    }

    .oferta-dia {
        font-size: 1.2rem;
        padding: 20px;
        width: 100%;
    }

    .step {
        padding: 10px;
    }

    .step-number {
        font-size: 2.5rem;
    }

    .step h3 {
        font-size: 1.5rem;
    }

    .step p {
        font-size: 1rem;
    }

    .ancoragem h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .ancoragem .old-price {
        margin-bottom: 0;
    }

    .ancoragem .total-old {
        margin-top: 0;
    }
}

/* NOTIFICAÇÕES - UMA DE CADA VEZ NO MESMO LUGAR */
#notification-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    width: 90%;
    pointer-events: none;
}

.notification {
    background: var(--light);
    color: var(--dark);
    padding: 16px 20px;
    border-radius: 15px;
    border: 3px solid var(--dark);
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100px) scale(0.9);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 400px;
    width: 100%;
    pointer-events: auto;
    font-family: 'Roboto', sans-serif;
}

.notification.show {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 1;
}

.notification.hide {
    transform: translateX(-50%) translateY(100px) scale(0.9);
    opacity: 0;
}

.notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--dark);
}

.notification-content {
    flex: 1;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 500;
}

.notification-content strong {
    font-weight: 900;
    color: var(--dark);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.notification-time {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 4px;
    font-weight: 700;
    font-style: italic;
}

.notification-close {
    background: var(--dark);
    border: 2px solid var(--dark);
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--primary);
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-weight: bold;
    flex-shrink: 0;
}

.notification-close:hover {    
    color: var(--dark);
    transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    #notification-container {
        bottom: 15px;
        max-width: 95%;
        width: 95%;
    }
    
    .notification {
        padding: 14px 16px;
        border-radius: 12px;
        gap: 12px;
        max-width: 100%;
    }
    
    .notification-content {
        font-size: 0.95rem;
    }
    
    .notification-close {
        width: 26px;
        height: 26px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    #notification-container {
        bottom: 10px;
        max-width: 98%;
        width: 98%;
    }
    
    .notification {
        padding: 12px 14px;
        border-radius: 10px;
        gap: 10px;
    }
    
    .notification-content {
        font-size: 0.9rem;
    }
    
    .notification-close {
        width: 24px;
        height: 24px;
        font-size: 1.2rem;
    }
    
    .notification-time {
        font-size: 0.8rem;
    }
}
.dev-footer {
  width: 100%;
  padding: 25px 0;
  background: #E99A00; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.dev-footer .footer-content {
  font-family: "Roboto", sans-serif;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.dev-footer a {
    font-weight: bold;
}

.dev-footer a {
  color: #000;
  font-weight: 600;
  position: relative;
  transition: 0.3s ease;
}



.dev-footer a:hover::after {
  width: 100%;
}

.dev-footer a:hover {
  color: #fff;
}


/* SEÇÃO DE AVALIAÇÕES GOOGLE */
.google-reviews {
    padding: 80px 0;
    background: var(--gray-dark);
}


.google-reviews .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.google-reviews .section-header h2 {
    font-size: 2.5rem;
    color: var(--light);
    font-weight: 700;
}

.google-reviews .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.google-reviews a {
    margin: 50px 0 0 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* CARD DE AVALIAÇÃO GOOGLE */
.google-review-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8eaed;
    transition: all 0.3s ease;
}

.google-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* HEADER DA AVALIAÇÃO */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    background: #f8f9fa;
    border: 1px solid #e8eaed;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #202124;
    margin: 0 0 4px 0;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-date,
.review-location {
    font-size: 0.8rem;
    color: #5f6368;
}

.google-logo svg {
    opacity: 0.8;
}

/* RATING E ESTRELAS */
.review-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #ffb400;
    font-size: 1.1rem;
}

.rating-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #202124;
}

/* CONTEÚDO DA AVALIAÇÃO */
.review-content {
    margin-bottom: 15px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #3c4043;
    margin: 0;
    font-style: normal;
    min-height: 100px;
}

/* FOOTER DA AVALIAÇÃO */
.review-footer {
    border-top: 1px solid #e8eaed;
    padding-top: 15px;
}

.google-business {
    font-size: 0.8rem;
    color: #5f6368;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .google-review-card {
        padding: 20px;
    }
    
    .google-reviews .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .review-header {
        gap: 10px;
    }
    
    .google-logo {
        align-self: flex-start;
    }
}