/* =============================================
   MAIN STYLESHEET - LOTAZAP THEME
   ============================================= */

/* Base Styles */
:root {
    --primary-color: #25D366;
    --secondary-color: #128C7E;
    --text-color: #333333;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #ffffff;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

/* Header */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Footer */
.site-footer {
    background-color: var(--dark-gray);
    color: #ffffff;
    padding: 2rem 0;
    margin-top: 3rem;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* Custom Classes */
.btn-whatsapp {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
}

.btn-whatsapp:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
}

/* Search Form Styles */
.search-form {
    display: flex;
    margin-bottom: 2rem;
}

.search-form .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.search-form .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Search Results Styles */
.search-results-list {
    margin-bottom: 3rem;
}

.search-results-list .entry-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.search-results-list .entry-title a {
    color: var(--primary-color);
    text-decoration: none;
}

.search-results-list .entry-title a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.search-results-list .entry-summary {
    margin-top: 1rem;
    color: var(--text-color);
}

.no-results {
    padding: 2rem;
    text-align: center;
}

.no-results .page-title {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

@media (max-width: 767.98px) {
    .search-form {
        flex-direction: column;
    }
    
    .search-form .form-control {
        border-radius: 0.25rem;
        margin-bottom: 0.5rem;
    }
    
    .search-form .btn {
        border-radius: 0.25rem;
        width: 100%;
    }
}