/* Reset and Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #1e3a5f;
    --color-secondary: #f5a623;
    --color-accent: #e74c3c;
    --color-background: #ffffff;
    --color-foreground: #333333;
    --color-blue: #00498B;
    --color-blue-lighter: #045DAE;
    --color-blue-light: #2596BE;
    --color-gray: #373737;
    --color-gray-light: #EFF3F4;
    --color-white: #ffffff;
    --color-bg-gray: #ABABAB;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --content-size: 1200px;
    --wide-size: 1300px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-foreground);
    background-color: var(--color-background);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.2);
    /*backdrop-filter: blur(10px);*/
}

.admin-bar .header{
    top: 32px;
}

.header-container {
    max-width: var(--wide-size);
    margin: 0 auto;
    padding: 14px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-henry {
    width: 150px;
    height: 60px;
}

.header-nav {
    display: flex;
    gap: 10px;
}

.nav-link {
    font-weight: 900;
    font-size: 12px;
    padding: 4px 10px;
    color: var(--color-foreground);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-blue);
}

.btn-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-blue);
    color: var(--color-white);
    font-weight: 600;
    font-size: 12px;
    padding: 10px 14px;
    border-radius: 100px;
    transition: background 0.3s ease;
}

.btn-contact:hover {
    background: var(--color-blue-lighter);
}

.btn-contact svg{
    transition: all 300ms;
}

