/* Estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'DM Serif Display', serif;
    color: #003366;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.9);
    /*padding: 0 0;*/
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    max-height: 60px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('./assets/imgs/hero-section-background.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background-color: #FF6B35;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #E85826;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(232, 88, 38, 0.4);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    position: relative;
}

.section-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #FF6B35;
    margin: 15px auto;
}

/* Carrossel Styles - Experiencias */
.generalslider {
    position: relative;
    padding: 50px 0;
    overflow-x: hidden;
    /* Impede a rolagem horizontal */
    width: 100%;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
    overflow: visible;
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}

.slick-slide.slick-active {
    display: block;
}

.innerslider {
    display: flex !important;
    align-items: center;
    padding: 0 15px;
}

.imageblockres {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 30px;
}

.imageblockres img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contentblock {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 30px;
}

.titulodesktop {
    display: block;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #003366;
}

.titulomobile {
    display: none;
}

.descricao {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

/* Estilos para a lista do SPA */
.spa-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.spa-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.6;
    color: #555;
}

.spa-features i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #FF6B35;
    width: 20px;
    text-align: center;
}

.spa-note {
    font-style: italic;
    color: #003366;
    margin-top: 20px;
    padding-left: 25px;
    position: relative;
    font-size: 0.9em;
}

.spa-note i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #FF6B35;
}

.slick-prev {
    left: 25px;
}

.slick-next {
    right: 25px;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: white;
    font-size: 24px;
    opacity: 1 !important;
}

.slick-prev:before {
    content: '\f104';
    margin-left: -3px;
}

.slick-next:before {
    content: '\f105';
    margin-right: -3px;
}

/* Sombra para melhor contraste */
.slick-arrow {
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.3));
}

/* Responsivo */
@media (max-width: 992px) {
    .innerslider {
        flex-direction: column;
    }

    .imageblockres,
    .contentblock {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }

    .imageblockres {
        margin-bottom: 30px;
    }

    .titulodesktop {
        display: none;
    }

    .titulomobile {
        display: block;
        font-size: 1.8rem;
        margin-bottom: 15px;
        color: #003366;
    }
}

@media (max-width: 768px) {
    .slick-prev {
        left: 5px;
        transform: scale(0.7);
    }

    .slick-next {
        right: 5px;
        transform: scale(0.7);
    }

    .innerslider {
        padding: 0 25px;
    }
}

@media (max-width: 576px) {
    .generalslider {
        padding: 50px 0;
    }

    .titulomobile {
        font-size: 1.5rem;
    }

    .descricao {
        font-size: 1rem;
    }
}

/* experiencias da galeria */
.experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

/* Telas médias (768px+) - 2 colunas */
@media (min-width: 768px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-block {
        margin-bottom: 0;
        height: 100%;
    }
}

.experience-block {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.experience-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.highlight-block {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 255, 255, 0.8) 50%);
    border-left: 4px solid #FF6B35;
}

.experience-content {
    display: flex;
    flex: 1;
}

.experience-icon {
    flex: 0 0 50px;
    font-size: 1.8rem;
    color: #FF6B35;
    margin-right: 20px;
    text-align: center;
}

.experience-text {
    flex: 1;
}

.experience-text p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

@media (max-width: 767px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
}


/* Galeria */
.gallery {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Estilo para tornar as imagens da galeria clicáveis */
.gallery-item {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.2);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item::before {
    content: '\f00e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-size: 24px;
    z-index: 10;
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
}

.gallery-item:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}


/* Video Section */
.video-section {
    padding: 50px 0;
    text-align: center;
}

.video-container {
    max-width: 900px;
    margin: 40px auto 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: 506px;
    border: none;
}

