:root {
    --orange: #d76a04;
    --orange-dark: #b15500;
    --yellow: #ffefb9;
    --white: #fff;
    --gray: #f4f4f4;
    --brown: #732605;
    --brown-mid: #28170f;
    --brown-dark: #160c08;
    --text: #070707;
}


* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--white);
    color: var(--brown-mid);
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1140px, calc(100% - 48px));
    margin-inline: auto;
}

.section {
    /* padding: 100px 0; */
    margin-top: 0px;
}

.hero-content {
    min-height: 520px;
    display: flex;
    align-items: center;
    background: linear-gradient(115deg, var(--yellow) 0%, #fff6d2 45%, var(--gray) 100%);
}

/* Banner da robótica seguindo o padrão do banner da página principal. */
.robotica-banner {
    position: relative;
    min-height: calc(100vh - 15vh);
    background-image: url('../img/bg-site-MOCICA-4.avif');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

@media only screen and (max-width:768px) {
    .robotica-banner {
        min-height: auto !important;
    }
}

@media only screen and (max-width:360px) {
    .robotica-banner {
        min-height: auto !important;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-copy {
    max-width: 530px;
}

.eyebrow {
    display: inline-block;
    margin: 0 0 16px;
    padding: 6px 11px;
    background: #ffd96f;
    color: var(--brown);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 0 0 14px;
    color: var(--brown);
    font-size: clamp(44px, 6vw, 74px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.055em;
}

.hero-copy h1 span,
h2 span,
blockquote span {
    color: var(--orange);
}

.lead {
    max-width: 480px;
    color: var(--brown);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
}

.actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 25px;
}

.robotica-container .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 2px solid transparent;
    border-radius: 100px;
    padding: 12px 23px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s, transform .2s;
}

.robotica-container .btn-orange {
    background: var(--orange);
    color: #fff;
}

.robotica-container .btn-orange:hover {
    background: var(--orange-dark);
    border-color: rgba(255, 255, 255, .85);
    color: #fff;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, .3);
    transform: translateY(-2px);
}

.robotica-container .btn span {
    font-size: 17px;
    line-height: 0;
}

.text-link {
    color: var(--brown);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.text-link span {
    margin-left: 8px;
    color: var(--orange);
    font-size: 17px;
}

.orange-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--orange);
}

.hero-visual {
    position: relative;
    min-height: 380px;
}

.hero-visual>img {
    width: min(460px, 92%);
    height: 340px;
    margin-left: auto;
    border: 10px solid rgba(255, 255, 255, .8);
    border-radius: 12px;
    background: rgba(255, 255, 255, .95);
    object-fit: contain;
    object-position: center;
    box-shadow: 0 18px 35px rgba(115, 38, 5, .16);
    transform: none;
}

.sticker {
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 104px;
    height: 104px;
    display: grid;
    place-content: center;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    text-align: center;
    transform: rotate(-12deg);
}

.sticker small {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
}

.sticker strong {
    font-size: 21px;
    line-height: .85;
}

.value-strip {
    overflow: hidden;
    padding: 13px 20px;
    background: var(--brown);
    color: #fff;
    text-align: center;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
}

.value-strip b {
    color: #ffd96f;
    padding: 0 12px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}

h2 {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--cor-marron);
    font-size: 1.6rem;
}

.section h2 {
    margin: 0 0 24px;
    color: var(--brown);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.055em;
    text-transform: uppercase;
}

.body-copy {
    max-width: 465px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
}

.ai-image-note {
    margin: 8px 30 0;
    color: rgba(22, 12, 8, .58);
    font-size: 11px;
    line-height: 1.3;
    text-align: right;
}

.image-card {
    position: relative;
    height: 400px;
    margin: 10px 0 0;
    overflow: hidden;
    border-radius: 8px;
}

.image-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(40, 23, 15, .62));
    content: "";
}

.image-card figcaption {
    position: absolute;
    z-index: 1;
    right: 20px;
    bottom: 22px;
    color: #fff;
    font-size: 27px;
    font-weight: 800;
    line-height: .9;
    letter-spacing: -.08em;
    text-align: right;
    text-transform: uppercase;
}

.image-card-caption {
    width: clamp(72px, 8vw, 110px);
    height: auto;
    opacity: .95;
}

.image-card em {
    color: #ffd96f;
    font-style: normal;
}

.journey,
.faq {
    color: var(--brown-mid);
}

.journey .section-heading-row {
    grid-column: 1;
    grid-row: 1;
    display: block;
    margin: 0;
}

.journey>.container {
    display: grid;
    grid-template-columns: minmax(260px, .8fr) minmax(0, 1.6fr);
    align-items: center;
    gap: 48px;
}

