:root {
   --main-color: #00d2ff;
   --black: #13131a;
   --bg: #010103;
   --border: 0.1rem solid rgba(255, 255, 255, 0.1);
   --success-color: #4CAF50;
   font-size: 10px;
}

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   outline: none;
   border: none;
   text-decoration: none;
   transition: 0.2s linear;
   font-family: 'Roboto', sans-serif;
}

body {
   background-color: var(--bg);
   color: #fff;
   overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

section {
   padding: 5rem 9%;
   margin: 0 auto;
   max-width: 1400px;
}

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

.header section {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 2rem 9%;
}

.logo {
    font-size: 3rem;
    color: #fff;
    font-weight: bold;
}

.logo strong {
    color: var(--main-color);
}

.navbar a {
   margin: 0 1.5rem;
   font-size: 1.8rem;
   color: #fff;
}

.navbar a:hover, .navbar a.active {
   color: var(--main-color);
}

.icons a {
    margin-left: 2rem;
    display: inline-block;
}

.icons img {
    filter: invert(1);
    opacity: 0.7;
}

.icons img:hover {
   opacity: 1;
   transform: translateY(-3px);
}

/* --- HOME / HERO --- */
.home-cont {
   min-height: 100vh;
   display: flex;
   align-items: center;
   background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("../images/background-tech.jpg");
   background-size: cover;
   background-position: center;
   padding: 0 9%;
}

.home-cont .content {
   max-width: 70rem;
}

.home-cont .content h3 {
   font-size: 6rem;
   text-transform: uppercase;
   color: #fff;
   line-height: 1.1;
}

.home-cont .content p {
   font-size: 2rem;
   font-weight: 300;
   line-height: 1.6;
   padding: 2rem 0;
   color: #ccc;
}

/* --- BOTÕES --- */
.btn {
   margin-top: 1rem;
   display: inline-block;
   padding: 1.5rem 3.5rem;
   font-size: 1.7rem;
   border-radius: 0.5rem;
   background: var(--main-color);
   color: #000;
   font-weight: bold;
   cursor: pointer;
}

.btn:hover {
   letter-spacing: 0.1rem;
   box-shadow: 0 0 20px var(--main-color);
}

.btn-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

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

.btn-outline:hover {
    background: var(--main-color) !important;
    color: #000 !important;
}

/* --- TÍTULOS --- */
.title {
   font-size: 4rem;
   color: #fff;
   text-align: center;
   text-transform: uppercase;
   margin-bottom: 5rem;
}

.title span {
   color: var(--main-color);
}

/* --- BOXES GERAIS --- */
.services .box-container {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
   gap: 2rem;
}

.services .box {
   padding: 3rem;
   text-align: center;
   border: var(--border);
   background: var(--black);
   border-radius: 1rem;
}

.services .box img {
    filter: invert(var(--main-color));
    margin-bottom: 1rem;
}

.services .box h3 {
   font-size: 2.2rem;
   color: #fff;
   padding: 1rem 0;
}

.services .box p {
   font-size: 1.5rem;
   color: #ccc;
   line-height: 1.6;
}

/* --- PROJETOS (MENU) - LARGURA TOTAL --- */
.menu .box-container {
   display: flex;
   flex-direction: column;
   gap: 6rem;
}

.menu .box {
   width: 100%;
   max-width: 100rem;
   margin: 0 auto;
   padding: 4rem;
   text-align: center;
   border: var(--border);
   background: var(--black);
   border-radius: 1rem;
   scroll-margin-top: 10rem;
}

.menu .box h3 {
   font-size: 3rem;
   color: #fff;
   padding: 1.5rem 0;
}

.menu .box p {
   font-size: 1.8rem;
   color: #ccc;
   line-height: 1.6;
   margin-bottom: 2rem;
}

.menu .box:hover {
   border-color: var(--main-color);
}

/* --- PORTFÓLIO ESPECÍFICO (MYNUTRI) --- */
.box-highlight {
    border: 2px solid var(--main-color) !important;
}

.box-highlight img {
    border-radius: 1rem;
    max-width: 80rem;
    margin: 0 auto;
}

.box-highlight h3 {
    color: var(--main-color) !important;
}

/* --- GOOGLE PLAY (destaque MyNutri) --- */
.play-store-block {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

.play-store-block .play-store-btn {
    width: 100%;
    max-width: 32rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.play-store-block .store-region-note {
    margin-top: 1.25rem;
    margin-bottom: 0;
    max-width: 38rem;
}

/* --- ÁREA DE DESCONTO PIX --- */
.pix-discount-area {
    margin: 3rem auto;
    padding: 2.5rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 1rem;
    border: 1px dashed var(--success-color);
    text-align: left;
    max-width: 60rem;
}

.pix-discount-area h4 {
    color: var(--success-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.pix-discount-area p.main-desc {
    font-size: 1.5rem;
    color: #fff;
}

.pix-discount-area p.sub-desc {
    font-size: 1.3rem;
    color: #bbb;
    margin-bottom: 2rem;
}

.pix-plans {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pix-plan-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.pix-plan-item .plan-name {
    font-size: 1.4rem;
}

.pix-plan-item .plan-price {
    font-size: 1.8rem;
    color: var(--main-color);
    font-weight: bold;
}

.btn-pix {
    background: var(--success-color) !important;
    border: none !important;
    width: 100%;
}

/* --- ÁREA PREMIUM EUR (mesmo padrão do PIX) --- */
.eur-discount-area {
    margin: 3rem auto;
    padding: 2.5rem;
    background: rgba(21, 101, 192, 0.1);
    border-radius: 1rem;
    border: 1px dashed rgba(100, 181, 246, 0.65);
    text-align: left;
    max-width: 60rem;
}

.eur-discount-area h4 {
    color: #64b5f6;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.eur-discount-area .main-desc {
    font-size: 1.5rem;
    color: #fff;
}

.eur-discount-area .sub-desc {
    font-size: 1.3rem;
    color: #bbb;
    margin-bottom: 2rem;
}

.eur-region-note {
    font-size: 1.25rem;
    color: #90caf9;
    margin: 0 0 1rem;
    line-height: 1.4;
}

.eur-promo-badge {
    color: #aed581;
    font-weight: 700;
}

.btn-eur {
    background: #1565c0 !important;
    border: none !important;
    width: 100%;
    color: #fff !important;
}

.eur-refund-note {
    margin-top: 1.25rem;
}

.eur-checkout-note {
    font-size: 1.2rem;
    color: #90caf9;
    margin-top: 1rem;
    line-height: 1.45;
    text-align: center;
}

.eur-modal .eur-modal-input {
    width: 100%;
    padding: 1.5rem;
    margin-top: 1.5rem;
    background: #222;
    color: #fff;
    border-radius: 0.5rem;
    border: 1px solid #444;
    font-size: 1.6rem;
    box-sizing: border-box;
}

.eur-modal .btn-eur-modal-submit {
    width: 100%;
    margin-top: 1.5rem;
    background: #1565c0;
    color: #fff;
}

#generate-eur-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.pix-region-note {
    font-size: 1.25rem;
    color: #9e9e9e;
    margin: 0 0 1rem;
    line-height: 1.4;
}

.store-region-note {
    font-size: 1.2rem;
    color: #aaa;
    margin-top: 1rem;
    text-align: center;
}

.pix-refund-note {
    font-size: 1.15rem;
    color: #888;
    line-height: 1.5;
    margin: 1.5rem 0 0;
    text-align: center;
}

.pix-modal .pix-refund-note {
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: left;
}

.pix-consent-label {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 1.5rem;
    padding: 1.2rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1.35rem;
    line-height: 1.45;
    color: #ccc;
    cursor: pointer;
    text-align: left;
}

.pix-consent-label input[type="checkbox"] {
    margin-top: 0.35rem;
    width: 1.8rem;
    height: 1.8rem;
    flex-shrink: 0;
    cursor: pointer;
}

.pix-consent-label span {
    flex: 1;
}

#generate-pix-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

/* --- ÁREA DO USUÁRIO --- */
.user-area {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

.user-area h4 {
    font-size: 1.6rem;
    color: #aaa;
    margin-bottom: 2rem;
}

.btn-report {
    display: block;
    width: 100%;
    padding: 1.8rem;
    background: var(--main-color);
    color: #000;
    font-weight: bold;
    border-radius: 0.5rem;
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.btn-report:hover {
    box-shadow: 0 0 15px var(--main-color);
    letter-spacing: 0.1rem;
}

.link-danger {
    font-size: 1.4rem;
    color: #555;
    text-decoration: underline;
}

.link-danger:hover {
    color: #ff4444;
}

/* --- SOBRE (ABOUT) --- */
.about .row {
   display: flex;
   align-items: center;
   justify-content: center;
   flex-wrap: wrap;
   gap: 4rem;
   background: var(--black);
   padding: 4rem;
   border-radius: 2rem;
}

.about .row .content {
   flex: 1 1 70rem;
   text-align: center;
}

.about .row .content p {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 3rem;
}

/* --- FOOTER --- */
.footer {
   background: var(--black);
   padding: 5rem 9%;
   text-align: center;
}

.footer .social-links {
    margin: 2rem 0;
}

.footer .social-links img {
   height: 4rem;
   margin: 0 1rem;
   transition: 0.3s;
}

.footer .social-links img:hover {
   transform: rotate(360deg);
}

.footer p {
    font-size: 1.6rem;
    color: #aaa;
}

.footer .footer-desc {
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

/* --- MODAL STYLE --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--black);
    padding: 3rem;
    border: var(--border);
    border-radius: 2rem;
    max-width: 50rem;
    width: 90%;
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1.5rem; right: 2rem;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
}

.support-options {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.copy-pix {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.copy-pix input {
    background: #222;
    color: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    width: 20rem;
}

#copy-btn {
    padding: 1rem;
    background: var(--main-color);
    color: #000;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: bold;
}

.support-region-label {
    font-size: 1.5rem;
    color: var(--main-color);
    font-weight: 700;
    margin: 0 0 0.5rem;
    width: 100%;
}

.support-international {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    width: 100%;
    text-align: left;
}

.support-intl-desc {
    font-size: 1.35rem;
    color: #bbb;
    line-height: 1.5;
    margin: 0 0 1.2rem;
}

.support-intl-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.support-intl-btn {
    display: inline-block;
    padding: 1.2rem 1.8rem;
    background: #238636;
    color: #fff !important;
    border-radius: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.support-intl-btn:hover {
    opacity: 0.92;
}

@media (max-width: 768px) {
    section { padding: 3rem 5%; }
    .home-cont .content h3 { font-size: 4rem; }
    .navbar { display: none; }
}
