/*
Theme Name: Landing Page Theme
Theme URI: http://example.com/landing-page-theme
Author: Antigravity
Author URI: http://example.com
Description: A custom WordPress theme converted from a React Landing Page.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: landing-page-theme
*/

/* Reset or Base Styles can go here, but we will mostly use Tailwind */
body {
    background-color: #fff;
    color: #333;
}

/* ==========================================
   FOOTER
   Design: Figma node 22:856
   ========================================== */

/* Em mobile, as colunas do footer empilham */
.footer-columns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 48px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

@media (max-width: 767px) {
    .footer-columns {
        flex-direction: column;
        gap: 32px;
    }

    .footer-columns>div {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ==========================================
   HOME PAGE - HERO SECTION
   ========================================== */
.hond-hero-section {
    background-color: #6E71A5;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
    position: relative;
}

.hond-hero-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 55px;
    flex-wrap: wrap;
}

.hond-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    max-width: 584px;
    z-index: 20;
    flex: 1 1 300px;
}

.hond-hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 64px;
    line-height: 1.1;
    color: #e6c9ad;
    margin: 0;
}

.hond-hero-desc {
    font-family: 'Gudea', sans-serif;
    font-size: 20px;
    line-height: 1.5;
    color: #ffffff;
    margin: 0;
    max-width: 512px;
}

.hond-hero-img-col {
    position: relative;
    flex: 0 0 auto;
    width: 593px;
    height: 546px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hond-hero-scribble {
    position: absolute;
    top: 50%;
    left: calc(50% - 98px);
    transform: translate(-50%, -50%);
    width: 637px;
    height: 607px;
    z-index: 0;
    pointer-events: none;
    filter: brightness(0) saturate(100%) invert(46%) sepia(100%) hue-rotate(208deg) saturate(300%) brightness(60%);
}

.hond-hero-photo-wrapper {
    position: relative;
    z-index: 10;
    transform: rotate(-2deg);
    width: 379px;
    height: 500px;
    flex-shrink: 0;
}

.hond-hero-photo-frame {
    position: absolute;
    inset: 0;
    background: transparent;
    border: 4px solid #ffffff;
    border-radius: 24px;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hond-hero-cards {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4.7px;
    padding: 43px 0 153px 0;
    z-index: 20;
    width: 210px;
}

/* Responsive Styles for Home Hero */
@media (max-width: 1024px) {
    .hond-hero-section {
        padding: 100px 0 60px 0;
    }

    .hond-hero-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 60px;
    }

    .hond-hero-content {
        align-items: center;
        max-width: 100%;
    }

    .hond-hero-title {
        font-size: 40px;
    }

    .hond-hero-desc {
        font-size: 16px;
        text-align: center;
        margin: 0 auto;
    }

    .hond-hero-img-col {
        width: 100%;
        max-width: 593px;
        height: auto;
        aspect-ratio: 1/1;
        justify-content: center;
    }

    .hond-hero-scribble {
        left: 50%;
        width: 100%;
        height: auto;
        max-width: 637px;
        aspect-ratio: 1/1;
    }

    .hond-hero-photo-wrapper {
        width: 100%;
        max-width: 379px;
        height: auto;
        aspect-ratio: 379/500;
        margin: 0 auto;
    }

    .hond-hero-cards {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: -40px;
        top: auto;
        flex-direction: row;
        width: auto;
        padding: 0;
    }
}

@media (max-width: 640px) {
    .hond-hero-title {
        font-size: 32px;
    }

    .hond-hero-img-col {
        flex-direction: column;
        aspect-ratio: auto;
    }

    .hond-hero-cards {
        position: relative;
        left: auto;
        transform: none;
        bottom: auto;
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-top: 32px;
        align-items: stretch;
        gap: 16px;
    }

    .hond-hero-cards>div {
        transform: none !important;
        width: 100% !important;
    }

    .hond-hero-cards>div>div {
        width: 100% !important;
        flex-direction: row !important;
        align-items: center;
        text-align: left;
        padding: 16px 20px !important;
        gap: 16px !important;
    }
}


/* ==========================================
   ABOUT PAGE - HON PET HERO SECTION (MODIFIED MINIMAL VERSION)
   ========================================== */
.hond-about-hero-section {
    background-color: var(--about-hero-bg, #6E71A5);
    width: 100%;
    overflow: hidden;
    padding: 66px 0;
}

.hond-about-hero-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

.hond-about-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    max-width: 584px;
    flex-shrink: 0;
    flex: 1 1 280px;
}

.hond-about-hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 72px;
    line-height: 1.1;
    color: var(--about-hero-title, #ffffff);
    margin: 0;
}

.hond-about-hero-highlight {
    color: var(--about-hero-highlight, #ff9f41);
}

.hond-about-hero-desc {
    padding-top: 8px;
    max-width: 576px;
}

.hond-about-hero-desc p {
    font-family: 'Gudea', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: var(--about-hero-desc, rgba(255, 255, 255, 0.8));
    margin: 0;
    font-weight: 400;
}

.hond-about-hero-img-col {
    width: 100%;
    max-width: 584px;
    flex-shrink: 0;
    flex: 1 1 280px;
}

.hond-about-hero-photo-frame {
    background-color: transparent;
    border: 12px solid #f8fafc;
    border-radius: 40px;
    padding: 0;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.hond-about-hero-photo-wrapper {
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
    border-radius: 28px;
    display: flex;
}

.hond-about-hero-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
    pointer-events: none;
    display: block;
}

@media (max-width: 1024px) {
    .hond-about-hero-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .hond-about-hero-content {
        align-items: center;
        max-width: 100%;
    }

    .hond-about-hero-title {
        font-size: 40px;
    }

    .hond-about-hero-desc p {
        font-size: 16px;
        text-align: center;
        margin: 0 auto;
    }

    .hond-about-hero-img-col {
        width: 100%;
    }

    .hond-about-hero-photo-wrapper {
        height: auto;
        aspect-ratio: 1/1;
    }
}

@media (max-width: 640px) {
    .hond-about-hero-section {
        padding: 40px 0;
    }

    .hond-about-hero-title {
        font-size: 32px;
    }
}

/* ==========================================
   ABOUT PAGE - HERO SECTION
   Design: Figma node 22:944
   ========================================== */

.about-hero-section {
    background-color: #6E71A5;
    overflow: hidden;
    padding: 0;
    /* Altura mínima equivalente ao Figma 719px */
    min-height: 719px;
    display: flex;
    align-items: stretch;
}

/* Container principal: largura máxima 1232px, centralizado */
.about-hero-inner {
    width: 100%;
    max-width: 1232px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    /* Alinhamento vertical: texto começa ~y=224 no frame 719px = ~31% */
    padding-top: 80px;
    padding-bottom: 0;
}

/* Coluna de texto */
.about-hero-text-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 80px;
}

.about-hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    /* 56px */
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
}