.journey h2,
.faq h2 {
    color: var(--brown);
}

.journey h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -.04em;
}

.section-intro {
    width: 320px;
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
}

.phase-grid {
    grid-column: 2;
    grid-row: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.phase-card {
    min-height: 190px;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    border: 0;
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 10px 24px rgba(40, 23, 15, .12);
    transition: transform .25s ease, box-shadow .25s ease;
}

.phase-card:nth-child(odd) {
    background: var(--orange);
}

.phase-card:nth-child(even) {
    background: var(--brown);
}

.phase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(40, 23, 15, .22);
}

.phase-number {
    color: rgb(255, 255, 255);
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.phase-icon {
    display: none;
}

.phase-card h3 {
    margin: 12px 0 8px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
}

.phase-card p {
    max-width: none;
    margin: 0;
    color: rgba(255, 255, 255, .85);
    font-size: 11px;
    line-height: 1.65;
}

.quote {
    text-align: center;
}

.quote-mark {
    height: 47px;
    color: var(--orange);
    font: 88px Georgia, serif;
}

.quote-caption {
    max-width: 760px;
    margin: 0 auto;
    color: var(--brown);
    font-size: clamp(1rem, 2vw, 1.18rem);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.quote-caption span {
    color: var(--orange);
}

.quote p {
    margin: 0;
    color: #907c70;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* ============== 
DOCUMENTOS ACORDION ROBÓTICA
=================
*/
/* Personalização do Accordeon */
.robotica-accordion {
    box-shadow: 2px 2px 4px rgba(20, 20, 20, 0.1);
    width: min(100%, 760px);
    margin: 0 auto;
}

.robotica-accordion .accordion-button {
    color: var(--cor-marron);
    font-size: 0.90rem;
}

.robotica-accordion .accordion-button::after {
    color: var(--cor-laranja);
}

.robotica-accordion .accordion-button:not(.collapsed) {
    background-color: var(--cor-laranja);
    color: var(--cor-branco);
}

.robotica-accordion .accordion-button:focus {
    box-shadow: none;
}

.robotica-accordion .accordion-body {
    box-shadow: 2px 2px 4px rgba(20, 20, 20, 0.1);
    color: var(--cor-marron);
}

.robotica-accordion .accordion-body .accordion-body {
    background-color: transparent;
    color: var(--cor-marron);
}

@media only screen and (max-width: 768px) {
    .robotica-accordion .accordion-button {
        position: relative;
        display: block;
        padding: 1rem 3.25rem 1rem 1rem;
        font-size: 0.95rem;
        line-height: 1.25;
        text-align: left;
        white-space: normal;
    }

    .robotica-accordion .accordion-button::after {
        position: absolute;
        top: 1.1rem;
        right: 1rem;
        margin-left: 0;
    }

    .robotica-accordion .accordion-button strong {
        display: inline;
        margin-right: 0.2rem;
    }

    .robotica-accordion .accordion-button .texto-extra {
        display: inline;
        margin-left: 0 !important;
        font-size: 0.82em !important;
        font-weight: 700;
    }
}

.doc-icon {
    display: inline-block;
    width: 28px;
    margin-right: 13px;
    color: var(--orange);
    font-size: 19px;
}

.tag {
    padding: 5px 8px;
    border-radius: 100px;
    background: var(--yellow);
    color: var(--brown);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.doc-arrow {
    color: var(--orange);
    font-size: 21px;
}

.section-heading-center {
    margin-bottom: 38px;
    text-align: center;
}

.section-heading-center h2 {
    margin-bottom: 0;
}

.proposal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.proposal-grid figure {
    margin: 0;
}

.proposal-grid img {
    width: 100%;
    height: 280px;
    border-radius: 8px;
    object-fit: cover;
}

.proposal-grid figcaption {
    margin-top: 10px;
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.faq {
    /* padding: 90px 0 100px; */
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
}

.robotica-faq-heading {
    max-width: 700px;
    margin: 0 auto 42px;
    text-align: center;
}

.robotica-faq-heading .eyebrow {
    margin-bottom: 14px;
}

.robotica-faq-heading h2 {
    margin-bottom: 16px;
}

.robotica-faq-heading__intro {
    max-width: 560px;
    margin: 0 auto;
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
}

.faq-list {
    width: 100%;
    max-width: 720px;
}

.faq-list details {
    border-top: 1px solid #d76a04;
}

.faq-list details:last-child {
    border-bottom: 1px solid #d76a04;
}

.faq-list summary {
    padding: 21px 0;
    color: var(--brown-mid);
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    float: right;
    color: #d76a04;
    content: '+';
    font-size: 23px;
    font-weight: 400;
}

.faq-list details[open] summary::after {
    content: '×';
}

.faq-list p {
    max-width: 520px;
    margin: -2px 0 20px;
    color: var(--text);
    font-size: 13px;
    line-height: 1.65;
}

@media (max-width:850px) {
    .container {
        width: min(100% - 36px, 600px);
    }

    .hero-content {
        padding: 60px 0 55px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .hero-visual {
        min-height: 340px;
    }

    .hero-visual>img {
        width: min(420px, 90%);
        height: 310px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .image-card {
        height: 330px;
    }

    .journey>.container {
        display: block;
    }

    .journey .section-heading-row {
        margin-bottom: 38px;
    }

    .section-intro {
        width: auto;
        margin-top: 28px;
    }

    .phase-grid {
        grid-template-columns: 1fr;
    }

    .phase-card {
        min-height: 200px;
    }

    .faq-list {
        margin-top: 40px;
    }
     
    .robotica-container h2{
        text-align: center;
    }
}

@media (max-width:480px) {
    #journey-title {
    font-size: 30px!important;
    }
    .section {
        /* padding: 75px 0; */
    }

    .hero-copy h1 {
        font-size: 48px;
    }

    .actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-visual {
        min-height: 295px;
    }

    .hero-visual>img {
        height: 260px;
        border-width: 9px;
    }

    .sticker {
        width: 86px;
        height: 86px;
    }

    .sticker strong {
        font-size: 18px;
    }

    .phase-grid,
    .proposal-grid {
        grid-template-columns: 1fr;
    }

    .phase-card {
        min-height: 170px;
    }

    .proposal-grid img {
        height: 230px;
    }

    .value-strip {
        white-space: normal;
        line-height: 1.6;
    }
    .robotica-container h2{
        text-align: center;
    }
}

.robotica-downloads .robotica-document-list {
    display: none;
}

/* Títulos alinhados ao padrão h2 utilizado pelo index.php. */
.robotica-container h2 {
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 4px;
    line-height: 1.2;
    text-transform: uppercase;
}

.robotica-container>.documents#documentos {
    display: none;
}

.robotica-participantes {
    padding: 72px 0 56px;
}

.robotica-participantes__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
    align-items: center;
    gap: 42px;
}

.robotica-participantes__intro {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
}

.robotica-participantes__intro .body-copy {
    width: 100%;
    max-width: 560px;
}

.robotica-participantes__highlight {
    position: relative;
    margin-top: 0;
    padding: 34px 36px;
    border: 1px solid rgba(215, 106, 4, .14);
    border-left: 5px solid var(--orange);
    border-radius: 0 18px 18px 18px;
    /* background: linear-gradient(135deg, #fff8de 0%, rgba(255, 239, 185, .82) 45%, rgba(255, 255, 255, .98) 100%); */
    box-shadow: 0 20px 40px rgba(115, 38, 5, .08);
}

.robotica-participantes__highlight h3 {
    margin: 0 0 10px;
    color: var(--brown);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.robotica-participantes__highlight p {
    width: 100%;
    max-width: none;
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
}

.robotica-participantes__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}

.robotica-container .btn-outline-robotica {
    border: 2px solid var(--orange);
    background: transparent;
    color: var(--brown);
}

.robotica-container .btn-outline-robotica:hover {
    background: var(--brown);
    border-color: var(--brown);
    color: #fff;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, .18);
    transform: translateY(-2px);
}

.robotica-cta {
    padding: 24px 0;
}

.robotica-cta__inner {
    width: min(1140px, calc(100% - 48px));
    min-height: 105px;
    margin: 0 auto;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border-radius: 8px;
}

.robotica-cta h2 {
    margin: 0;
    color: var(--brown);
    font-size: clamp(1.35rem, 3vw, 2rem);
    line-height: .95;
}

.robotica-cta h2 span {
    color: var(--orange);
}

.robotica-cta .btn {
    flex-shrink: 0;
}

.robotica-cta::before {
    display: block;
    width: min(1140px, calc(100% - 48px));
    height: 1px;
    margin: 0 auto 24px;
    background: linear-gradient(90deg, rgba(215, 106, 4, 0) 0%, rgba(215, 106, 4, .45) 20%, rgba(215, 106, 4, .45) 80%, rgba(215, 106, 4, 0) 100%);
    content: "";
}

@media (max-width:600px) {
    .robotica-participantes {
        padding: 52px 0 42px;
    }

    .robotica-participantes__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .robotica-participantes__highlight {
        padding: 24px 20px;
    }

    .robotica-participantes__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .robotica-cta__inner {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
}
