/* TEAM CO! Presupuesto Plugin Styles */

:root {
    --teamco-primary: #22c55e;
    --teamco-primary-dark: #16a34a;
    --teamco-secondary: #f3f4f6;
    --teamco-text: #111827;
    --teamco-text-light: #6b7280;
    --teamco-border: #e5e7eb;
    --teamco-white: #ffffff;
}

/* General Container Styles */
.teamco-presupuesto-container,
.teamco-catalogo-container,
.teamco-contacto-container {
    width: 100%;
    padding: 40px 20px;
    background-color: var(--teamco-secondary);
}

.teamco-presupuesto-wrapper,
.teamco-catalogo-wrapper,
.teamco-contacto-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Headings */
.teamco-presupuesto-container h2,
.teamco-catalogo-container h2,
.teamco-contacto-container h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--teamco-text);
    margin-bottom: 10px;
}

.teamco-presupuesto-container > p,
.teamco-catalogo-container > p,
.teamco-contacto-container > p {
    font-size: 16px;
    color: var(--teamco-text-light);
    margin-bottom: 30px;
}

/* Form Styles */
.teamco-form-group {
    margin-bottom: 20px;
}

.teamco-form-group label {
    display: block;
    font-weight: 500;
    color: var(--teamco-text);
    margin-bottom: 8px;
    font-size: 14px;
}

.teamco-form-group input,
.teamco-form-group textarea,
.teamco-form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--teamco-border);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.teamco-form-group input:focus,
.teamco-form-group textarea:focus,
.teamco-form-group select:focus {
    outline: none;
    border-color: var(--teamco-primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.teamco-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .teamco-form-row {
        grid-template-columns: 1fr;
    }
}

/* Button Styles */
.teamco-btn-submit {
    background-color: var(--teamco-primary);
    color: var(--teamco-white);
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.teamco-btn-submit:hover {
    background-color: var(--teamco-primary-dark);
}

.teamco-btn-submit:disabled {
    background-color: #d1d5db;
    cursor: not-allowed;
}

/* Presupuesto Specific Styles */
.teamco-presupuesto-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 1024px) {
    .teamco-presupuesto-content {
        grid-template-columns: 1fr;
    }
}

.teamco-presupuesto-form,
.teamco-presupuesto-info {
    background-color: var(--teamco-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.teamco-presupuesto-form h3,
.teamco-presupuesto-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--teamco-text);
    margin-bottom: 20px;
}

.teamco-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.teamco-product-card {
    border: 1px solid var(--teamco-border);
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.teamco-product-card:hover {
    border-color: var(--teamco-primary);
    box-shadow: 0 4px 6px rgba(34, 197, 94, 0.1);
}

.teamco-product-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--teamco-text);
    margin-bottom: 8px;
}

.teamco-product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--teamco-primary);
    margin-bottom: 10px;
}

/* Catalogo Specific Styles */
.teamco-catalogo-search {
    margin-bottom: 30px;
}

.teamco-catalogo-search input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--teamco-border);
    border-radius: 6px;
    font-size: 16px;
}

.teamco-catalogo-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 1024px) {
    .teamco-catalogo-content {
        grid-template-columns: 1fr;
    }
}

.teamco-catalogo-filters {
    background-color: var(--teamco-white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.teamco-catalogo-filters h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--teamco-text);
    margin-bottom: 15px;
}

.teamco-filter-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.teamco-filter-btn {
    padding: 10px 12px;
    border: none;
    background-color: var(--teamco-secondary);
    color: var(--teamco-text);
    border-radius: 4px;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    transition: all 0.3s;
}

.teamco-filter-btn:hover,
.teamco-filter-btn.active {
    background-color: var(--teamco-primary);
    color: var(--teamco-white);
    font-weight: 600;
}

.teamco-catalogo-products {
    background-color: var(--teamco-white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Contacto Specific Styles */
.teamco-contacto-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 1024px) {
    .teamco-contacto-content {
        grid-template-columns: 1fr;
    }
}

.teamco-contacto-form,
.teamco-contacto-info {
    background-color: var(--teamco-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.teamco-contacto-form h3,
.teamco-contacto-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--teamco-text);
    margin-bottom: 20px;
}

.teamco-info-box {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--teamco-border);
}

.teamco-info-box:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.teamco-info-box h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--teamco-text);
    margin-bottom: 8px;
}

.teamco-info-box p {
    font-size: 14px;
    color: var(--teamco-text-light);
}

.teamco-info-box a {
    color: var(--teamco-primary);
    text-decoration: none;
    font-weight: 600;
}

.teamco-info-box a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .teamco-presupuesto-container,
    .teamco-catalogo-container,
    .teamco-contacto-container {
        padding: 20px 15px;
    }

    .teamco-presupuesto-container h2,
    .teamco-catalogo-container h2,
    .teamco-contacto-container h2 {
        font-size: 24px;
    }

    .teamco-presupuesto-form,
    .teamco-presupuesto-info,
    .teamco-contacto-form,
    .teamco-contacto-info,
    .teamco-catalogo-filters,
    .teamco-catalogo-products {
        padding: 20px;
    }
}