.btn-contact:hover svg{
    transform: translateX(4px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-foreground);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-link {
    font-weight: 900;
    font-size: 18px;
    color: var(--color-foreground);
    padding: 10px 20px;
}

.btn-contact-mobile {
    display: inline-block;
    background: var(--color-blue);
    color: var(--color-white);
    font-weight: 600;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 100px;
    margin-top: 20px;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 721px;
    background: var(--color-bg-gray);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero-container {
    position: relative;
    width: 100%;
    max-width: var(--wide-size);
    margin: 0 auto;
    padding: 70px;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

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

.hero-title {
    font-weight: 900;
    font-size: 2.38rem;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-blue-light);
}

.hero-subtitle {
    font-weight: 700;
    font-size: 1.57rem;
    color: var(--color-blue);
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-description {
    font-weight: 400;
    font-size: 1.13rem;
    color: var(--color-blue);
    line-height: 1.2;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-language-icons {
    position: absolute;
    bottom: 20px;
    right: 70px;
}

.hero-language-icons .gtranslate_wrapper{
    display: flex;
    gap: 12px;
}

.hero-language-icons img{
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 1000px;
}

/* Sobre Section */
.sobre {
    padding-top: 99px;
    min-height: 770px;
    background: var(--color-gray-light);
    position: relative;
}

.sobre-container {
    max-width: var(--wide-size);
    margin: 0 auto;
    position: relative;
    display: flex;
}

.sobre-content {
    margin-left: 89px;
    width: 100%;
    max-width: 538px;
    background-color: #ffffff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;

    box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.15);
    border-radius: 12px;

}

.sobre-logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.sobre-logo svg {
    width: 225px;
    height: 70px;
}

.sobre-text h2 {
    font-weight: 900;
    font-size: 24px;
    color: var(--color-blue);
    margin-bottom: 15px;
    line-height: 1.4;
}

.sobre-text p {
    font-size: 24px;
    color: var(--color-gray);
    line-height: 1.4;
}

.sobre-text strong {
    font-weight: 700;
}

.sobre-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.sobre-picture{
    width: 100%;
    height: 100%;
}

.sobre-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top right;
}

/* Gallery Section */
.gallery {
    padding: 60px 70px;
    background: var(--color-gray-light);
}

.gallery-container {
    --gap: 55px;
    --cols: 3;
    max-width: var(--content-size);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: var(--gap);
    flex-wrap: wrap;
}

.gallery-item {
    width: 100%;
    max-width: calc((100% / var(--cols)) - (var(--gap) * (var(--cols) - 1)) / var(--cols));
    background: var(--color-white);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    object-fit: cover;
}

/* Como Funciona Section */
.como-funciona {
    padding: 80px 70px 232px 70px;
    background: var(--color-gray-light);
    position: relative;
}

.como-funciona-bg{
    position: absolute;
    left: 0;
    top: 50%;
    background: var(--color-background);
    width: 100%;
    height: 50%;
}

.como-funciona-container {
    max-width: var(--wide-size);
    margin: 0 auto;
    background: var(--color-blue);
    border-radius: 32px;
    padding: 47px 62px 48px;
    color: var(--color-white);
    position: relative;
    display: flex;
}

.como-funciona-text h2 {
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 15px;
}

.como-funciona-text p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.como-funciona-text strong {
    font-weight: 700;
}

.como-funciona-content{
    flex: 1;
}

.como-funciona-image {
    flex: 1;
    width: 643px;
    display: flex;
    align-items: center;
}

.como-funciona-picture{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

/*.como-funciona-img {
    object-fit: cover;
}*/

.como-funciona-text-bottom {
    margin-top: 30px;
}

.como-funciona-text-bottom p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.como-funciona-text-bottom strong {
    font-weight: 700;
}

/* Vantagens Section */
.vantagens {
    padding: 120px 70px 80px 70px;
    background: var(--color-gray-light);
}

.vantagens-container {
    max-width: var(--wide-size);
    margin: 0 auto;
}

.vantagens-header {
    text-align: center;
    margin-bottom: 200px;
}

.vantagens-header h2 {
    font-weight: 900;
    font-size: 32px;
    color: var(--color-blue-light);
    margin-bottom: 0;
    text-align: center;
    line-height: 1.2;
}

.vantagens-subtitle {
    font-weight: 700;
    font-size: 26px;
    color: var(--color-blue-light);
    line-height: 1.2;
}

.vantagens-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.vantagens-text p {
    font-size: 25px;
    color: var(--color-foreground);
    margin-bottom: 25px;
    line-height: 1.5;
}

.vantagens-image {
    height: 100%;
    display: flex;
    align-items: center;
}

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

/* Características Section */
.caracteristicas {
    padding: 80px 70px;
    background: var(--color-gray-light);
}

.caracteristicas-container {
    max-width: var(--wide-size);
    margin: 0 auto;
}

.caracteristicas-container h2 {
    font-weight: 900;
    font-size: 32px;
    color: var(--color-blue-light);
    text-align: center;
    margin-bottom: 50px;
}

.caracteristicas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.caracteristica-card {
    background: var(--color-white);
    border-radius: 8px;
    padding: 39px 31px;
    box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.caracteristica-card:hover {
    transform: translateY(-5px);
}

.caracteristica-card p {
    font-size: 18px;
    color: var(--color-gray);
    line-height: 1.5;
    text-align: center;
}

.caracteristica-card h2,
.caracteristica-card h3,
.caracteristica-card h4,
.caracteristica-card h5,
.caracteristica-card h6 {
    font-weight: 700;
    font-size: 18px;
    color: var(--color-gray);
    line-height: 1.5;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 60px 70px;
}

.footer-container {
    max-width: var(--content-size);
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo svg {
    width: 150px;
    height: auto;
}

.footer-info p {
    margin-bottom: 10px;
}

.footer-email {
    color: var(--color-white);
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: var(--color-secondary);
}

.footer-social .ltc-buttons-wrapper {
    display: flex;
    gap: 1rem;
}

.footer-social .ltc-button-wrapper{
    transition: all 300ms;
}

.footer-social .ltc-button-wrapper:hover{
    opacity: 0.8;
}

/* Responsive Design */

@media screen and (min-width: 830px) {
    .como-funciona-text-bottom {
        margin-right: -170px;
    }

    .como-funciona-img {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: calc(100% + 140px);
        height: calc(100% + 300px);
        max-width: unset;
        object-fit: cover;
    }
}

@media screen and (min-width: 1300px) {

    .como-funciona-text{
        padding-right: 100px;
    }

    .como-funciona-text h2 {
        font-weight: 900;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .como-funciona-text p {
        font-size: 24px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .como-funciona-text-bottom {
        margin-right: -240px;
    }

    .como-funciona-text-bottom p {
        font-size: 24px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .como-funciona-img {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: calc(100% + 210px);
        height: calc(100% + 350px);
        max-width: unset;
        object-fit: cover;
    }
}

@media (max-width: 1024px) {
    .header-container {
        padding: 14px 40px;
    }

    .hero {
        height: 600px;
    }

    .hero-container {
        padding: 0 40px;
        padding-bottom: 40px;
    }

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

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .sobre {
        padding: 60px 40px;
        min-height: auto;
    }

    .sobre-content {
        margin-left: 0;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .sobre-image {
        position: relative;
        top: auto;
        transform: none;
        max-width: 100%;
    }

    .gallery {
        padding: 40px;
    }

    .como-funciona {
        padding: 60px 40px;
    }

    .como-funciona-container {
        padding: 40px;
    }

    .como-funciona-image {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        max-width: 100%;
        margin: 30px 0;
    }

    .vantagens {
        padding: 60px 40px;
    }

    .vantagens-content {
        grid-template-columns: 1fr;
    }

    .caracteristicas {
        padding: 60px 40px;
    }

    .caracteristicas-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer {
        padding: 40px;
    }
}

/* Mobile - 768px */
@media (max-width: 768px) {
    .hero-language-icons {
        right: 20px;
    }

    .header-container {
        padding: 14px 20px;
    }

    .header-nav {
        display: none;
    }

    .btn-contact {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        height: auto;
        min-height: 500px;
        padding: 100px 0 60px;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 14px;
    }

    .social-icons {
        right: 20px;
    }

    .sobre {
        padding: 40px 20px;
    }

    .sobre-text h2 {
        font-size: 20px;
    }

    .sobre-text p {
        font-size: 16px;
    }

    .sobre-logo svg {
        width: 180px;
        height: auto;
    }

    .gallery {
        padding: 30px 20px;
    }

    .gallery-container {
        --cols: 1;
        flex-direction: column;
        align-items: center;
    }

    .gallery-item img {
        width: 100%;
        height: auto;
    }

    .como-funciona {
        padding: 40px 20px;
    }

    .como-funciona-container {
        padding: 30px;
        border-radius: 20px;
        flex-direction: column;
    }

    .como-funciona-text h2 {
        font-size: 20px;
    }

    .como-funciona-text p,
    .como-funciona-text-bottom p {
        font-size: 16px;
    }

    .vantagens {
        padding: 40px 20px;
    }

    .vantagens-header{
        margin-bottom: 80px;
    }

    .vantagens-header h2 {
        font-size: 28px;
    }

    .vantagens-subtitle {
        font-size: 20px;
    }

    .vantagens-text p {
        font-size: 16px;
    }

    .caracteristicas {
        padding: 40px 20px;
    }

    .caracteristicas-container h2 {
        font-size: 24px;
    }

    .caracteristicas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .caracteristica-card {
        padding: 25px 20px;
    }

    .caracteristica-card p{
        font-size: 16px;
    }

    .footer {
        padding: 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 13px;
    }

    .sobre-text p {
        font-size: 16px;
    }

    .como-funciona-text p,
    .como-funciona-text-bottom p {
        font-size: 16px;
    }

    .vantagens-header h2 {
        font-size: 24px;
    }

    .vantagens-subtitle {
        font-size: 18px;
    }

    .vantagens-text p {
        font-size: 16px;
    }

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

    .caracteristica-card {
        padding: 20px 15px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}
