/**
 * ArtWine Ceramics Theme Styles
 */

.aw-ceramics-quote-container {
    max-width: 60rem;
    margin: 4em auto;
    padding: 0 5%;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aw-ceramics-quote-text {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    color: #334155;
    margin: 0;
    position: relative;
    z-index: 2;
}

.aw-ceramics-quote-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A373; /* Default Ocre */
    transition: transform 0.3s ease;
}

.aw-ceramics-quote-icon svg {
    width: 100%;
    height: auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.aw-ceramics-quote-icon.start {
    align-self: flex-start;
    margin-bottom: 0.5em;
    position: relative;
}

.aw-ceramics-quote-icon.end {
    display: block;
    margin: 1.5em auto 0;
}

/* --- PATHS SELECTION WIDGET --- */
.aw-ceramics-paths-wrap {
    width: 100%;
    margin: 5rem 0;
    padding: 6rem 0;
    position: relative;
}

.aw-ceramics-paths-inner-container {
    display: flex;
    width: 100%;
    position: relative;
    z-index: 5;
    /* justify-content handled by Elementor live control */
}

.aw-ceramics-paths-inner {
    position: relative;
    width: 100%;
    /* max-width handled by Elementor live control */
}

.aw-ceramics-paths-header {
    margin-bottom: 3.5rem;
}

.aw-ceramics-paths-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.aw-ceramics-paths-subtitle {
    font-size: 1.75rem;
    line-height: 1.4;
}

.aw-highlight-underline {
    position: relative;
    display: inline;
}

.aw-highlight-underline {
    position: relative;
    display: inline-block;
}

.aw-highlight-underline::after {
    content: '';
    position: absolute;
    bottom: 0.1rem;
    left: 0;
    width: 100%;
    height: 0.4rem;
    background-color: #D4A373;
    z-index: -1;
    opacity: 0.8;
}

.aw-ceramics-paths-grid {
    display: grid;
    gap: 2.5rem;
    align-items: stretch;
}

.aw-ceramics-path-card {
    border: none;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.aw-card-icon {
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.aw-card-icon img {
    object-fit: contain;
}

.aw-card-title {
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.aw-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.aw-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.75rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    font-weight: 700;
}

.aw-card-btn span.arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.aw-card-btn:hover span.arrow {
    transform: translateX(5px);
}

/* Background Decorations */
.aw-ceramics-paths-circle-decoration {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    transform: translateY(-50%);
}

/* Circle decoration position and size are handled by Elementor sliders */

.aw-ceramics-paths-circle-decoration svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.aw-ceramics-paths-circle-decoration svg circle {
    stroke-dasharray: 6 10;
    stroke-width: 1.5;
    stroke-linecap: round;
    fill: none;
}

@media (max-width: 767px) {
    .aw-ceramics-paths-wrap {
        border-radius: 0 80px 0 0;
        padding: 60px 0;
    }
}


/* --- CERAMICS INFO WIDGET (Blobs) --- */
.aw-ceramics-info-wrap {
    display: flex;
    align-items: center;
    gap: 5rem;
    padding: 4rem 0;
}

.aw-ceramics-info-media {
    position: relative;
    width: 50%;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
}

.aw-blob-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
}

.aw-blob-1 {
    z-index: 3;
    border-radius: 67% 33% 47% 53% / 37% 48% 52% 63%;
    opacity: 0.9;
}

.aw-blob-2 {
    z-index: 1;
    border-radius: 30% 70% 70% 30% / 49% 37% 63% 51%;
    transform: scale(1.1) rotate(-8deg);
}

.aw-blob-dash {
    z-index: 2;
    border: 1.5px dashed #334155;
    border-radius: 50% 50% 50% 50% / 40% 60% 40% 60%;
    transform: scale(1.12) rotate(4deg);
    background: transparent;
    opacity: 0.4;
}

.aw-info-image-container {
    position: relative;
    z-index: 4;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 67% 33% 47% 53% / 37% 48% 52% 63%;
}

.aw-info-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aw-ceramics-info-content {
    flex-grow: 1;
}

.aw-info-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.aw-info-desc {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.aw-info-desc > div {
    margin-bottom: 1rem;
}

.aw-info-desc > div:last-child {
    margin-bottom: 0;
}

.aw-info-list-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: none;
}

.aw-info-list {
    display: flex;
    flex-direction: column;
}

.aw-info-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.aw-info-item-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.aw-info-item-icon i,
.aw-info-item-icon svg {
    font-size: 1.125rem;
}

.aw-info-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
}

.aw-info-item-text {
    font-size: 1.05rem;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .aw-ceramics-info-wrap {
        gap: 2.5rem;
    }
    .aw-info-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 767px) {
    .aw-ceramics-info-wrap {
        flex-direction: column;
    }
    .aw-ceramics-info-media {
        margin: 0 auto 40px;
        max-width: 300px; /* Evita que crezca demasiado en pantallas grandes móviles */
    }
}

/* --- CERAMICS MEETING WIDGET ("El encuentro") --- */
.aw-ceramics-meeting-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #F9F6F0;
}

