/*
Theme Name: Morcode
Theme URI: https://morcode.pt/
Author: Morcode
Author URI: https://morcode.pt/
Description: Morcode
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Morcode
*/

/* HÄLO Concept Wellness - Custom Styles */

/* Smooth scrolling para links internos */
html {
    scroll-behavior: smooth;
}

.center-logo .navbar-brand {
    position: relative !important;
}

.center-logo .navbar-left, .center-logo .navbar-right {
    width: 100% !important;
}

/* Estilos para seções específicas */
.section-halo {
    padding: 80px 0;
}

.section-halo h2 {
    color: #36332e;
    font-weight: 600;
    margin-bottom: 30px;
}

.section-halo h3 {
    color: #B2952A;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Estilos para o hero section */
.hero-halo {
    background: linear-gradient(135deg, #B2952A 0%, #A6924A 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-halo h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.hero-halo .subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

/* Estilos para cards de serviços */
.service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

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

.service-card h4 {
    color: #B2952A;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.service-card ul li:before {
    content: "●";
    color: #B2952A;
    position: absolute;
    left: 0;
}

/* Estilos para testemunhos */
.testimonial-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    margin: 20px 0;
    border-left: 4px solid #B2952A;
    height: 100%;
}

.testimonial-card blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-card .author {
    font-weight: 600;
    color: #B2952A;
}

/* Estilos para formulário de contacto */
.contact-form {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 20px;
}

.contact-form .form-control:focus {
    border-color: #B2952A;
    box-shadow: 0 0 0 0.2rem rgba(178, 149, 42, 0.25);
}

/* Estilos para botões personalizados */
.btn-halo {
    background: linear-gradient(135deg, #B2952A 0%, #A6924A 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-halo:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(178, 149, 42, 0.4);
    color: white;
}

/* Estilos para destaque de texto */
.highlight-text {
    background: linear-gradient(135deg, #B2952A 0%, #A6924A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Estilos para ícones */
.icon-halo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #B2952A 0%, #A6924A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .hero-halo h1 {
        font-size: 2.5rem;
    }
    
    .section-halo {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* Animações personalizadas */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Estilos para o menu de navegação */
.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #B2952A !important;
}

/* Estilos para o logo */
.navbar-brand img {
    max-height: 50px;
    width: auto;
}

/* Estilos para seções com fundo */
.bg-halo-light {
    background-color: #f8f9fa;
}

.bg-halo-gradient {
    background: linear-gradient(135deg, #B2952A 0%, #A6924A 100%);
    color: white;
}

/* Estilos para listas de benefícios */
.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 30px;
}

.benefits-list li:before {
    content: "✓";
    color: #B2952A;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.benefits-list li:last-child {
    border-bottom: none;
}

/* Estilos para links de contacto */
.contact-form a {
    color: #B2952A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-form a:hover {
    color: #A6924A;
}

/* Estilos para o texto final */
.bg-halo-gradient .benefits-list li:before {
    color: white;
}

.bg-halo-gradient .benefits-list li {
    border-bottom-color: rgba(255,255,255,0.3);
}

/* Estilos para melhorar a legibilidade */
.text-dark-gray {
    color: #36332e !important;
}

.text-base-color {
    color: #B2952A !important;
}

/* Estilos para o formulário */
.form-control::placeholder {
    color: #6c757d;
    opacity: 0.7;
}

/* Estilos para melhorar o espaçamento */
.mb-40px {
    margin-bottom: 40px;
}

.mt-60px {
    margin-top: 60px;
}

/* Estilos para o hero section melhorado */
.hero-halo .btn-double-border {
    border: 2px solid rgba(255,255,255,0.3);
    background: transparent;
    color: white;
    transition: all 0.3s ease;
}

.hero-halo .btn-double-border:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

/* Estilos para melhorar a responsividade dos cards */
@media (max-width: 576px) {
    .service-card {
        margin-bottom: 20px;
    }
    
    .testimonial-card {
        margin: 10px 0;
    }
    
    .icon-halo {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
