* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; }

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

#sales-header {
    padding: 10px;
    background-color: #2f629b;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

#sales-header b { font-weight: 700; }

#sales-header ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

#sales-header a:hover { opacity: 0.8; }

.logo-header {
    padding: 10px 0;
    background-color: #ffffff;
}

.logo-header .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.logo-global { width: 170px; }
.logo-porto { width: 200px; }

.hero-section-new {
    background: #469df4 url('../images/cel-porto.avif') no-repeat center top;
    background-size: 300px;
    background-position: bottom;
    padding: 40px 20px;
    color: white;
    min-height: 500px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 400px 1fr;
    gap: 30px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-left img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 15px;
}

.hero-left span {
    align-self: baseline;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    background-color: #34568E;
    padding: 5px;
    border-radius: 5px;
    display: inline-block;
}

.hero-title {
    font-size: 44px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0px 0px 15px rgba(0,0,0,0.2);
}

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

.hero-main-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

.hero-right {
    grid-column: 3;
}

.white-box {
    background-color: white;
    color: #333;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.white-box h2 {
    font-size: 32px;
    color: #2f629b;
    margin-bottom: 15px;
}

.discount-text {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

.info-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.marcas-scroll-section {
    background-color: #ffffff;
    padding: 20px 0;
    overflow: hidden;
}

.marcas-scroll-container {
    width: 100%;
    overflow: hidden;
}

.marcas-scroll-track {
    display: flex;
    width: fit-content;
    animation: scroll-infinito 30s linear infinite;
}

.marcas-scroll-content {
    display: flex;
    align-items: center;
    padding: 0 30px;
}

.marcas-scroll-content img {
    height: 50px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    flex-shrink: 0;
    margin: 0 30px;
}

@keyframes scroll-infinito {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.planos-section-new {
    padding: 60px 20px;
    background-color: #2f629b;
    color: white;
}

.planos-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: flex-start;
}

.planos-image {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
}

.planos-right h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: white;
}

.plano-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.plano-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plano-icon svg {
    width: 24px;
    height: 24px;
}

.plano-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.plano-content p {
    font-size: 14px;
    line-height: 1.5;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #0044cc;
    color: white;
}

.btn-primary:hover {
    background-color: #003399;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,68,204,0.3);
}

.btn-xs { padding: 8px 16px; font-size: 12px; }
.btn-md { padding: 12px 24px; font-size: 16px; }
.btn-lg { padding: 16px 40px; font-size: 18px; width: 100%; }

.produtos-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
}

.produtos-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #2f629b;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.produto-card {
    background-color: white;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.produto-card img { margin: 0 auto 20px; }

.produto-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #2f629b;
}

.beneficios-section-new {
    padding: 60px 20px;
    background-color: #ffffff;
}

.beneficios-section-new h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #2f629b;
}

.beneficios-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.beneficio-item-new {
    display: flex;
    gap: 20px;
    align-items: center;
}

.beneficio-item-new img {
    flex-shrink: 0;
    width: 80px;
    height: auto;
    object-fit: contain;
}

.beneficio-item-new p {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.passos-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
}

.passos-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    color: #2f629b;
}

.passos-section .subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
}

.passos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.passos-grid::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 3px;
    background-color: #479FF5;
    z-index: 0;
}

.passo-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.passo-numero {
    width: 90px;
    height: 90px;
    margin: 0 auto 15px;
    background: #479FF5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 700;
    color: white;
}

.passo-item p {
    font-size: 14px;
    line-height: 1.5;
}

.cta-center { text-align: center; }

.faq-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #2f629b;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background-color: #f8f8f8;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #e8e8e8;
}

.faq-question.active {
    background-color: #2f629b;
    color: white;
}

.faq-icon {
    font-size: 24px;
    font-weight: 700;
    transition: transform 0.3s;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 20px;
}

