/* Estilos Base */
:root {
    --color-orange: #ff6b00;
    --color-orange-dark: #e05e00;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray-50: #f8fafc;
    --color-gray-100: #f1f5f9;
    --color-gray-200: #e2e8f0;
    --color-gray-300: #cbd5e1;
    --color-gray-400: #94a3b8;
    --color-gray-500: #64748b;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1e293b;
    --color-gray-900: #0f172a;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --border-radius-sm: 0.125rem;
    --border-radius: 0.25rem;
    --border-radius-md: 0.375rem;
    --border-radius-lg: 0.5rem;
    --border-radius-xl: 0.75rem;
    --border-radius-2xl: 1rem;
    --border-radius-3xl: 1.5rem;
    --border-radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: var(--color-gray-900);
    background-color: var(--color-gray-50);
}

.container {
    height: 100%;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.text-orange {
    color: var(--color-orange);
}

.hidden {
    display: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    max-width: 36rem;
    margin: 0 auto;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn svg {
    margin-left: 0.5rem;
}

.btn-primary {
    background-color: var(--color-orange);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-orange-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-dark {
    background-color: var(--color-black);
    color: var(--color-white);
}

.btn-dark:hover {
    background-color: var(--color-gray-900);
}

.btn-full {
    width: 100%;
}

/* Cabeçalho */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#header.scrolled {
    background-color: var(--color-black);
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    width: 200px;
    height: 20px;
}

.logo span {
    margin-left: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.smartphone-icon {
    width: 2rem;
    height: 2rem;
}

.desktop-nav {
    display: none;
}

.desktop-nav a {
    margin-left: 2rem;
    color: var(--color-white);
}

.desktop-nav a:hover {
    color: var(--color-orange);
}

.mobile-menu-btn {
    background: transparent;
    border: none;
    color: var(--color-white);
    cursor: pointer;
}

.mobile-nav {
    margin-top: 1rem;
    padding-bottom: 1rem;
}

.mobile-nav a {
    display: block;
    padding: 0.75rem 0;
    color: var(--color-white);
}

.mobile-nav a:hover {
    color: var(--color-orange);
}

/* Seção Hero (Destaque) */
.hero {
    position: relative;
    padding: 8rem 0;
    background-color: var(--color-black);
    color: var(--color-white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./img/img2.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text {
    margin-bottom: 2.5rem;
    text-align: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.125rem;
    color: var(--color-gray-300);
    margin-bottom: 2rem;
    max-width: 36rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-2xl);
    transform: rotate(3deg);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: rotate(0);
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

/* Seção de Serviços */
.services {
    padding: 5rem 0;
    background-color: var(--color-gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--color-orange);
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
}

.service-icon {
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--color-gray-600);
}

.repair-process {
    background: linear-gradient(to right, var(--color-orange), var(--color-orange-dark));
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.repair-info {
    padding: 2rem;
    color: var(--color-white);
}

.repair-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.repair-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.repair-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.repair-step {
    display: flex;
    align-items: flex-start;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-full);
    margin-right: 1rem;
    font-weight: 700;
}

.step-info h4 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.step-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.repair-image {
    position: relative;
}

.repair-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.repair-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Seção de Produtos */
.products {
    padding: 5rem 0;
    background-color: var(--color-gray-100);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    height: 16rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--color-orange);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-full);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-price {
    color: var(--color-orange);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.product-features li svg {
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.product-features li span {
    color: var(--color-gray-700);
}

.view-all {
    text-align: center;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-orange);
    font-weight: 700;
}

.view-all-link:hover {
    color: var(--color-orange-dark);
}

.view-all-link svg {
    margin-left: 0.5rem;
}

/* Seção Sobre */
.about {
    padding: 5rem 0;
    background-color: var(--color-black);
    color: var(--color-white);
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-image {
    margin-bottom: 2.5rem;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-2xl);
}

.about-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-info p {
    color: var(--color-gray-300);
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: center;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: var(--color-orange);
    border-radius: var(--border-radius-full);
    margin-right: 1rem;
}

.about-feature h4 {
    font-weight: 700;
}

.about-feature p {
    color: var(--color-gray-400);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Seção de Depoimentos */
.testimonials {
    padding: 5rem 0;
    background-color: var(--color-gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border-bottom: 4px solid var(--color-orange);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: var(--color-gray-200);
    border-radius: var(--border-radius-full);
    margin-right: 1rem;
    font-weight: 700;
    color: var(--color-gray-500);
}

.testimonial-author h4 {
    font-weight: 700;
}

.testimonial-author p {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.testimonial-text {
    font-style: italic;
    color: var(--color-gray-700);
    margin-bottom: 1rem;
}

.testimonial-rating {
    display: flex;
}

.star {
    width: 1.25rem;
    height: 1.25rem;
    fill: #fbbf24;
    margin-right: 0.25rem;
}

/* Seção de Contato */
.contact {
    padding: 5rem 0;
    background: linear-gradient(to right, var(--color-gray-900), var(--color-black));
    color: var(--color-white);
}

.contact-content {
    display: flex;
    flex-direction: column;
}

.contact-info {
    margin-bottom: 2.5rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--color-gray-300);
    margin-bottom: 2rem;
    max-width: 36rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
}

.method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--color-orange);
    border-radius: var(--border-radius-full);
    margin-right: 1rem;
}

.contact-method h4 {
    font-weight: 700;
}

.contact-method p {
    color: var(--color-gray-300);
    margin-bottom: 0;
}

.business-hours h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
}

.hours-item span:first-child {
    color: var(--color-gray-300);
}

.contact-form-container {
    width: 100%;
}

.contact-form {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--color-gray-900);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: var(--color-gray-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-300);
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
}

/* Rodapé */
.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-info {
    max-width: 20rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo span {
    margin-left: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-info p {
    color: var(--color-gray-400);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-links-column h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-links-column ul {
    list-style: none;
}

.footer-links-column li {
    margin-bottom: 0.5rem;
}

.footer-links-column a {
    color: var(--color-gray-400);
}

.footer-links-column a:hover {
    color: var(--color-orange);
}

.footer-newsletter {
    grid-column: span 2;
}

.footer-newsletter h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-newsletter p {
    color: var(--color-gray-400);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    background-color: var(--color-orange);
    color: var(--color-white);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--color-orange-dark);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray-800);
}

.footer-bottom p {
    color: var(--color-gray-500);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-gray-400);
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--color-orange);
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.whatsapp-button img:hover {
    transform: scale(1.1);
}


/* Media Queries */
@media (min-width: 640px) {
    .hero-text h1 {
      font-size: 3rem;
    }
    
    .hero-buttons {
      flex-direction: row;
    }
    
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
      grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .desktop-nav {
      display: flex;
    }
    
    .mobile-menu-btn {
      display: none;
    }
    
    .hero-content {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
    
    .hero-text {
      text-align: left;
      margin-bottom: 0;
      flex: 1;
      padding-right: 2rem;
    }
    
    .hero-image {
      flex: 1;
    }
    
    .repair-process {
      display: flex;
    }
    
    .repair-info {
      width: 50%;
      padding: 3rem;
    }
    
    .repair-image {
      width: 50%;
    }
    
    .about-content {
      flex-direction: row;
      align-items: center;
    }
    
    .about-image {
      width: 50%;
      margin-bottom: 0;
      padding-right: 3rem;
    }
    
    .about-info {
      width: 50%;
    }
    
    .contact-content {
      flex-direction: row;
    }
    
    .contact-info {
      width: 50%;
      margin-bottom: 0;
      padding-right: 3rem;
    }
    
    .contact-form-container {
      width: 50%;
    }
    
    .footer-content {
      flex-direction: row;
      justify-content: space-between;
    }
    
    .footer-info {
      width: 30%;
    }
    
    .footer-links {
      width: 70%;
      grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-links-column {
      width: 100%;
    }
    
    .footer-newsletter {
      grid-column: 3;
    }
    
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
    }
    
    .footer-bottom p {
      margin-bottom: 0;
    }
}

@media (min-width: 1024px) {
    .services-grid {
      grid-template-columns: repeat(4, 1fr);
    }
    
    .products-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-text h1 {
      font-size: 3.5rem;
    }
}

/* Animações personalizadas */
@keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Barra de rolagem personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--color-orange);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-orange-dark);
}