.aw-meeting-inner-container {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
}

.aw-meeting-header {
    margin-bottom: 4rem;
}

.aw-meeting-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #2D3E4E;
}

/* Background Decorations Meeting */
.aw-meeting-blob {
    position: absolute;
    top: 0;
    left: 100%;
    width: 60%;
    height: 100%;
    background: #DFEBE8;
    border-top-right-radius: 280px;
    border-bottom-right-radius: 50px;
    transform: rotate(180deg);
    transform-origin: top left;
    z-index: 1;
    pointer-events: none;
}

.aw-meeting-dash-circle {
    position: absolute;
    bottom: 2rem;
    left: -5rem;
    width: 18rem;
    height: 18rem;
    z-index: 2;
}

.aw-meeting-dash-circle svg circle {
    fill: none;
    stroke-dasharray: 6 10;
    stroke-width: 1.5;
    stroke: rgba(0,0,0,0.1);
}

/* CARDS GRID */
.aw-meeting-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.aw-meeting-card {
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.01);
}

.aw-meeting-card:hover {
    transform: translateY(-8px);
}

.aw-meeting-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    overflow: hidden;
}

.aw-meeting-card-icon i,
.aw-meeting-card-icon svg {
    font-size: 1.5rem;
}

.aw-meeting-card-title {
    font-size: 1.15rem;
    font-weight: 900;
    color: #2D3E4E;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.aw-meeting-card-desc {
    font-size: 1rem;
    color: #7A7A7A;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.aw-meeting-card-btn {
    background-color: #00A8B5; /* Turquesa */
    color: #FFFFFF;
    padding: 0.8rem 1.8rem;
    border-radius: 0.75rem;
    font-weight: 800;
    text-decoration: none;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
}

/* SECTION INCLUYE */
.aw-meeting-includes-wrap {
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 3.5rem 4rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.01);
}

.aw-inc-left-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    flex-shrink: 0;
    margin-right: 2rem;
}

.aw-inc-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #E2EFEA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aw-inc-title {
    font-size: 1.15rem;
    font-weight: 900;
    color: #2D3E4E;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.aw-inc-right-col {
    flex-grow: 1;
}

.aw-inc-items {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.aw-inc-item {
    flex: 1;
    padding: 0 2.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #7A7A7A;
    border-left: 1px solid #DFEBE8;
    display: flex;
    align-items: center;
    min-height: 4.5rem;
}

.aw-inc-item:first-child {
    border-left: none;
    padding-left: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .aw-meeting-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .aw-meeting-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 900px) {
    .aw-meeting-includes-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    .aw-inc-items {
        flex-wrap: wrap;
    }
    .aw-inc-item {
        flex: 1 1 50%;
        border-left: none;
        padding: 1rem 0;
        border-bottom: 1px solid #E2E8F0;
    }
}

@media (max-width: 767px) {
    .aw-meeting-cards-grid {
        grid-template-columns: 1fr;
    }
    .aw-inc-left-col {
        align-items: flex-start;
    }
}
