/* Casa de Fé Page Specific Styles */

/* Aspect Ratios */
.aspect-ratio-1-1 {
    aspect-ratio: 1 / 1;
}

.aspect-ratio-3-4 {
    aspect-ratio: 3 / 4;
}

.aspect-ratio-16-9 {
    aspect-ratio: 16 / 9;
}

/* Background Utilities */
.background-accent-alpha {
    background-color: rgba(var(--accent-rgb), 0.1);
}

.background-dark-alpha {
    background-color: rgba(var(--dark-rgb), 0.1);
}

/* Object Fit */
.object-fit-cover {
    object-fit: cover;
}

.object-fit-contain {
    object-fit: contain;
}

/* Transform Utilities */
.transform-translate-y-50 {
    transform: translateY(-50%);
}

/* Input Fields */
.input-field {
    border: 1px solid;
    outline: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.input-field:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(var(--accent-rgb), 0.2);
}

/* FAQ Details */
details {
    transition: all 0.3s ease;
}

details[open] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

details summary {
    list-style: none;
    position: relative;
    padding-right: 32px;
}

details summary::-webkit-details-marker {
    display: none;
}

details summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

/* Button Enhancements */
.btn.border-light-50 {
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn.border-light-50:hover {
    border-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section Specific */
.hero-casa-de-fe {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Timeline Styles */
.timeline-step {
    position: relative;
}

.timeline-step::before {
    content: '';
    position: absolute;
    top: 40px;
    right: -32px;
    width: 64px;
    height: 2px;
    background-color: var(--accent);
    opacity: 0.3;
}

.timeline-step:last-child::before {
    display: none;
}

@media (max-width: 768px) {
    .timeline-step::before {
        display: none;
    }
}

/* Form styling improvements */
.casa-de-fe-form {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.casa-de-fe-form .input-field {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.casa-de-fe-form .input-field:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

/* Testimonial cards */
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Benefit cards animation */
.benefit-card {
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
}

.benefit-card .icon-container {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.benefit-card:hover .icon-container {
    transform: scale(1.1);
    background-color: var(--accent);
}

.benefit-card:hover .icon-container span {
    color: white !important;
}