/* Sessão 5: Descubra Porto de Galinhas */
.porto-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.porto-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.porto-images {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.image-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-item:hover {
    transform: scale(1.1);
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-item:hover img {
    transform: scale(1.1);
}

.porto-text {
    padding: 20px;
}

.porto-text h3 {
    color: #003366;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.porto-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333;
}

.highlight-box {
    background-color: rgba(0, 51, 102, 0.05);
    border-left: 4px solid #FF6B35;
    padding: 15px;
    margin: 25px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    border-radius: 0 8px 8px 0;
}

.highlight-box i {
    color: #FF6B35;
    font-size: 1.5rem;
    margin-top: 3px;
}

.highlight-box p {
    margin: 0;
    flex: 1;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: #FF6B35;
    width: 20px;
    text-align: center;
}

/* Responsividade */
@media (min-width: 992px) {
    .porto-grid {
        grid-template-columns: 1fr 1fr;
    }

    .image-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .porto-section {
        padding: 60px 0;
    }

    .image-item {
        aspect-ratio: 1/1;
    }
}


/* Seção 6 Benefícios da Agência */
.agency-benefits {
    padding: 50px 0;
    position: relative;
}

.benefits-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #003366;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.benefits-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #FF6B35;
    margin: 15px auto 0;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: justify;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.bonus-container {
    max-width: 1200px;
    margin: 0 auto 60px;
}

.bonus-card {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.bonus-card.reverse {
    flex-direction: row-reverse;
}

.bonus-image {
    flex: 0 0 50%;
    position: relative;
}

.bonus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.bonus-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #FF6B35;
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-content {
    flex: 0 0 50%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bonus-content h3 {
    color: #003366;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
}

.bonus-content h3 i {
    margin-right: 15px;
    color: #FF6B35;
    font-size: 1.8rem;
}

.bonus-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

.advantages-section {
    max-width: 1200px;
    margin: 0 auto 50px;
    text-align: center;
}

.advantages-section h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 40px;
    font-weight: 600;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 colunas de tamanho igual */
    gap: 20px;
    /* Espaçamento entre os itens */
    align-items: start;
    /* Alinhar os itens no topo */
}

.advantage-item {
    background: white;
    padding: 25px 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    font-size: 2rem;
    color: #FF6B35;
    margin-bottom: 15px;
    background: rgba(255, 107, 53, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-item p {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    margin: 0;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: rgba(0, 51, 102, 0.05);
    border-radius: 15px;
    border-top: 5px solid #FF6B35;
}

.cta-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-box .highlight {
    font-size: 1.3rem;
    color: #003366;
    font-weight: 600;
    margin: 30px 0;
}

/* Responsividade */
@media (max-width: 992px) {

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 colunas em tablets */
    }

    .bonus-card,
    .bonus-card.reverse {
        flex-direction: column;
    }

    .bonus-image,
    .bonus-content {
        flex: 0 0 100%;
    }

    .bonus-image img {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        /* 1 coluna em mobile */
    }

    .benefits-title {
        font-size: 2rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 30px 20px;
    }
}



/* Pacote */
.package {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.9)),
        url('./assets/imgs/pacotes-background.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.package .section-title {
    color: white;
}

.package-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    width: 300px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.package-card h3 {
    color: #9ecfff;
}

.package-icon {
    font-size: 2rem;
    color: #FF6B35;
    margin-bottom: 15px;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px 0;
    color: #FF6B35;
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Melhorias para a seção de pacotes */
/* Seção de Pacotes - Atualizações */
.package-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px auto 30px;
    max-width: 1200px;
}

.package-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed rgba(255, 255, 255, 0.3);
}

.price-container {
    margin-bottom: 25px;
}

.package-features {
    list-style: none;
}

.package-features i {
    color: #FF6B35;
    width: 20px;
    text-align: center;
}

.package-price {
    font-size: 3rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 5px;
}

.price-note {
    font-size: 1rem;
    opacity: 0.9;
}

.package-guarantee {
    margin-top: 15px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9ecfff;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
}

/* Botão CTA */
.cta-button {
    display: inline-block;
    background-color: #FF6B35;
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    background-color: #E85826;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 88, 38, 0.4);
}

/* Responsividade */
@media (max-width: 992px) {
    .package-details {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .package-card {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .package-price {
        font-size: 2.5rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}



/* Formulário */
.contact {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #003366;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #003366;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.2);
}

.form-submit {
    width: 100%;
    padding: 15px;
    background-color: #FF6B35;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    background-color: #E85826;
}

/* Seção About - Estilo Atualizado */
.about-us {
    padding: 50px 0;
    background-color: #ffffff;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #003366;
    font-size: 2.5rem;
}

/* Primeira Seção: Perfil */
.about-profile {
    margin-bottom: 60px;
}

.profile-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.profile-photo {
    flex: 0 0 40%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.profile-photo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.profile-photo:hover img {
    transform: scale(1.03);
}

.profile-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.profile-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.highlight {
    font-style: italic;
    color: #003366;
    font-weight: 500;
    padding-left: 20px;
    border-left: 3px solid #FF6B35;
}

/* Segunda Seção: Agência */
.about-agency {
    background: #f9f9f9;
    padding: 60px;
    border-radius: 15px;
    margin-bottom: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.agency-title {
    color: #FF6B35;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
}

.agency-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #003366;
    margin-bottom: 40px;
    font-weight: 500;
}

.agency-content {
    max-width: 850px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

.emphasis {
    font-weight: 600;
    color: #003366;
    font-size: 1.2rem;
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    text-align: justify;
}

.what-we-offer {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.what-we-offer h4 {
    color: #003366;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.offer-list {
    list-style: none;
    padding: 0;
    max-width: 850px;
    margin: 0 auto;
}

.offer-list li {
    padding: 8px 0 8px 40px;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.6;
}

.offer-list i {
    position: absolute;
    left: 0;
    top: 14px;
    color: #FF6B35;
    width: 30px;
    text-align: center;
    font-size: 1.2rem;
}

/* Terceira Seção: CTA */
.about-cta-section {
    margin-top: 60px;
}

.cta-message {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.cta-text {
    font-size: 1.3rem;
    color: #003366;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-question {
    font-size: 1.4rem;
    color: #FF6B35;
    font-weight: 700;
    margin: 30px 0;
}

.cta-button {
    display: inline-block;
    background: #FF6B35;
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    background: #e05a2b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(224, 90, 43, 0.4);
}

/* Responsividade */
@media (max-width: 992px) {
    .profile-content {
        flex-direction: column;
    }

    .profile-photo {
        flex: 0 0 100%;
        max-width: 500px;
        margin: 0 auto 30px;
    }

    .about-agency {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .agency-title {
        font-size: 1.8rem;
    }

    .agency-subtitle {
        font-size: 1.1rem;
    }

    .mission-vision-values {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-us {
        padding: 60px 0;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .offer-list li {
        padding-left: 35px;
        font-size: 0.95rem;
    }

    .offer-list i {
        font-size: 1rem;
    }
}


/* Testemunhos */
.testimonials {
    padding: 50px 0;
    background-color: #f9f9f9;
    position: relative;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    padding: 50px 30px;
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 0 15px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    line-height: 1.8;
    color: #555;
}

.testimonial-text:before,
.testimonial-text:after {
    content: '"';
    font-size: 3rem;
    color: #FF6B35;
    opacity: 0.3;
    position: absolute;
    font-family: serif;
}

.testimonial-text:before {
    top: -20px;
    left: -5px;
}

.testimonial-text:after {
    bottom: -40px;
    right: -5px;
}

.testimonial-author {
    font-weight: 600;
    color: #003366;
    font-size: 1.1rem;
}

/* Slick Carousel Styles */
.slick-dots {
    position: relative;
    bottom: 0;
    margin-top: 30px;
}

.slick-dots li button:before {
    font-size: 10px;
    color: #FF6B35;
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: #FF6B35;
    opacity: 1;
}

.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    z-index: 1;
}

.slick-prev:before,
.slick-next:before {
    color: #FF6B35;
    font-size: 40px;
}

.slick-prev {
    left: -50px;
}

.slick-next {
    right: -50px;
}

@media (max-width: 768px) {
    .slick-prev {
        left: -20px;
    }

    .slick-next {
        right: -20px;
    }
}


/* Footer */
footer {
    background-color: #003366;
    color: white;
    padding: 50px 0 30px;
    text-align: center;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 10px;
}

.social-links {
    margin: 20px 0;
}

.social-links a {
    display: inline-block;
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    color: #FF6B35;
    transform: translateY(-3px);
}

.copyright {
    margin-top: 30px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .video-container iframe {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .video-container iframe {
        height: 250px;
    }

    .package-card {
        width: 100%;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation: fadeIn 1s ease forwards;
}

/* Timer de contagem regressiva */
.countdown {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.countdown-item {
    margin: 0 10px;
    text-align: center;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px 15px;
    min-width: 80px;
    display: inline-block;
}

.countdown-label {
    font-size: 0.9rem;
    margin-top: 5px;
    opacity: 0.8;
}

/* Modal de agradecimento */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: fadeIn 0.5s ease;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.success-icon {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}


/* Corrige o overflow horizontal no mobile */
@media (max-width: 768px) {
    .generalslider {
        overflow-x: hidden;
    }

    .slick-list {
        overflow: hidden;
    }

    .innerslider {
        padding: 0 5px;
        /* Reduz o padding lateral */
    }

    .slider-container {
        margin: 0 -5px;
        /* Compensa o padding reduzido */
    }
}