.about-hero-highlight {
    color: #ff9f41;
    display: block;
    /* Força a última linha a ocupar linha inteira */
}

.about-hero-description {
    font-family: 'Gudea', sans-serif;
    font-size: 1rem;
    /* 16px */
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 540px;
}

/* Coluna da imagem */
.about-hero-image-col {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    padding-top: 40px;
}

.about-hero-image-wrapper {
    border: 12px solid #f8fafc;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.30);
    width: 100%;
    max-width: 540px;
}

.about-hero-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* ── Responsivo ── */
@media (max-width: 1024px) {
    .about-hero-section {
        min-height: auto;
    }

    .about-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .about-hero-text-col {
        padding-bottom: 0;
    }

    .about-hero-image-col {
        padding-top: 0;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-image {
        height: 340px;
    }

    .about-hero-image-wrapper {
        max-width: 100%;
        border-width: 8px;
        border-radius: 24px;
    }
}

/* ==========================================
   ABOUT PAGE - NOSSA MISSÃO SECTION
   Design: Figma node 22:957
   ========================================== */

.mission-section {
    background-color: var(--mission-bg, #ffffff);
    padding: 96px 0;
}

.mission-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.mission-inner {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
}

.mission-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-width: 0;
}

.mission-images-col {
    flex: 1;
    min-width: 0;
}

.mission-item-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mission-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2.25rem;
    /* 36px */
    line-height: 1.2;
    color: var(--mission-title, #0f172a);
    margin: 0;
}

.mission-highlight {
    color: var(--mission-highlight, #ff9f41);
}

.mission-description {
    font-family: 'Gudea', sans-serif;
    font-size: 1.125rem;
    /* 18px */
    line-height: 1.625;
    color: #475569;
    margin: 0;
}

/* Lista de valores */
.mission-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mission-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.mission-dot-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 4px;
    width: 20px;
    flex-shrink: 0;
}

.mission-dot-bg {
    position: relative;
    width: 20px;
    height: 20px;
    background-color: rgba(110, 113, 166, 0.15);
    border-radius: 10px;
    flex-shrink: 0;
}

.mission-dot-core {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    background-color: #6e71a6;
    border-radius: 4px;
    opacity: 0.6;
}

.mission-item-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    /* 18px */
    color: var(--mission-title, #0f172a);
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.mission-item-desc {
    font-family: 'Gudea', sans-serif;
    font-size: 0.875rem;
    /* 14px */
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Grid de imagens */
.mission-images-grid {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
}

.mission-img-card {
    flex: 1;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.mission-img-offset {
    margin-top: 48px;
}

.mission-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .mission-section {
        padding: 64px 0;
    }

    .mission-inner {
        flex-direction: column;
        gap: 40px;
    }

    .mission-text-col,
    .mission-images-col {
        width: 100%;
    }

    .mission-images-grid {
        margin-top: 0;
    }

    .mission-img {
        height: 220px;
    }

    .mission-img-offset {
        margin-top: 24px;
    }
}

/* ==========================================
   ABOUT PAGE - PET MENU SECTION
   Design: Figma node 22:1742
   ========================================== */

.petmenu-section {
    position: relative;
    background-color: var(--petmenu-bg, #6E71A5);
    padding: 128px 0;
    overflow: hidden;
}

/* Imagens decorativas de ossinhos */
.petmenu-bones {
    position: absolute;
    top: 50%;
    pointer-events: none;
    z-index: 0;
}

.petmenu-bones img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.petmenu-bones--left {
    left: -13px;
    transform: translateY(-50%);
    width: 531px;
    height: 884px;
}

.petmenu-bones--right {
    right: 0;
    top: calc(50% + 8px);
    transform: translateY(-50%);
    width: 381px;
    height: 864px;
}

/* Container principal */
.petmenu-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Cabeçalho centralizado */
.petmenu-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.petmenu-kicker {
    font-family: 'Gudea', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    /* 20px */
    color: var(--petmenu-kicker, #ff9f41);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.petmenu-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 3rem;
    /* 48px */
    line-height: 1;
    color: var(--petmenu-title, #e6c9ad);
    margin: 0;
    text-align: center;
}

.petmenu-desc {
    font-family: 'Gudea', sans-serif;
    font-size: 1.125rem;
    /* 18px */
    line-height: 1.555;
    color: var(--petmenu-desc, rgba(255, 255, 255, 0.8));
    margin: 0;
    max-width: 672px;
    text-align: center;
}

/* Grid 3 colunas */
.petmenu-grid {
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: center;
}

/* Colunas de itens */
.petmenu-col {
    display: flex;
    flex-direction: column;
    gap: 48px;
    flex: 1;
    max-width: 378px;
}

/* Itens individuais */
.petmenu-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.petmenu-item--reverse {
    flex-direction: row-reverse;
}

/* Dot marker laranja */
.petmenu-dot-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 4px;
    width: 20px;
    height: 24px;
    flex-shrink: 0;
}

.petmenu-dot-bg {
    position: relative;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 159, 65, 0.15);
    border-radius: 10px;
    flex-shrink: 0;
}

.petmenu-dot-core {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    background-color: var(--petmenu-kicker, #ff9f41);
    border-radius: 4px;
    opacity: 0.6;
}

/* Conteúdo textual dos itens */
.petmenu-item-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.petmenu-item-content--right {
    text-align: right;
    align-items: flex-end;
}

.petmenu-item-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    /* 20px */
    line-height: 1.4;
    color: var(--petmenu-title, #e6c9ad);
    margin: 0;
}

.petmenu-item-title--right {
    text-align: right;
}

.petmenu-item-desc {
    font-family: 'Gudea', sans-serif;
    font-size: 1rem;
    /* 16px */
    line-height: 1.5;
    color: var(--petmenu-desc, rgba(255, 255, 255, 0.8));
    margin: 0;
}

.petmenu-item-desc--right {
    text-align: right;
}

/* Imagem central */
.petmenu-image-wrapper {
    flex-shrink: 0;
    width: 378px;
}

.petmenu-image-frame {
    background-color: rgba(255, 255, 255, 0);
    border: 12px solid #f8fafc;
    border-radius: 40px;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.petmenu-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 28px;
    display: block;
}

/* Responsivo */
@media (max-width: 1024px) {
    .petmenu-section {
        padding: 80px 0;
    }

    .petmenu-bones--left {
        width: 280px;
        height: 460px;
    }

    .petmenu-bones--right {
        width: 200px;
        height: 450px;
    }

    .petmenu-header {
        padding: 0 16px;
    }

    .petmenu-title {
        font-size: 40px;
    }

    .petmenu-desc {
        font-size: 1rem;
    }

    .petmenu-grid {
        flex-direction: column;
        gap: 40px;
    }

    .petmenu-col--left {
        order: 1;
    }

    .petmenu-col--right {
        order: 2;
    }

    .petmenu-image-wrapper {
        order: 3;
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
    }

    .petmenu-col {
        max-width: 100%;
        width: 100%;
    }

    .petmenu-col--right .petmenu-item {
        flex-direction: row-reverse;
        justify-content: flex-end;
    }

    .petmenu-item-content--right {
        text-align: left;
        align-items: flex-start;
    }

    .petmenu-item-title--right {
        text-align: left;
    }

    .petmenu-item-desc--right {
        text-align: left;
    }

    .petmenu-image {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 640px) {
    .petmenu-title {
        font-size: 32px;
    }

    .petmenu-item-title {
        font-size: 1.125rem;
    }

    .petmenu-item-desc {
        font-size: 0.9rem;
    }
}


@media (max-width: 640px) {
    .petmenu-section {
        padding: 64px 0;
    }

    .petmenu-bones {
        display: none;
    }

    .petmenu-container {
        gap: 48px;
    }

    .petmenu-title {
        font-size: 1.875rem;
    }
}

/* ==========================================
   ABOUT PAGE - VIAGENS SECTION
   Design: Figma node 22:1794
   ========================================== */

.travels-section {
    position: relative;
    background-color: var(--travels-bg, #ffffff);
    padding: 128px 344px 168px;
    /* overflow removido: a pata decorativa sobressai intencionalmente no topo */
}

.travels-plane-clip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 483px;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* Decorações absolutas */
.travels-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.travels-deco img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Pata decorativa: topo direito, rotacionada */
.travels-deco--paw {
    right: 344px;
    top: -52px;
    width: 521px;
    height: 486px;
    transform: rotate(-18.34deg);
    transform-origin: center center;
}

/* Avião decorativo: fundo largo */
.travels-deco--plane {
    left: 94px;
    bottom: 0;
    width: 1838px;
    height: 483px;
    z-index: 0;
}

/* Container principal: 2 colunas */
.travels-container {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 80px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Coluna de texto */
.travels-content {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Bloco de heading */
.travels-heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.travels-kicker {
    font-family: 'Gudea', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    /* 20px */
    color: var(--travels-kicker, #ff9f41);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.travels-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 3rem;
    /* 48px */
    line-height: 1.25;
    /* ~60px */
    color: var(--travels-title, #0f172a);
    margin: 0;
}

.travels-title-highlight {
    color: var(--travels-kicker, #ff9f41);
}

/* Descrição */
.travels-desc {
    font-family: 'Gudea', sans-serif;
    font-size: 1.125rem;
    /* 18px */
    line-height: 1.625;
    color: #475569;
    margin: 0;
}

/* Lista de items */
.travels-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.travels-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

/* Dot marker laranja */
.travels-dot-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 4px;
    width: 20px;
    height: 24px;
    flex-shrink: 0;
}

.travels-dot-bg {
    position: relative;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 159, 65, 0.15);
    border-radius: 10px;
    flex-shrink: 0;
}

.travels-dot-core {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    background-color: var(--travels-kicker, #ff9f41);
    border-radius: 4px;
    opacity: 0.6;
}

.travels-item-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.travels-item-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    /* 18px */
    line-height: 1.333;
    color: var(--travels-title, #0f172a);
    margin: 0;
}

.travels-item-desc {
    font-family: 'Gudea', sans-serif;
    font-size: 0.875rem;
    /* 14px */
    line-height: 1.428;
    color: #64748b;
    margin: 0;
}

/* Coluna de imagem */
.travels-image-col {
    flex: 1 0 0;
    min-width: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 40px;
}

/* Blur decorativo atrás da imagem */
.travels-image-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 384px;
    height: 384px;
    background-color: rgba(110, 113, 166, 0.05);
    filter: blur(32px);
    border-radius: 9999px;
    pointer-events: none;
}

.travels-image-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    width: 100%;
}

.travels-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 40px;
}

/* Responsivo */
@media (max-width: 1280px) {
    .travels-section {
        padding: 96px 48px 120px;
    }

    .travels-deco--paw {
        right: 48px;
        width: 350px;
        height: 340px;
    }

    .travels-deco--plane {
        left: 0;
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .travels-section {
        padding: 80px 32px 100px;
    }

    .travels-container {
        flex-direction: column;
        gap: 48px;
    }

    .travels-content {
        width: 100%;
    }

    .travels-image-col {
        width: 100%;
        max-width: 576px;
    }

    .travels-deco--paw {
        width: 240px;
        height: 240px;
        top: -20px;
        right: 32px;
    }

    .travels-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 640px) {
    .travels-section {
        padding: 64px 24px 80px;
    }

    .travels-deco--paw {
        width: 160px;
        height: 160px;
    }

    .travels-deco--plane {
        display: none;
    }

    .travels-title {
        font-size: 1.875rem;
    }
}

/* ==========================================
   CTA SECTION
   Design: Figma node 22:842
   ========================================== */

.cta-section {
    position: relative;
    background-color: var(--cta-bg, #FFB56D);
    min-height: 720px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 100px 0 0 0;
}

/* Decoração: imagem wave/laço fundo */
.cta-bg-deco {
    position: absolute;
    /* 596px total height, imagem começa em y=212 do frame 596px */
    /* bottom ajuste: frame-height - (top+imgHeight) / frame-height */
    bottom: -124px;
    left: -3.34%;
    right: -3.33%;
    width: 106.67%;
    pointer-events: none;
    z-index: 0;
}

.cta-bg-deco img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Conteúdo (título + botões) */
.cta-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
}

/* Título */
.cta-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 4rem;
    /* ~64px */
    line-height: 1.1;
    color: var(--cta-title, #ffffff);
    text-align: center;
    margin: 0;
}

/* Grupo de botões */
.cta-buttons {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Botão individual */
.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #0f172a;
    color: #ffffff;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 9999px;
    border: none;
    font-family: 'Gudea', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5rem;
    white-space: nowrap;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cta-btn:hover {
    opacity: 0.9;
    transform: scale(1.03);
    color: #ffffff;
    text-decoration: none;
}

.cta-btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
}

/* Imagem dos pets: absoluta e centralizada */
.cta-pets {
    position: absolute;
    z-index: 1;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1100px;
    height: auto;
    pointer-events: none;
    display: flex;
    justify-content: center;
    opacity: 1;
}

.cta-pets img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
}

/* Responsivo */
@media (max-width: 1024px) {
    .cta-section {
        min-height: 520px;
        padding-top: 64px;
        padding-bottom: 260px;
    }

    .cta-pets {
        max-width: 600px;
        height: 240px;
    }

    .cta-title {
        font-size: 2rem;
        line-height: 1.25;
    }
}

@media (max-width: 640px) {
    .cta-section {
        min-height: 480px;
        padding-top: 48px;
        padding-bottom: 220px;
    }

    .cta-content {
        padding-top: 40px;
        gap: 28px;
        width: 100%;
    }

    .cta-title {
        font-size: 2.25rem;
        padding: 0 16px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        padding: 0 24px;
    }

    .cta-btn {
        width: 100%;
        max-width: 320px;
        padding: 16px 28px;
        font-size: 0.9375rem;
    }

    .cta-pets {
        height: 200px;
    }
}

/* ==========================================
   APP SHOWCASE SECTION
   Design: Figma node 22:990
   ========================================== */

.appshowcase-section {
    background-color: var(--appshowcase-bg, #ffffff);
    overflow: hidden;
    padding: 128px 0;
}

.appshowcase-container {
    max-width: 1232px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

/* ── Coluna esquerda (iPhones) ── */
.appshowcase-phones-col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 540px;
}

/* Blur roxo oval atrás dos celulares */
.appshowcase-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 384px;
    height: 384px;
    background: rgba(99, 68, 210, 0.18);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.appshowcase-phones-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    display: block;
    /* Sombra suave para dar profundidade */
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.12));
}

/* ── Coluna direita (texto + cards) ── */
.appshowcase-content-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Heading */
.appshowcase-heading {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.appshowcase-kicker {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    /* 14px */
    line-height: 1.25rem;
    /* 20px */
    letter-spacing: 0.05em;
    color: var(--appshowcase-kicker, #ff9f41);
    /* laranja da marca */
    text-transform: uppercase;
}

.appshowcase-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    /* 48px */
    line-height: 1.2;
    color: #0f172a;
    /* slate-900 */
    margin: 0;
}

.appshowcase-desc {
    font-family: 'Gudea', sans-serif;
    font-size: 1rem;
    /* 16px */
    line-height: 1.75rem;
    /* 28px */
    color: #64748b;
    /* slate-500 */
    margin: 0;
}

/* ── Grade 2×2 de cards ── */
.appshowcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 32px;
}

/* Card base */
.appshowcase-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.appshowcase-card:hover {
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.14);
    transform: translateY(-2px);
}

/* Card ativo – destaque roxo */
.appshowcase-card--active {
    background: var(--appshowcase-active-bg, #6E71A5);
    box-shadow: 0 8px 32px rgba(110, 113, 165, 0.35);
}

.appshowcase-card--active:hover {
    box-shadow: 0 12px 40px rgba(110, 113, 165, 0.45);
}

/* Ícone */
.appshowcase-card-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #14b8a6;
    /* teal-500 – cards inativos */
    flex-shrink: 0;
}

.appshowcase-card-icon svg {
    width: 30px;
    height: 30px;
}

.appshowcase-card-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* Ícone do card ativo fica branco */
.appshowcase-card--active .appshowcase-card-icon {
    color: #ffffff;
}

/* Título do card */
.appshowcase-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    /* 20px */
    line-height: 1.75rem;
    /* 28px */
    color: #0f172a;
    margin: 0 0 8px 0;
}

.appshowcase-card--active .appshowcase-card-title {
    color: #ffffff;
}

/* Descrição do card */
.appshowcase-card-desc {
    font-family: 'Gudea', sans-serif;
    font-size: 0.875rem;
    /* 14px */
    line-height: 1.25rem;
    /* 20px */
    color: #64748b;
    margin: 0;
}

.appshowcase-card--active .appshowcase-card-desc {
    color: rgba(255, 255, 255, 0.85);
}

/* ── Responsivo ── */
@media (max-width: 1024px) {
    .appshowcase-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .appshowcase-phones-col {
        min-height: 400px;
    }

    .appshowcase-phones-img {
        max-width: 420px;
    }

    .appshowcase-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 640px) {
    .appshowcase-section {
        padding: 80px 0;
    }

    .appshowcase-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .appshowcase-title {
        font-size: 1.875rem;
    }

    .appshowcase-phones-col {
        min-height: 320px;
    }

    .appshowcase-blur {
        width: 260px;
        height: 260px;
    }
}

/* ==========================================
   DOWNLOAD MODAL STYLES
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.82);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.open {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #ffffff;
    width: 90%;
    max-width: 480px;
    border-radius: 40px;
    padding: 48px;
    position: relative;
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.35);
    transform: translateY(-20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.open .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #f1f5f9;
    border: none;
    font-size: 28px;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: rotate(90deg);
}

.modal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.modal-text {
    font-family: 'Gudea', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

.modal-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff9f41;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 18px 32px;
    border-radius: 9999px;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 10px 15px -3px rgba(255, 159, 65, 0.3);
}

.modal-cta-btn:hover {
    background-color: #f88a1e;
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(255, 159, 65, 0.4);
}