.faq-answer.open {
    max-height: 500px;
    padding: 20px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

#site-footer-new {
    background-color: #2f629b;
    color: white;
    padding: 40px 20px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 30px;
    align-items: start;
}

.footer-logo {
    max-width: 250px;
    margin-bottom: 20px;
}

.footer-company {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-subtitle {
    font-size: 14px;
    opacity: 0.9;
}

.footer-right h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.footer-phones-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 40px;
    margin-bottom: 20px;
}

.phone-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone-column a {
    font-size: 16px;
}

.phone-column a:hover {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.footer-links a {
    font-size: 14px;
    text-decoration: underline;
}

.footer-legal {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
}

.footer-legal p {
    font-size: 12px;
    line-height: 1.6;
    opacity: 0.8;
    text-align: center;
}

.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    background-color: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 14px;
}

.whatsapp-widget:hover .whatsapp-tooltip {
    display: block;
}

.parcelas-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.parcelas-content {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.parcelas-image {
    flex-shrink: 0;
    width: 100%;
    max-width: 400px;
}

.parcelas-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.parcelas-text h2 {
    font-size: 28px;
    color: #2f629b;
    margin-bottom: 15px;
}

.parcelas-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
}

.parceiros-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
}

.parceiros-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #2f629b;
}

.parceiros-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.parceiros-image {
    width: 100%;
    max-width: 600px;
}

.parceiros-image img {
    width: 100%;
    height: auto;
}

.parceiros-text {
    text-align: center;
}

.parceiros-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

@media (max-width: 1024px) {
    
    #sales-header ul {gap:10px; justify-content: center;}

    .logo-header .container {
        gap: 20px;
        justify-content: center;
        flex-wrap: nowrap;
    }
    .logo-global { width: 120px; }
    .logo-porto { width: 140px; }

    #sales-header {
        flex-direction: column;
        gap: 10px;
    }

    .hero-section-new {
        padding: 20px 0 0 0;
        background: #469df4;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 0;
        display: flex;
        flex-direction: column;
        padding: 0;
        max-width: 1200px;
    }

    .hero-left {
        text-align: center;
        align-items: center;
        margin-bottom: 20px;
        order: 1;
        padding: 0 20px;
    }

    .hero-left img {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
    }

    .hero-left span {
        font-size: 14px;
    }

    .hero-title {
        font-size: 32px;
        text-align: left;
    }

    .hero-center {
        order: 2;
        display: none;
    }

    .hero-main-image {
        display: none;
    }

    .hero-right {
        grid-column: auto;
        order: 3;
        width: 100%;
        margin-top: -28px;
    }

    .hero-right::before {
        content: '';
        display: block;
        width: 100%;
        max-width: 300px;
        height: 170px;
        background: url('../images/cel-porto-mb.avif') no-repeat center center;
        background-size: contain;
        margin: 0 auto 0;
    }

    .white-box {
        padding: 30px 20px;
        border-radius: 0;
        box-shadow: none;
    }

    .white-box h2 {
        font-size: 24px;
    }

    .marcas-scroll-section {
        padding: 0 0 20px 0;
    }

    .marcas-scroll-content {
        padding: 0 20px;
    }

    .marcas-scroll-content img {
        height: 35px;
        width: auto;
        max-width: 90px;
        margin: 0 20px;
    }

    .planos-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .planos-image {
        max-width: 200px;
        margin: 0 auto;
    }

    .beneficios-grid-new {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .passos-grid {
        grid-template-columns: 1fr;
    }

    .passos-grid::before {
        display: none;
    }

    .produtos-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-phones-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .whatsapp-widget {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
    }

    .parcelas-content {
        flex-direction: column;
        gap: 20px;
    }

    .parcelas-image {
        max-width: 300px;
    }

    .parcelas-text h2 {
        font-size: 24px;
        text-align: center;
    }

    .parcelas-text {
        text-align: center;
    }

    .parceiros-image {
        max-width: 300px;
    }
}
