/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fafafa;
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* Typography */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before {
    width: 80%;
}

.nav-link:hover {
    color: #667eea;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: 2px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: white;
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-image {
    animation: slideInRight 1s ease-out;
}

.floating-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(3deg);
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.floating-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.floating-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #667eea;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* Sections */
.empreendimento {
    padding: 4rem 0;
    position: relative;
    min-height: auto;
}

.empreendimento.principal {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.empreendimento.alt {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

/* Principal Badge */
.principal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.principal-badge i {
    color: #ffd700;
    animation: pulse 2s infinite;
}

/* Destaque Principal */
.destaque-principal {
    text-align: center;
    margin-bottom: 3rem;
}

.preco-destaque {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 400px;
    margin: 0 auto;
}

.preco-destaque h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.preco {
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.preco-destaque p {
    opacity: 0.8;
    font-size: 1.1rem;
}

/* Grid Principal Melhorado */
.info-grid-principal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 2rem;
    justify-items: center;
}

@media (max-width: 1200px) {
    .info-grid-principal {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 700px;
        margin: 0 auto 4rem auto;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .info-grid-principal {
        gap: 2.5rem;
        padding: 1rem;
    }
}

.info-card.destaque {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    transform: translateY(0);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    min-height: 350px;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-radius: 20px;
}

.info-card.destaque:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.beneficios {
    list-style: none;
    margin-top: 1.5rem;
}

.beneficios li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding: 1rem 1.2rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.beneficios li:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: translateX(5px);
}

.beneficios i {
    color: #667eea;
    width: 20px;
}

.condicoes-pagamento {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.opcao-pagamento {
    padding: 1.2rem 1.5rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.opcao-pagamento:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: translateX(5px);
}

.opcao-pagamento.destaque-entrada {
    background: rgba(0, 184, 148, 0.1);
    border-left-color: #00b894;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.opcao-pagamento.destaque-entrada i {
    color: #00b894;
}

.tamanhos-lotes {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 15px;
}

.tamanho {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.numero {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.texto {
    font-size: 1.2rem;
    color: #666;
}

/* Seção de Infraestrutura Melhorada */
.infraestrutura-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 3rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: none;
    overflow: visible;
}

.section-mini-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-mini-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.section-mini-header i {
    color: #ffd700;
}

.features-grid-melhorado {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature.premium {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
}

.feature.premium:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature.premium i {
    font-size: 2rem;
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.8rem;
    border-radius: 10px;
    flex-shrink: 0;
}

.feature-content {
    display: flex;
    flex-direction: column;
}

.feature-content strong {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.2rem;
}

.feature-content span {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Principal Melhorado */
.cta-section-principal {
    margin-top: 3rem;
}

.cta-card-principal {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-card-principal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-content h3 i {
    color: #ffd700;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Galeria Caminho das Marinas */
.gallery-container-marinas {
    margin: 3rem 0;
}

.gallery-marinas {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    color: #333;
}

.gallery-main-marinas {
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-main-marinas img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-main-marinas:hover img {
    transform: scale(1.05);
}

.gallery-thumbs-marinas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.thumb-marinas {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.thumb-marinas:hover,
.thumb-marinas.active {
    opacity: 1;
    border-color: #667eea;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Modal Caminho das Marinas */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: white;
    border-radius: 25px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal-overlay.show .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10001;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 0, 0, 0.8);
    transform: scale(1.1);
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.modal-image {
    position: relative;
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: pulse 2s infinite;
}

.modal-text {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, #f8f9ff 0%, #e6f0ff 100%);
}

.modal-header h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.modal-highlights {
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateX(5px);
}

.highlight-item i {
    color: #667eea;
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.highlight-item span {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.4;
}

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

.modal-urgency {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-buttons .btn {
    flex: 1;
    max-width: 150px;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
}

/* Responsivo do Modal */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .modal-image {
        height: 250px;
    }
    
    .modal-text {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .modal-buttons .btn {
        max-width: none;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .modal-text {
        padding: 1rem;
    }
    
    .highlight-item {
        padding: 0.6rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .highlight-item i {
        font-size: 1.5rem;
    }
}

/* Seção de Cadastro */
.cadastro-section {
    margin: 3rem 0;
    text-align: center;
}

.cadastro-banner {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cadastro-banner:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.cadastro-link {
    position: relative;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.cadastro-link img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.cadastro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 211, 102, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.cadastro-banner:hover .cadastro-overlay {
    opacity: 1;
}

.cadastro-text {
    color: white;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
}

.cadastro-text i {
    font-size: 3rem;
    animation: bounce 2s infinite;
}

.cadastro-text span {
    max-width: 300px;
    line-height: 1.4;
}

/* Responsivo para cadastro */
@media (max-width: 768px) {
    .cadastro-banner {
        margin: 0 1rem;
    }
    
    .cadastro-link img {
        max-width: 100%;
    }
    
    .cadastro-text {
        font-size: 1rem;
    }
    
    .cadastro-text i {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .cadastro-text {
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .cadastro-text i {
        font-size: 2rem;
    }
}

/* Porto Marina Tauá Section */
.empreendimento.destaque-especial {
    background: linear-gradient(135deg, #2c5530 0%, #3e7b3e 100%);
    color: white;
}

.lancamento-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.lancamento-badge i {
    animation: pulse 2s infinite;
}

.info-grid-porto {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card.destaque-porto {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.info-card.destaque-porto:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tamanho-porto {
    text-align: center;
    margin: 1.5rem 0;
}

.numero-porto {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #2c5530;
    line-height: 1;
}

.texto-porto {
    font-size: 1.2rem;
    color: #666;
}

.beneficios-porto {
    list-style: none;
    margin-top: 1rem;
}

.beneficios-porto li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(44, 85, 48, 0.1);
    border-radius: 8px;
}

.beneficios-porto i {
    color: #2c5530;
    width: 20px;
}

.preco-porto {
    text-align: center;
}

.preco-destaque-porto {
    margin-top: 1rem;
}

.valor-porto {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5530;
    margin: 0.5rem 0;
}

.condicoes-porto {
    color: #666;
    font-weight: 500;
}

/* Seção de Mídia */
.media-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.video-container,
.gallery-container-porto {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    color: #333;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.video-container h3,
.gallery-container-porto h3 {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c5530;
}

.video-porto {
    width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-porto {
    display: grid;
    gap: 1rem;
}

.gallery-main-porto {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-main-porto img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-thumbs-porto {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}

.thumb-porto {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumb-porto:hover,
.thumb-porto.active {
    opacity: 1;
    border-color: #2c5530;
    transform: scale(1.05);
}

/* CTA Porto */
.cta-section-porto {
    text-align: center;
}

.cta-card-porto {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem 2rem;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-content-porto h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-content-porto h3 i {
    color: #ffd700;
}

.cta-buttons-porto {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Responsivo Porto Marina */
@media (max-width: 1024px) and (min-width: 769px) {
    .info-grid-porto {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .info-card.destaque-porto {
        padding: 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .media-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-thumbs-porto {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .thumb-porto {
        height: 80px;
    }
    
    .info-grid-porto {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons-porto {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons-porto .btn {
        width: 100%;
        max-width: 300px;
    }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Classes para texto branco com alta prioridade */
.section-title.section-title-branco {
    color: white !important;
    background: none !important;
    background-image: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle.section-subtitle-branco {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-size: 1.3rem;
    font-weight: 300;
}

/* Cards Horizontais Compactos */
.cards-horizontal-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.cards-centralizados {
    max-width: 1000px;
    margin: 2rem auto;
}

.card-compacto {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

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

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.card-icon-verde {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
}

.card-compacto h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

/* CSS antigo removido - usando nova versão no final do arquivo */

.area-destaque {
    margin: 1rem 0;
}

.numero-grande {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.texto-mini {
    font-size: 0.85rem;
    color: #666;
    font-weight: 300;
}

.preco-mini {
    text-align: center;
}

.valor-destaque {
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 0.5rem;
}

.valor-destaque-verde {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2E7D32;
    margin: 0.5rem 0;
}

.parcelas, .condicoes-mini {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.entrada-facilitada {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #4CAF50;
    font-weight: 500;
    margin-top: 0.5rem;
}

.entrada-facilitada i {
    margin-right: 0.3rem;
}

.destaque-mini {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.texto-pequeno {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.3rem;
}

/* Cards Porto Marina */
.card-porto {
    border: 2px solid rgba(76, 175, 80, 0.2);
}

.card-porto:hover {
    border-color: rgba(76, 175, 80, 0.4);
}

/* Media Section Grid */
.media-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.video-container-compacto, .gallery-grid-compacto {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-container-compacto h3, .gallery-grid-compacto h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-porto-compacto {
    width: 100%;
    border-radius: 8px;
}

.thumbs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.5rem;
}

.thumb-grid {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumb-grid:hover, .thumb-grid.active {
    border-color: #4CAF50;
    transform: scale(1.05);
}

/* CTA Section Melhorada */
.cta-section-melhorada {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.cta-card-premium {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.3);
    color: white;
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.cta-destaque {
    margin-bottom: 1.5rem;
}

.icone-destaque {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.titulo-destaque {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.subtitulo-destaque {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp-premium {
    background: rgba(255, 255, 255, 0.9);
    color: #2E7D32;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
    min-width: 160px;
}

.btn-whatsapp-premium:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp-premium i {
    font-size: 1.2rem;
    color: #25D366;
}

.btn-whatsapp-premium small {
    font-size: 0.75rem;
    opacity: 0.7;
}

.btn-info-premium {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    min-width: 160px;
    justify-content: center;
}

.btn-info-premium:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 768px) {
    .cards-horizontal-3 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .media-section-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-whatsapp-premium, .btn-info-premium {
        width: 100%;
        max-width: 250px;
    }
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 400;
}

.empreendimento-content {
    display: grid;
    gap: 4rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.info-card.full-width {
    grid-column: 1 / -1;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-header i {
    font-size: 2rem;
    color: #667eea;
    padding: 0.5rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: scale(1.02);
}

.feature i {
    color: #667eea;
    font-size: 1.2rem;
}

.feature span {
    font-weight: 500;
    color: #333;
}

/* Gallery */
.gallery-container {
    margin-top: 3rem;
}

.gallery {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-main {
    margin-bottom: 1.5rem;
}

.gallery-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.8rem;
    max-height: 300px;
    overflow-y: auto;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
}

.thumb {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.thumb:hover,
.thumb.active {
    opacity: 1;
    border-color: #667eea;
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 3rem;
}

.cta-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    animation: pulse 2s infinite;
}

.cta-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contato Section */
.contato {
    padding: 5rem 0;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contato-info {
    display: grid;
    gap: 1.5rem;
}

.contato-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contato-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contato-card i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: inline-block;
}

.contato-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contato-card p {
    color: #666;
    font-weight: 500;
}

.contato-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.form {
    display: grid;
    gap: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    opacity: 0.8;
    font-style: italic;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    margin-bottom: 1rem;
    color: #667eea;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.2);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #667eea;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(3deg);
    }
    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5);
    }
    100% {
        box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .info-grid,
    .info-grid-principal {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .info-card.destaque {
        max-width: none;
        width: 100%;
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .gallery-thumbs-marinas {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .thumb-marinas {
        height: 200px;
    }
    
    .infraestrutura-section {
        padding: 2rem;
        margin: 2rem 0;
    }
    
    .features-grid,
    .features-grid-melhorado {
        grid-template-columns: 1fr;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .preco {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .feature.premium {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .principal-badge {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .info-card,
    .contato-card,
    .contato-form {
        padding: 1.5rem;
    }
    
    .gallery-main img {
        height: 300px;
    }
    
    .thumb {
        height: 80px;
    }
}

/* Elementos sempre visíveis - sem animações de scroll */
.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== NOVOS ESTILOS PARA CARDS HORIZONTAIS ===== */

/* Cards Horizontais - 3 em linha */
.cards-horizontal-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.cards-centralizados {
    justify-items: center;
    max-width: 1000px;
    margin: 2rem auto;
}

.cards-porto-marina {
    max-width: 1200px;
    margin: 2rem auto;
}

.card-compacto {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-compacto:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.card-porto:hover {
    border-color: rgba(39, 174, 96, 0.3);
}

.card-compacto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-porto::before {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.card-icon-verde {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.card-compacto h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.card-compacto p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

/* Estilos para áreas */
.area-destaque {
    margin: 1rem 0;
}

.numero-grande {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.card-porto .numero-grande {
    color: #27ae60;
}

.texto-mini {
    font-size: 0.8rem;
    color: #666;
    font-weight: 300;
}

/* Benefícios em lista mini */
.beneficios-mini {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.beneficios-mini li {
    font-size: 0.8rem;
    padding: 0.3rem 0;
    color: #555;
}

.beneficios-mini i {
    color: #667eea;
    margin-right: 0.5rem;
    width: 12px;
}

/* Mini features para Gran Park */
.mini-features {
    text-align: left;
}

.mini-feature {
    font-size: 0.8rem;
    padding: 0.2rem 0;
    color: #555;
}

.mini-feature i {
    color: #667eea;
    margin-right: 0.5rem;
    width: 12px;
}

/* Benefícios mini para Porto Marina */
.beneficios-mini {
    text-align: left;
}

.mini-beneficio {
    font-size: 0.8rem;
    padding: 0.3rem 0;
    color: #555;
}

.mini-beneficio i {
    color: #27ae60;
    margin-right: 0.5rem;
    width: 12px;
}

/* Preços compactos */
.preco-mini {
    margin: 1rem 0;
}

.valor-destaque {
    font-size: 1.1rem;
    font-weight: 600;
    color: #667eea;
    margin: 0.5rem 0;
}

.valor-destaque-verde {
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
    margin: 0.5rem 0;
}

.parcelas, .condicoes-mini {
    font-size: 0.8rem;
    color: #666;
    margin: 0.3rem 0;
}

.entrada-facilitada {
    font-size: 0.8rem;
    color: #27ae60;
    font-weight: 500;
    margin-top: 0.5rem;
}

.entrada-facilitada i {
    margin-right: 0.3rem;
}

.texto-pequeno {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.2rem;
}

.destaque-mini {
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 500;
}

/* ===== GALERIA PORTO MARINA MELHORADA ===== */

.media-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
    padding: 0 1rem;
}

.video-container-compacto, .gallery-grid-compacto {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.1);
    transition: all 0.3s ease;
}

.video-container-compacto:hover, .gallery-grid-compacto:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.2);
}

.video-container-compacto h3, .gallery-grid-compacto h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.video-container-compacto h3 i {
    color: #27ae60;
    font-size: 1.1rem;
}

.gallery-grid-compacto h3 i {
    color: #27ae60;
    font-size: 1.1rem;
}

.video-porto-compacto {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.video-porto-compacto:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

.thumbs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.thumb-grid {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.thumb-grid:hover {
    border-color: #2ecc71;
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

.thumb-grid.active {
    border-color: #27ae60;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

/* ===== ESTILOS ESPECÍFICOS PORTO MARINA TAUÁ ===== */

.destaque-especial {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.05) 0%, rgba(39, 174, 96, 0.05) 100%);
    position: relative;
}

.destaque-especial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.lancamento-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3); }
    50% { box-shadow: 0 6px 20px rgba(46, 204, 113, 0.5); }
    100% { box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3); }
}

.lancamento-badge i {
    margin-right: 0.5rem;
    animation: rocket 1s infinite alternate;
}

@keyframes rocket {
    0% { transform: translateY(0); }
    100% { transform: translateY(-2px); }
}

/* Melhorias específicas para cards Porto Marina */
.cards-porto-marina .card-compacto {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(46, 204, 113, 0.15);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cards-porto-marina .card-compacto:hover {
    border-color: rgba(46, 204, 113, 0.4);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.15);
}

.cards-porto-marina .numero-grande {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.cards-porto-marina .beneficios-mini {
    margin: 1rem 0;
}

.cards-porto-marina .mini-beneficio {
    background: rgba(46, 204, 113, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    margin: 0.3rem 0;
    border-left: 3px solid #2ecc71;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.cards-porto-marina .valor-destaque-verde {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin: 0.8rem 0;
}

/* ===== SEÇÃO PROMOCIONAL MELHORADA ===== */

.cta-section-melhorada {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.cta-card-premium {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.cta-destaque {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.icone-destaque {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.titulo-destaque {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.subtitulo-destaque {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.cta-actions {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.btn-whatsapp-premium {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-whatsapp-premium:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: white;
}

.btn-whatsapp-premium i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.btn-whatsapp-premium span {
    font-weight: 600;
    font-size: 1rem;
}

.btn-whatsapp-premium small {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 0.2rem;
}

.btn-info-premium {
    background: rgba(255, 255, 255, 0.9);
    color: #27ae60;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.btn-info-premium:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #27ae60;
}

.btn-info-premium i {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

/* ===== RESPONSIVIDADE ===== */

@media (max-width: 768px) {
    .cards-horizontal-3 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .media-section-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .thumbs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-actions {
        grid-template-columns: 1fr;
    }
    
    .card-compacto {
        padding: 1.2rem;
    }
    
    .numero-grande {
        font-size: 1.6rem;
    }
    
    .titulo-destaque {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .card-compacto {
        padding: 1rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .thumbs-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-card-premium {
        padding: 1.5rem;
    }
}